2025-08-26T20:25:50.2445883Z Current runner version: '2.328.0' 2025-08-26T20:25:50.2453970Z Runner name: 'i-07498329a9125d143' 2025-08-26T20:25:50.2454882Z Runner group name: 'default' 2025-08-26T20:25:50.2455828Z Machine name: 'EC2AMAZ-TE6SPGV' 2025-08-26T20:25:50.2458907Z ##[group]GITHUB_TOKEN Permissions 2025-08-26T20:25:50.2461114Z Contents: read 2025-08-26T20:25:50.2461710Z Metadata: read 2025-08-26T20:25:50.2462348Z ##[endgroup] 2025-08-26T20:25:50.2464623Z Secret source: Actions 2025-08-26T20:25:50.2465371Z Prepare workflow directory 2025-08-26T20:25:50.2982095Z Prepare all required actions 2025-08-26T20:25:50.3022242Z Getting action download info 2025-08-26T20:25:50.4954554Z Download action repository 'pytorch/test-infra@main' (SHA:0192d56cb596bb73b125bd368553908cc5c513f0) 2025-08-26T20:32:24.4164999Z Download action repository 'pytorch/pytorch@main' (SHA:a4fb65701b1b6408a949529442f26248b40f139b) 2025-08-26T20:38:58.1255145Z Download action repository 'nick-fields/retry@7152eba30c6575329ac0576536151aca5a72780e' (SHA:7152eba30c6575329ac0576536151aca5a72780e) 2025-08-26T20:38:58.3664610Z Download action repository 'seemethere/download-artifact-s3@1da556a7aa0a088e3153970611f6c432d58e80e6' (SHA:1da556a7aa0a088e3153970611f6c432d58e80e6) 2025-08-26T20:38:59.3741541Z Getting action download info 2025-08-26T20:38:59.4831569Z Download action repository 'actions/checkout@v4' (SHA:08eba0b27e820071cde6df949e0beb9ba4906955) 2025-08-26T20:38:59.8774680Z Uses: pytorch/pytorch/.github/workflows/_win-test.yml@refs/heads/main (262640fd220236042fbf4443cc163c8838c84c3d) 2025-08-26T20:38:59.8778764Z ##[group] Inputs 2025-08-26T20:38:59.8779176Z build-environment: win-vs2022-cpu-py3 2025-08-26T20:38:59.8779464Z cuda-version: cpu 2025-08-26T20:38:59.8780515Z test-matrix: {"include": [{"config": "default", "shard": 1, "num_shards": 3, "runner": "windows.4xlarge.nonephemeral"}, {"config": "default", "shard": 2, "num_shards": 3, "runner": "windows.4xlarge.nonephemeral"}, {"config": "default", "shard": 3, "num_shards": 3, "runner": "windows.4xlarge.nonephemeral"}]} 2025-08-26T20:38:59.8781725Z sync-tag: 2025-08-26T20:38:59.8782472Z timeout-minutes: 240 2025-08-26T20:38:59.8783012Z disable-monitor: false 2025-08-26T20:38:59.8783277Z monitor-log-interval: 5 2025-08-26T20:38:59.8783564Z monitor-data-collect-interval: 1 2025-08-26T20:38:59.8783841Z ##[endgroup] 2025-08-26T20:38:59.8784264Z Complete job name: win-vs2022-cpu-py3 / test (default, 2, 3, windows.4xlarge.nonephemeral) 2025-08-26T20:39:00.0404369Z ##[group]Run git config --global core.longpaths true 2025-08-26T20:39:00.0405061Z git config --global core.longpaths true 2025-08-26T20:39:00.0405411Z git config --global core.symlinks true 2025-08-26T20:39:00.0405700Z  2025-08-26T20:39:00.0406118Z # https://git-scm.com/docs/git-fsmonitor--daemon. The daemon could lock 2025-08-26T20:39:00.0406691Z # the directory on Windows and prevent GHA from checking out as reported 2025-08-26T20:39:00.0407190Z # in https://github.com/actions/checkout/issues/1018 2025-08-26T20:39:00.0407591Z git config --global core.fsmonitor false 2025-08-26T20:39:00.0432569Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T20:39:00.0433290Z env: 2025-08-26T20:39:00.0433492Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:39:00.0433733Z ##[endgroup] 2025-08-26T20:39:01.1854361Z ##[group]Run pytorch/test-infra/.github/actions/cleanup-runner@main 2025-08-26T20:39:01.1854866Z env: 2025-08-26T20:39:01.1855088Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:39:01.1855324Z ##[endgroup] 2025-08-26T20:39:01.2187635Z ##[group]Run # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-08-26T20:39:01.2188389Z # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-08-26T20:39:01.2189047Z # Below is the list of commands that could lock $GITHUB_WORKSPACE gathered from sysinternals 2025-08-26T20:39:01.2190884Z # handle tool 2025-08-26T20:39:01.2191225Z $processes = "python", "ninja", "cl", "nvcc", "cmd", "sccache", "git" 2025-08-26T20:39:01.2191641Z Foreach ($process In $processes) { 2025-08-26T20:39:01.2191923Z  Try { 2025-08-26T20:39:01.2192477Z  # https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.management/stop-process 2025-08-26T20:39:01.2193157Z  Get-Process -Name $process -ErrorAction Stop | Stop-Process -Force 2025-08-26T20:39:01.2193560Z  } 2025-08-26T20:39:01.2193742Z  Catch { 2025-08-26T20:39:01.2194056Z  Write-Output "No leftover $process process, continuing" 2025-08-26T20:39:01.2194420Z  Write-Output $_ 2025-08-26T20:39:01.2194647Z  } 2025-08-26T20:39:01.2194826Z } 2025-08-26T20:39:01.2194995Z  2025-08-26T20:39:01.2195464Z # Try it again https://stackoverflow.com/questions/40585754/powershell-wont-terminate-hung-process 2025-08-26T20:39:01.2196013Z # for hung processes 2025-08-26T20:39:01.2196290Z Foreach ($process In $processes) { 2025-08-26T20:39:01.2196559Z  Try { 2025-08-26T20:39:01.2196942Z  (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process}%'").terminate() 2025-08-26T20:39:01.2197383Z  } 2025-08-26T20:39:01.2197565Z  Catch { 2025-08-26T20:39:01.2197776Z  Write-Output $_ 2025-08-26T20:39:01.2197998Z  } 2025-08-26T20:39:01.2198199Z } 2025-08-26T20:39:01.2198368Z  2025-08-26T20:39:01.2198544Z Try { 2025-08-26T20:39:01.2198771Z  # Print all the processes for debugging 2025-08-26T20:39:01.2199286Z  Wmic Path Win32_Process Get Caption,Processid,Commandline | Format-List 2025-08-26T20:39:01.2199698Z } 2025-08-26T20:39:01.2199882Z Catch { 2025-08-26T20:39:01.2200266Z  # Better to write out whatever exception thrown to help debugging any potential issue 2025-08-26T20:39:01.2200719Z  Write-Output $_ 2025-08-26T20:39:01.2200949Z } 2025-08-26T20:39:01.2217142Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-26T20:39:01.2217608Z env: 2025-08-26T20:39:01.2217810Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:39:01.2218042Z ##[endgroup] 2025-08-26T20:39:01.5888786Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-26T20:39:01.5948637Z Finished 2025-08-26T20:39:01.6303448Z No leftover python process, continuing 2025-08-26T20:39:01.6742432Z Get-Process : Cannot find a process with the name "python". Verify the process name and call the cmdlet again. 2025-08-26T20:39:01.6743140Z At C:\actions-runner\_work\_temp\aa421638-b745-4e5b-99f5-251c53b3b142.ps1:9 char:5 2025-08-26T20:39:01.6743787Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-26T20:39:01.6744216Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T20:39:01.6744683Z + CategoryInfo : ObjectNotFound: (python:String) [Get-Process], ProcessCommandException 2025-08-26T20:39:01.6745532Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-26T20:39:01.6746111Z 2025-08-26T20:39:01.6761411Z No leftover ninja process, continuing 2025-08-26T20:39:01.6770436Z Get-Process : Cannot find a process with the name "ninja". Verify the process name and call the cmdlet again. 2025-08-26T20:39:01.6771157Z At C:\actions-runner\_work\_temp\aa421638-b745-4e5b-99f5-251c53b3b142.ps1:9 char:5 2025-08-26T20:39:01.6771740Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-26T20:39:01.6772142Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T20:39:01.6772621Z + CategoryInfo : ObjectNotFound: (ninja:String) [Get-Process], ProcessCommandException 2025-08-26T20:39:01.6774112Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-26T20:39:01.6774704Z 2025-08-26T20:39:01.6786486Z No leftover cl process, continuing 2025-08-26T20:39:01.6796454Z Get-Process : Cannot find a process with the name "cl". Verify the process name and call the cmdlet again. 2025-08-26T20:39:01.6797109Z At C:\actions-runner\_work\_temp\aa421638-b745-4e5b-99f5-251c53b3b142.ps1:9 char:5 2025-08-26T20:39:01.6797637Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-26T20:39:01.6798031Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T20:39:01.6798495Z + CategoryInfo : ObjectNotFound: (cl:String) [Get-Process], ProcessCommandException 2025-08-26T20:39:01.6799310Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-26T20:39:01.6799894Z 2025-08-26T20:39:01.6811163Z No leftover nvcc process, continuing 2025-08-26T20:39:01.6820574Z Get-Process : Cannot find a process with the name "nvcc". Verify the process name and call the cmdlet again. 2025-08-26T20:39:01.6821235Z At C:\actions-runner\_work\_temp\aa421638-b745-4e5b-99f5-251c53b3b142.ps1:9 char:5 2025-08-26T20:39:01.6821761Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-26T20:39:01.6822175Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T20:39:01.6822657Z + CategoryInfo : ObjectNotFound: (nvcc:String) [Get-Process], ProcessCommandException 2025-08-26T20:39:01.6823454Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-26T20:39:01.6824027Z 2025-08-26T20:39:01.6855636Z No leftover sccache process, continuing 2025-08-26T20:39:01.6865415Z Get-Process : Cannot find a process with the name "sccache". Verify the process name and call the cmdlet again. 2025-08-26T20:39:01.6866104Z At C:\actions-runner\_work\_temp\aa421638-b745-4e5b-99f5-251c53b3b142.ps1:9 char:5 2025-08-26T20:39:01.6866696Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-26T20:39:01.6867094Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T20:39:01.6867577Z + CategoryInfo : ObjectNotFound: (sccache:String) [Get-Process], ProcessCommandException 2025-08-26T20:39:01.6868434Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-26T20:39:01.6869015Z 2025-08-26T20:39:01.6879260Z No leftover git process, continuing 2025-08-26T20:39:01.6890314Z Get-Process : Cannot find a process with the name "git". Verify the process name and call the cmdlet again. 2025-08-26T20:39:01.6890996Z At C:\actions-runner\_work\_temp\aa421638-b745-4e5b-99f5-251c53b3b142.ps1:9 char:5 2025-08-26T20:39:01.6891543Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-26T20:39:01.6891939Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T20:39:01.6892448Z + CategoryInfo : ObjectNotFound: (git:String) [Get-Process], ProcessCommandException 2025-08-26T20:39:01.6893222Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-26T20:39:01.6893812Z 2025-08-26T20:39:01.8772707Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {4590F811-1D3A-11D0-891F-00AA004B2E24} 2025-08-26T20:39:01.8773646Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-08-26T20:39:01.8774229Z deletion. (Exception from HRESULT: 0x800703FA). 2025-08-26T20:39:01.8774685Z At C:\actions-runner\_work\_temp\aa421638-b745-4e5b-99f5-251c53b3b142.ps1:21 char:6 2025-08-26T20:39:01.8775232Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-26T20:39:01.8775645Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T20:39:01.8776068Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-08-26T20:39:01.8776874Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-08-26T20:39:01.8777429Z 2025-08-26T20:39:01.9190646Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-08-26T20:39:01.9191511Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-08-26T20:39:01.9192097Z deletion. (Exception from HRESULT: 0x800703FA). 2025-08-26T20:39:01.9192560Z At C:\actions-runner\_work\_temp\aa421638-b745-4e5b-99f5-251c53b3b142.ps1:21 char:6 2025-08-26T20:39:01.9193090Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-26T20:39:01.9193513Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T20:39:01.9194033Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-08-26T20:39:01.9194747Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-08-26T20:39:01.9195281Z 2025-08-26T20:39:01.9218661Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-08-26T20:39:01.9219577Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-08-26T20:39:01.9220165Z deletion. (Exception from HRESULT: 0x800703FA). 2025-08-26T20:39:01.9220614Z At C:\actions-runner\_work\_temp\aa421638-b745-4e5b-99f5-251c53b3b142.ps1:21 char:6 2025-08-26T20:39:01.9221168Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-26T20:39:01.9221597Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T20:39:01.9222008Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-08-26T20:39:01.9222681Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-08-26T20:39:01.9223227Z 2025-08-26T20:39:01.9248832Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-08-26T20:39:01.9249714Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-08-26T20:39:01.9250313Z deletion. (Exception from HRESULT: 0x800703FA). 2025-08-26T20:39:01.9250784Z At C:\actions-runner\_work\_temp\aa421638-b745-4e5b-99f5-251c53b3b142.ps1:21 char:6 2025-08-26T20:39:01.9251333Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-26T20:39:01.9251757Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T20:39:01.9252181Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-08-26T20:39:01.9252843Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-08-26T20:39:01.9253413Z 2025-08-26T20:39:01.9277993Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-08-26T20:39:01.9278828Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-08-26T20:39:01.9279615Z deletion. (Exception from HRESULT: 0x800703FA). 2025-08-26T20:39:01.9280068Z At C:\actions-runner\_work\_temp\aa421638-b745-4e5b-99f5-251c53b3b142.ps1:21 char:6 2025-08-26T20:39:01.9280605Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-26T20:39:01.9281020Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T20:39:01.9281444Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-08-26T20:39:01.9282108Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-08-26T20:39:01.9282669Z 2025-08-26T20:39:01.9306039Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-08-26T20:39:01.9306887Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-08-26T20:39:01.9307471Z deletion. (Exception from HRESULT: 0x800703FA). 2025-08-26T20:39:01.9307940Z At C:\actions-runner\_work\_temp\aa421638-b745-4e5b-99f5-251c53b3b142.ps1:21 char:6 2025-08-26T20:39:01.9308486Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-26T20:39:01.9308915Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T20:39:01.9309352Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-08-26T20:39:01.9310023Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-08-26T20:39:01.9310567Z 2025-08-26T20:39:01.9333135Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-08-26T20:39:01.9333978Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-08-26T20:39:01.9334564Z deletion. (Exception from HRESULT: 0x800703FA). 2025-08-26T20:39:01.9335015Z At C:\actions-runner\_work\_temp\aa421638-b745-4e5b-99f5-251c53b3b142.ps1:21 char:6 2025-08-26T20:39:01.9335555Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-26T20:39:01.9335971Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T20:39:01.9336402Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-08-26T20:39:01.9337086Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-08-26T20:39:01.9337618Z 2025-08-26T20:39:02.7263166Z Caption CommandLine ProcessId 2025-08-26T20:39:02.7263732Z 2025-08-26T20:39:02.7264106Z System Idle Process 0 2025-08-26T20:39:02.7264532Z 2025-08-26T20:39:02.7265869Z System 4 2025-08-26T20:39:02.7266324Z 2025-08-26T20:39:02.7266601Z Registry 168 2025-08-26T20:39:02.7266987Z 2025-08-26T20:39:02.7267758Z smss.exe 408 2025-08-26T20:39:02.7268954Z 2025-08-26T20:39:02.7269224Z csrss.exe 520 2025-08-26T20:39:02.7269607Z 2025-08-26T20:39:02.7269894Z csrss.exe 596 2025-08-26T20:39:02.7270281Z 2025-08-26T20:39:02.7271139Z wininit.exe 620 2025-08-26T20:39:02.7271551Z 2025-08-26T20:39:02.7273069Z winlogon.exe winlogon.exe 668 2025-08-26T20:39:02.7273542Z 2025-08-26T20:39:02.7273938Z services.exe 740 2025-08-26T20:39:02.7274345Z 2025-08-26T20:39:02.7276034Z lsass.exe C:\Windows\system32\lsass.exe 760 2025-08-26T20:39:02.7276545Z 2025-08-26T20:39:02.7277052Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s PlugPlay 888 2025-08-26T20:39:02.7277741Z 2025-08-26T20:39:02.7278192Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p 912 2025-08-26T20:39:02.7278711Z 2025-08-26T20:39:02.7279073Z fontdrvhost.exe "fontdrvhost.exe" 932 2025-08-26T20:39:02.7279524Z 2025-08-26T20:39:02.7279885Z fontdrvhost.exe "fontdrvhost.exe" 940 2025-08-26T20:39:02.7280331Z 2025-08-26T20:39:02.7280835Z svchost.exe C:\Windows\system32\svchost.exe -k RPCSS -p 124 2025-08-26T20:39:02.7281341Z 2025-08-26T20:39:02.7282030Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s LSM 476 2025-08-26T20:39:02.7282572Z 2025-08-26T20:39:02.7283103Z svchost.exe C:\Windows\System32\svchost.exe -k termsvcs -s TermService 480 2025-08-26T20:39:02.7283665Z 2025-08-26T20:39:02.7284375Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService 1112 2025-08-26T20:39:02.7285035Z 2025-08-26T20:39:02.7285589Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s EventLog 1260 2025-08-26T20:39:02.7286406Z 2025-08-26T20:39:02.7286696Z dwm.exe "dwm.exe" 1284 2025-08-26T20:39:02.7287075Z 2025-08-26T20:39:02.7287614Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s nsi 1336 2025-08-26T20:39:02.7288159Z 2025-08-26T20:39:02.7288822Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s Dhcp 1360 2025-08-26T20:39:02.7289461Z 2025-08-26T20:39:02.7289893Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s gpsvc 1368 2025-08-26T20:39:02.7290443Z 2025-08-26T20:39:02.7290937Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s NlaSvc 1448 2025-08-26T20:39:02.7291512Z 2025-08-26T20:39:02.7293432Z NVDisplay.Container.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\Display.NvContainer\NVDisplay.Container.exe -s NVDisplay.ContainerLocalSystem -f C:\ProgramData\NVIDIA\NVDisplay.ContainerLocalSystem.log -l 3 -d C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\Display.NvContainer\plugins\LocalSystem -r -p 30000 -cfg NVDisplay.ContainerLocalSystem\LocalSystem /ert 1472 2025-08-26T20:39:02.7295250Z 2025-08-26T20:39:02.7295983Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Schedule 1492 2025-08-26T20:39:02.7296950Z 2025-08-26T20:39:02.7297708Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s netprofm 1552 2025-08-26T20:39:02.7298704Z 2025-08-26T20:39:02.7299324Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s TimeBrokerSvc 1624 2025-08-26T20:39:02.7300023Z 2025-08-26T20:39:02.7300467Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s ProfSvc 1712 2025-08-26T20:39:02.7301023Z 2025-08-26T20:39:02.7301460Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s Themes 1720 2025-08-26T20:39:02.7302001Z 2025-08-26T20:39:02.7302532Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s EventSystem 1728 2025-08-26T20:39:02.7303166Z 2025-08-26T20:39:02.7303613Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s SENS 1836 2025-08-26T20:39:02.7304148Z 2025-08-26T20:39:02.7304716Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s Dnscache 1872 2025-08-26T20:39:02.7305299Z 2025-08-26T20:39:02.7305822Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p 1880 2025-08-26T20:39:02.7306433Z 2025-08-26T20:39:02.7307497Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s ShellHWDetection 1984 2025-08-26T20:39:02.7308077Z 2025-08-26T20:39:02.7308746Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s WinHttpAutoProxySvc 2008 2025-08-26T20:39:02.7309501Z 2025-08-26T20:39:02.7309987Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s FontCache 1356 2025-08-26T20:39:02.7310569Z 2025-08-26T20:39:02.7311091Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetworkFirewall -p 2056 2025-08-26T20:39:02.7311713Z 2025-08-26T20:39:02.7312237Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s LanmanWorkstation 2096 2025-08-26T20:39:02.7312868Z 2025-08-26T20:39:02.7313426Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s UmRdpService 2308 2025-08-26T20:39:02.7314102Z 2025-08-26T20:39:02.7315092Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UserManager 2360 2025-08-26T20:39:02.7315674Z 2025-08-26T20:39:02.7316051Z spoolsv.exe C:\Windows\System32\spoolsv.exe 2392 2025-08-26T20:39:02.7316603Z 2025-08-26T20:39:02.7317149Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s SysMain 2508 2025-08-26T20:39:02.7317815Z 2025-08-26T20:39:02.7318253Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Winmgmt 2516 2025-08-26T20:39:02.7318788Z 2025-08-26T20:39:02.7319285Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s CryptSvc 2524 2025-08-26T20:39:02.7319858Z 2025-08-26T20:39:02.7320374Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s WpnService 2532 2025-08-26T20:39:02.7321013Z 2025-08-26T20:39:02.7321571Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s TrkWks 2540 2025-08-26T20:39:02.7322203Z 2025-08-26T20:39:02.7322675Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -s W32Time 2556 2025-08-26T20:39:02.7323237Z 2025-08-26T20:39:02.7323781Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s WinRM 2564 2025-08-26T20:39:02.7324346Z 2025-08-26T20:39:02.7324821Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetwork -p 2576 2025-08-26T20:39:02.7325476Z 2025-08-26T20:39:02.7326008Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -s CertPropSvc 2824 2025-08-26T20:39:02.7326666Z 2025-08-26T20:39:02.7327130Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s SessionEnv 2860 2025-08-26T20:39:02.7327704Z 2025-08-26T20:39:02.7328167Z svchost.exe C:\Windows\System32\svchost.exe -k smbsvcs -s LanmanServer 2976 2025-08-26T20:39:02.7328730Z 2025-08-26T20:39:02.7329111Z sshd.exe C:\Windows\System32\OpenSSH\sshd.exe 3040 2025-08-26T20:39:02.7329594Z 2025-08-26T20:39:02.7330218Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\NVWMI\nvWmi64.exe 2052 2025-08-26T20:39:02.7330943Z 2025-08-26T20:39:02.7331549Z IpOverUsbSvc.exe "C:\Program Files (x86)\Common Files\Microsoft Shared\Phone Tools\CoreCon\11.0\bin\IpOverUsbSvc.exe" 1920 2025-08-26T20:39:02.7551353Z 2025-08-26T20:39:02.7552724Z svchost.exe C:\Windows\System32\svchost.exe -k NetSvcs -p -s iphlpsvc 3108 2025-08-26T20:39:02.7553334Z 2025-08-26T20:39:02.7553917Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkServiceNetworkRestricted -p -s PolicyAgent 3576 2025-08-26T20:39:02.7554704Z 2025-08-26T20:39:02.7555282Z WmiPrvSE.exe C:\Windows\system32\wbem\wmiprvse.exe 3696 2025-08-26T20:39:02.7555792Z 2025-08-26T20:39:02.7556776Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s lmhosts 3356 2025-08-26T20:39:02.7557429Z 2025-08-26T20:39:02.7557914Z LogonUI.exe "LogonUI.exe" /flags:0x2 /state0:0xa3a7b855 /state1:0x41c64e6d 4792 2025-08-26T20:39:02.7558476Z 2025-08-26T20:39:02.7560097Z NVDisplay.Container.exe "C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\Display.NvContainer\NVDisplay.Container.exe" -f %ProgramData%\NVIDIA\DisplaySessionContainer%d.log -d C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\Display.NvContainer\plugins\Session -r -l 3 -p 30000 -cfg NVDisplay.ContainerLocalSystem\Session /ert -c 5068 2025-08-26T20:39:02.7561801Z 2025-08-26T20:39:02.7562498Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\NVWMI\nvWmi64.exe -spawnprovider 1072 2025-08-26T20:39:02.7563262Z 2025-08-26T20:39:02.7563860Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s LicenseManager 3880 2025-08-26T20:39:02.7564461Z 2025-08-26T20:39:02.7564809Z vds.exe C:\Windows\System32\vds.exe 3436 2025-08-26T20:39:02.7565309Z 2025-08-26T20:39:02.7565879Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNoNetwork -p -s DPS 3812 2025-08-26T20:39:02.7566477Z 2025-08-26T20:39:02.7567100Z MicrosoftEdgeUpdate.exe "C:\Program Files (x86)\Microsoft\EdgeUpdate\MicrosoftEdgeUpdate.exe" /c 4816 2025-08-26T20:39:02.7567858Z 2025-08-26T20:39:02.7568224Z msdtc.exe C:\Windows\System32\msdtc.exe 1396 2025-08-26T20:39:02.7568681Z 2025-08-26T20:39:02.7569245Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s WdiSystemHost 5100 2025-08-26T20:39:02.7569938Z 2025-08-26T20:39:02.7570483Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s PcaSvc 2108 2025-08-26T20:39:02.7571119Z 2025-08-26T20:39:02.7571655Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s UALSVC 3636 2025-08-26T20:39:02.7572302Z 2025-08-26T20:39:02.7572813Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UsoSvc 4300 2025-08-26T20:39:02.7573351Z 2025-08-26T20:39:02.7573819Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s CDPSvc 3776 2025-08-26T20:39:02.7574449Z 2025-08-26T20:39:02.7575143Z start-amazon-cloudwatch-agent.exe "C:\Program Files\Amazon\AmazonCloudWatchAgent\start-amazon-cloudwatch-agent.exe" 2952 2025-08-26T20:39:02.7575908Z 2025-08-26T20:39:02.7577461Z 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 3400 2025-08-26T20:39:02.7579037Z 2025-08-26T20:39:02.7579439Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4708 2025-08-26T20:39:02.7579920Z 2025-08-26T20:39:02.7580438Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p 3264 2025-08-26T20:39:02.7581048Z 2025-08-26T20:39:02.7581547Z svchost.exe C:\Windows\system32\svchost.exe -k appmodel -p -s StateRepository 1768 2025-08-26T20:39:02.7582125Z 2025-08-26T20:39:02.7582507Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 1092 2025-08-26T20:39:02.7582993Z 2025-08-26T20:39:02.7583516Z Runner.Listener.exe "C:\actions-runner\\bin\Runner.Listener.exe" run 1824 2025-08-26T20:39:02.7584068Z 2025-08-26T20:39:02.7584535Z amazon-ssm-agent.exe "C:\Program Files\Amazon\SSM\amazon-ssm-agent.exe" 5096 2025-08-26T20:39:02.7585166Z 2025-08-26T20:39:02.7585636Z ssm-agent-worker.exe "C:\Program Files\Amazon\SSM\ssm-agent-worker.exe" 3736 2025-08-26T20:39:02.7586206Z 2025-08-26T20:39:02.7586584Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4888 2025-08-26T20:39:02.7587079Z 2025-08-26T20:39:02.7587573Z Runner.Worker.exe "C:\actions-runner\bin\Runner.Worker.exe" spawnclient 2092 2228 4472 2025-08-26T20:39:02.7588168Z 2025-08-26T20:39:02.7588544Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4892 2025-08-26T20:39:02.7589027Z 2025-08-26T20:39:02.7589411Z taskhostw.exe taskhostw.exe /RuntimeWide 2112 2025-08-26T20:39:02.7589884Z 2025-08-26T20:39:02.7590528Z ngentask.exe "C:\Windows\Microsoft.NET\Framework64\v4.0.30319\NGenTask.exe" /RuntimeWide /StopEvent:528 2484 2025-08-26T20:39:02.7591192Z 2025-08-26T20:39:02.7591585Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4408 2025-08-26T20:39:02.7592054Z 2025-08-26T20:39:02.7592630Z ngentask.exe "C:\Windows\Microsoft.NET\Framework\v4.0.30319\NGenTask.exe" /RuntimeWide /StopEvent:1020 4336 2025-08-26T20:39:02.7593354Z 2025-08-26T20:39:02.7593741Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 3612 2025-08-26T20:39:02.7594216Z 2025-08-26T20:39:02.7594686Z TrustedInstaller.exe C:\Windows\servicing\TrustedInstaller.exe 3796 2025-08-26T20:39:02.7595264Z 2025-08-26T20:39:02.7596018Z TiWorker.exe C:\Windows\winsxs\amd64_microsoft-windows-servicingstack_31bf3856ad364e35_10.0.17763.7557_none_56db325b9926b2f1\TiWorker.exe -Embedding 4788 2025-08-26T20:39:02.7596869Z 2025-08-26T20:39:02.7597372Z CompatTelRunner.exe "C:\Windows\system32\compattelrunner.exe" -maintenance 4320 2025-08-26T20:39:02.7597978Z 2025-08-26T20:39:02.7598415Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4664 2025-08-26T20:39:02.7598950Z 2025-08-26T20:39:02.7599559Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s DsSvc 3912 2025-08-26T20:39:02.7600198Z 2025-08-26T20:39:02.7600805Z ngen.exe "C:\Windows\Microsoft.NET\Framework64\v4.0.30319\ngen.exe" ExecuteQueuedItems /LegacyServiceBehavior 3704 2025-08-26T20:39:02.7602192Z 2025-08-26T20:39:02.7602806Z ngen.exe "C:\Windows\Microsoft.NET\Framework\v4.0.30319\ngen.exe" ExecuteQueuedItems /LegacyServiceBehavior 1152 2025-08-26T20:39:02.7603520Z 2025-08-26T20:39:02.7604146Z CompatTelRunner.exe C:\Windows\system32\CompatTelRunner.exe -m:invagent.dll -f:RunUpdate -cv:Lsle6AEKPUm/18YS.5 2444 2025-08-26T20:39:02.7604852Z 2025-08-26T20:39:02.7605266Z WmiPrvSE.exe C:\Windows\system32\wbem\wmiprvse.exe 1212 2025-08-26T20:39:02.7605764Z 2025-08-26T20:39:02.7606660Z mscorsvw.exe C:\Windows\Microsoft.NET\Framework64\v4.0.30319\mscorsvw.exe -StartupEvent 1b8 -InterruptEvent 0 -NGENProcess 43c -Pipe 3e8 -Comment "NGen Worker Process" 2728 2025-08-26T20:39:02.7607533Z 2025-08-26T20:39:02.7608315Z powershell.exe "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE" -command ". 'C:\actions-runner\_work\_temp\aa421638-b745-4e5b-99f5-251c53b3b142.ps1'" 3964 2025-08-26T20:39:02.7609150Z 2025-08-26T20:39:02.7609716Z WMIC.exe "C:\Windows\System32\Wbem\WMIC.exe" Path Win32_Process Get Caption,Processid,Commandline 4524 2025-08-26T20:39:02.7610368Z 2025-08-26T20:39:02.7610371Z 2025-08-26T20:39:02.7610378Z 2025-08-26T20:39:02.7885964Z ##[group]Run pytorch/test-infra/.github/actions/setup-ssh@main 2025-08-26T20:39:02.7886693Z with: 2025-08-26T20:39:02.7887530Z github-secret: *** 2025-08-26T20:39:02.7889766Z instructions: To forward remote desktop on your local machine ssh as follows: ssh -L 3389:localhost:3389 %%username%%@%%hostname%% And then change password using `passwd` command. To start tests locally, change working folder to \actions-runner\_work\pytorch\pytorch\test, Activate miniconda and Visual Studio environment and set PYTHON_PATH, by running: call C:\Jenkins\Miniconda3\Scripts\activate.bat C:\Jenkins\Miniconda3 call "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\Build\vcvarsall.bat" x64 set PYTHONPATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build 2025-08-26T20:39:02.7892455Z activate-with-label: false 2025-08-26T20:39:02.7892821Z label: with-ssh 2025-08-26T20:39:02.7893231Z remove-existing-keys: true 2025-08-26T20:39:02.7893551Z fail-silently: true 2025-08-26T20:39:02.7893762Z env: 2025-08-26T20:39:02.7893942Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:39:02.7894161Z ##[endgroup] 2025-08-26T20:39:02.9443017Z Please see https://github.com/pytorch/pytorch/wiki/Debugging-using-with-ssh-for-Github-Actions for more info. 2025-08-26T20:39:02.9445366Z Not on pull request and ciflow reference could not be extracted, skipping adding ssh keys 2025-08-26T20:39:02.9670221Z ##[group]Run pytorch/pytorch/.github/actions/checkout-pytorch@main 2025-08-26T20:39:02.9670623Z with: 2025-08-26T20:39:02.9670809Z no-sudo: true 2025-08-26T20:39:02.9671020Z submodules: recursive 2025-08-26T20:39:02.9671230Z fetch-depth: 0 2025-08-26T20:39:02.9671428Z env: 2025-08-26T20:39:02.9671608Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:39:02.9671846Z ##[endgroup] 2025-08-26T20:39:02.9818182Z ##[group]Run echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-08-26T20:39:02.9819063Z echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-08-26T20:39:02.9839276Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T20:39:02.9839683Z env: 2025-08-26T20:39:02.9839870Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:39:02.9840146Z ##[endgroup] 2025-08-26T20:39:03.0714911Z ##[group]Run # Use all available CPUs for fetching 2025-08-26T20:39:03.0715286Z # Use all available CPUs for fetching 2025-08-26T20:39:03.0715589Z cd "${GITHUB_WORKSPACE}" 2025-08-26T20:39:03.0715876Z git config --global fetch.parallel 0 2025-08-26T20:39:03.0716215Z git config --global submodule.fetchJobs 0 2025-08-26T20:39:03.0716534Z  2025-08-26T20:39:03.0716844Z # Clean workspace. The default checkout action should also do this, but 2025-08-26T20:39:03.0717269Z # do it here as well just in case 2025-08-26T20:39:03.0717544Z if [[ -d .git ]]; then 2025-08-26T20:39:03.0717800Z  if [ -z "${NO_SUDO}" ]; then 2025-08-26T20:39:03.0718064Z  sudo git clean -ffdx 2025-08-26T20:39:03.0718305Z  else 2025-08-26T20:39:03.0718493Z  git clean -ffdx 2025-08-26T20:39:03.0718718Z  fi 2025-08-26T20:39:03.0718897Z fi 2025-08-26T20:39:03.0739000Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T20:39:03.0739403Z env: 2025-08-26T20:39:03.0739599Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:39:03.0739820Z NO_SUDO: true 2025-08-26T20:39:03.0740005Z ##[endgroup] 2025-08-26T20:39:03.2219760Z ##[group]Run actions/checkout@v4 2025-08-26T20:39:03.2220041Z with: 2025-08-26T20:39:03.2220251Z ref: 262640fd220236042fbf4443cc163c8838c84c3d 2025-08-26T20:39:03.2220544Z fetch-depth: 0 2025-08-26T20:39:03.2220750Z submodules: recursive 2025-08-26T20:39:03.2220960Z show-progress: false 2025-08-26T20:39:03.2221193Z repository: pytorch/pytorch 2025-08-26T20:39:03.2221543Z token: *** 2025-08-26T20:39:03.2221730Z ssh-strict: true 2025-08-26T20:39:03.2221921Z ssh-user: git 2025-08-26T20:39:03.2222134Z persist-credentials: true 2025-08-26T20:39:03.2222352Z clean: true 2025-08-26T20:39:03.2222576Z sparse-checkout-cone-mode: true 2025-08-26T20:39:03.2222880Z fetch-tags: false 2025-08-26T20:39:03.2223086Z lfs: false 2025-08-26T20:39:03.2223327Z set-safe-directory: true 2025-08-26T20:39:03.2223543Z env: 2025-08-26T20:39:03.2223720Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:39:03.2223933Z ##[endgroup] 2025-08-26T20:39:03.3550959Z Syncing repository: pytorch/pytorch 2025-08-26T20:39:03.3552483Z ##[group]Getting Git version info 2025-08-26T20:39:03.3553207Z Working directory is 'C:\actions-runner\_work\pytorch\pytorch' 2025-08-26T20:39:03.3647877Z [command]"C:\Program Files\Git\cmd\git.exe" version 2025-08-26T20:39:03.3853458Z git version 2.50.1.windows.1 2025-08-26T20:39:03.3900866Z ##[endgroup] 2025-08-26T20:39:03.3912923Z Copying 'C:\Users\runneruser\.gitconfig' to 'C:\actions-runner\_work\_temp\8a20178d-a467-459c-9b1b-c2576d27fe98\.gitconfig' 2025-08-26T20:39:03.3931545Z Temporarily overriding HOME='C:\actions-runner\_work\_temp\8a20178d-a467-459c-9b1b-c2576d27fe98' before making global git config changes 2025-08-26T20:39:03.3933809Z Adding repository directory to the temporary git global config as a safe directory 2025-08-26T20:39:03.3941856Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add safe.directory C:\actions-runner\_work\pytorch\pytorch 2025-08-26T20:39:03.4189967Z Deleting the contents of 'C:\actions-runner\_work\pytorch\pytorch' 2025-08-26T20:39:03.4224331Z ##[group]Initializing the repository 2025-08-26T20:39:03.4234863Z [command]"C:\Program Files\Git\cmd\git.exe" init C:\actions-runner\_work\pytorch\pytorch 2025-08-26T20:39:03.6501312Z Initialized empty Git repository in C:/actions-runner/_work/pytorch/pytorch/.git/ 2025-08-26T20:39:03.6548902Z [command]"C:\Program Files\Git\cmd\git.exe" remote add origin https://github.com/pytorch/pytorch 2025-08-26T20:39:03.6799161Z ##[endgroup] 2025-08-26T20:39:03.6799565Z ##[group]Disabling automatic garbage collection 2025-08-26T20:39:03.6811653Z [command]"C:\Program Files\Git\cmd\git.exe" config --local gc.auto 0 2025-08-26T20:39:03.7043319Z ##[endgroup] 2025-08-26T20:39:03.7043772Z ##[group]Setting up auth 2025-08-26T20:39:03.7059073Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp core\.sshCommand 2025-08-26T20:39:03.7300046Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :\"" 2025-08-26T20:39:04.5749649Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-08-26T20:39:04.5979163Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :\"" 2025-08-26T20:39:04.9858913Z [command]"C:\Program Files\Git\cmd\git.exe" config --local http.https://github.com/.extraheader "AUTHORIZATION: basic ***" 2025-08-26T20:39:05.0106622Z ##[endgroup] 2025-08-26T20:39:05.0107045Z ##[group]Fetching the repository 2025-08-26T20:39:05.0120457Z [command]"C:\Program Files\Git\cmd\git.exe" -c protocol.version=2 fetch --prune --no-recurse-submodules origin +refs/heads/*:refs/remotes/origin/* +refs/tags/*:refs/tags/* 2025-08-26T20:39:58.7272805Z From https://github.com/pytorch/pytorch 2025-08-26T20:39:58.7273290Z * [new branch] 160583 -> origin/160583 2025-08-26T20:39:58.7273811Z * [new branch] 2.6.0.dev20241004+ -> origin/2.6.0.dev20241004+ 2025-08-26T20:39:58.7274284Z * [new branch] 5addvllmbuild -> origin/5addvllmbuild 2025-08-26T20:39:58.7274861Z * [new branch] AaronWang04_addmmfusion_perftest -> origin/AaronWang04_addmmfusion_perftest 2025-08-26T20:39:58.7275507Z * [new branch] HDCharles-2.6.0-release-notes -> origin/HDCharles-2.6.0-release-notes 2025-08-26T20:39:58.7276067Z * [new branch] ISSUE-154849 -> origin/ISSUE-154849 2025-08-26T20:39:58.7276666Z * [new branch] JackCaoG/dynamo_make_fx_non_core_aten_ops -> origin/JackCaoG/dynamo_make_fx_non_core_aten_ops 2025-08-26T20:39:58.7277332Z * [new branch] PR-AOTInductorNoneBug -> origin/PR-AOTInductorNoneBug 2025-08-26T20:39:58.7277913Z * [new branch] PR-AOTInductorNoneBugFix -> origin/PR-AOTInductorNoneBugFix 2025-08-26T20:39:58.7278648Z * [new branch] PR-FixConfigsIssue -> origin/PR-FixConfigsIssue 2025-08-26T20:39:58.7279186Z * [new branch] PR-NoneBugFix-viable -> origin/PR-NoneBugFix-viable 2025-08-26T20:39:58.7279682Z * [new branch] PR-ResetToZero -> origin/PR-ResetToZero 2025-08-26T20:39:58.7280214Z * [new branch] Update-Flash-Packaging -> origin/Update-Flash-Packaging 2025-08-26T20:39:58.7280712Z * [new branch] VLA_exp -> origin/VLA_exp 2025-08-26T20:39:58.7282059Z * [new branch] add-missing-args-normalization -> origin/add-missing-args-normalization 2025-08-26T20:39:58.7282764Z * [new branch] add-user-guide-structure -> origin/add-user-guide-structure 2025-08-26T20:39:58.7283335Z * [new branch] addVllmPin -> origin/addVllmPin 2025-08-26T20:39:58.7283841Z * [new branch] add_compile_benchmarking -> origin/add_compile_benchmarking 2025-08-26T20:39:58.7284393Z * [new branch] add_windows_testing_back -> origin/add_windows_testing_back 2025-08-26T20:39:58.7285407Z * [new branch] addbuildvllm -> origin/addbuildvllm 2025-08-26T20:39:58.7285896Z * [new branch] addmm-heuristic -> origin/addmm-heuristic 2025-08-26T20:39:58.7286451Z * [new branch] addsimde -> origin/addsimde 2025-08-26T20:39:58.7286972Z * [new branch] adi/acl_upgrade -> origin/adi/acl_upgrade 2025-08-26T20:39:58.7287478Z * [new branch] adi/test -> origin/adi/test 2025-08-26T20:39:58.7287911Z * [new branch] adi/test_bgemm -> origin/adi/test_bgemm 2025-08-26T20:39:58.7288384Z * [new branch] adi/test_fusions -> origin/adi/test_fusions 2025-08-26T20:39:58.7288867Z * [new branch] adi/test_onednn_v3.9 -> origin/adi/test_onednn_v3.9 2025-08-26T20:39:58.7289395Z * [new branch] adi/test_presve_change -> origin/adi/test_presve_change 2025-08-26T20:39:58.7289876Z * [new branch] adi/test_timm -> origin/adi/test_timm 2025-08-26T20:39:58.7290375Z * [new branch] adi/testpresve_change -> origin/adi/testpresve_change 2025-08-26T20:39:58.7290906Z * [new branch] aditew01/test/vec_bf16 -> origin/aditew01/test/vec_bf16 2025-08-26T20:39:58.7291439Z * [new branch] ah-globalfeedback-hook -> origin/ah-globalfeedback-hook 2025-08-26T20:39:58.7291993Z * [new branch] alt-disable -> origin/alt-disable 2025-08-26T20:39:58.7292528Z * [new branch] angelayi/aoti_additional_files -> origin/angelayi/aoti_additional_files 2025-08-26T20:39:58.7293135Z * [new branch] angelayi/aoti_inductor_fx -> origin/angelayi/aoti_inductor_fx 2025-08-26T20:39:58.7293793Z * [new branch] angelayi/assert_tensor_metadata_device -> origin/angelayi/assert_tensor_metadata_device 2025-08-26T20:39:58.7294407Z * [new branch] angelayi/benchmark -> origin/angelayi/benchmark 2025-08-26T20:39:58.7294935Z * [new branch] angelayi/benchmark2 -> origin/angelayi/benchmark2 2025-08-26T20:39:58.7295544Z * [new branch] angelayi/change_pytree_serialization -> origin/angelayi/change_pytree_serialization 2025-08-26T20:39:58.7296189Z * [new branch] angelayi/cpp_loader -> origin/angelayi/cpp_loader 2025-08-26T20:39:58.7296748Z * [new branch] angelayi/custom_op_subgraph -> origin/angelayi/custom_op_subgraph 2025-08-26T20:39:58.7297280Z * [new branch] angelayi/customop -> origin/angelayi/customop 2025-08-26T20:39:58.7297825Z * [new branch] angelayi/is_symbolic_tracing -> origin/angelayi/is_symbolic_tracing 2025-08-26T20:39:58.7298514Z * [new branch] angelayi/logging.bak -> origin/angelayi/logging.bak 2025-08-26T20:39:58.7299038Z * [new branch] angelayi/logging2 -> origin/angelayi/logging2 2025-08-26T20:39:58.7701497Z * [new branch] angelayi/no_so_weight -> origin/angelayi/no_so_weight 2025-08-26T20:39:58.7702088Z * [new branch] angelayi/opoverload -> origin/angelayi/opoverload 2025-08-26T20:39:58.7702617Z * [new branch] angelayi/pytree -> origin/angelayi/pytree 2025-08-26T20:39:58.7703308Z * [new branch] angelayi/save_error -> origin/angelayi/save_error 2025-08-26T20:39:58.7703830Z * [new branch] angelayi/scan_layers -> origin/angelayi/scan_layers 2025-08-26T20:39:58.7704356Z * [new branch] angelayi/symint_input -> origin/angelayi/symint_input 2025-08-26T20:39:58.7704922Z * [new branch] angelayi/tensor_nn_module_meta -> origin/angelayi/tensor_nn_module_meta 2025-08-26T20:39:58.7705491Z * [new branch] angelayi/test_cpp -> origin/angelayi/test_cpp 2025-08-26T20:39:58.7705986Z * [new branch] angelayi/torch_size -> origin/angelayi/torch_size 2025-08-26T20:39:58.7706484Z * [new branch] aoti-cuda-alloc -> origin/aoti-cuda-alloc 2025-08-26T20:39:58.7706974Z * [new branch] aoti_weight_sharing -> origin/aoti_weight_sharing 2025-08-26T20:39:58.7707487Z * [new branch] arsh/symint_mm_ind_decomp -> origin/arsh/symint_mm_ind_decomp 2025-08-26T20:39:58.7708080Z * [new branch] atalman-inductor-perf-cu124 -> origin/atalman-inductor-perf-cu124 2025-08-26T20:39:58.7708712Z * [new branch] atalman-inductor-perf-cu124.1 -> origin/atalman-inductor-perf-cu124.1 2025-08-26T20:39:58.7709294Z * [new branch] atalman-patch-1 -> origin/atalman-patch-1 2025-08-26T20:39:58.7709801Z * [new branch] atalman-patch-2 -> origin/atalman-patch-2 2025-08-26T20:39:58.7710341Z * [new branch] atalman-patch-3 -> origin/atalman-patch-3 2025-08-26T20:39:58.7710842Z * [new branch] atalman-patch-4 -> origin/atalman-patch-4 2025-08-26T20:39:58.7711339Z * [new branch] atalman_inductor_2.3.0 -> origin/atalman_inductor_2.3.0 2025-08-26T20:39:58.7711876Z * [new branch] atalman_inductor_2.3.1 -> origin/atalman_inductor_2.3.1 2025-08-26T20:39:58.7712416Z * [new branch] atalman_inductor_2.4.0 -> origin/atalman_inductor_2.4.0 2025-08-26T20:39:58.7712930Z * [new branch] atalman_inductor_2.4.x -> origin/atalman_inductor_2.4.x 2025-08-26T20:39:58.7713579Z * [new branch] autoupdate-transformers-pin-via-pr -> origin/autoupdate-transformers-pin-via-pr 2025-08-26T20:39:58.7714172Z * [new branch] backupvllm -> origin/backupvllm 2025-08-26T20:39:58.7714641Z * [new branch] bahuang/test -> origin/bahuang/test 2025-08-26T20:39:58.7715083Z * [new branch] base/1.5 -> origin/base/1.5 2025-08-26T20:39:58.7715618Z * [new branch] batching_sdpa_efficient_attention -> origin/batching_sdpa_efficient_attention 2025-08-26T20:39:58.7716186Z * [new branch] bc-lint-config -> origin/bc-lint-config 2025-08-26T20:39:58.7716693Z * [new branch] bc-lint-test-new-config -> origin/bc-lint-test-new-config 2025-08-26T20:39:58.7717236Z * [new branch] benchmark-updates -> origin/benchmark-updates 2025-08-26T20:39:58.7717805Z * [new branch] benchmarker_compat_with_do_bench -> origin/benchmarker_compat_with_do_bench 2025-08-26T20:39:58.7718399Z * [new branch] benchmarking-script -> origin/benchmarking-script 2025-08-26T20:39:58.7718929Z * [new branch] bertmaher/pinbump26 -> origin/bertmaher/pinbump26 2025-08-26T20:39:58.7719542Z * [new branch] bertrand/cutlass -> origin/bertrand/cutlass 2025-08-26T20:39:58.7720016Z * [new branch] bf/cg-log -> origin/bf/cg-log 2025-08-26T20:39:58.7720472Z * [new branch] bf/cg-remove-check -> origin/bf/cg-remove-check 2025-08-26T20:39:58.7720975Z * [new branch] bf/cg-skip-1-kernel -> origin/bf/cg-skip-1-kernel 2025-08-26T20:39:58.7721465Z * [new branch] bf/cudagraph -> origin/bf/cudagraph 2025-08-26T20:39:58.7722160Z * [new branch] bf/cudagraph-disable-input-mutation -> origin/bf/cudagraph-disable-input-mutation 2025-08-26T20:39:58.7723105Z * [new branch] bf/cudagraph-enable-input-mutation-support-benchmark -> origin/bf/cudagraph-enable-input-mutation-support-benchmark 2025-08-26T20:39:58.7724018Z * [new branch] bf/cudagraph-partition -> origin/bf/cudagraph-partition 2025-08-26T20:39:58.7724623Z * [new branch] bf/default-recompile-reason -> origin/bf/default-recompile-reason 2025-08-26T20:39:58.7725218Z * [new branch] bf/donated-buffer-bench -> origin/bf/donated-buffer-bench 2025-08-26T20:39:58.7725743Z * [new branch] bf/pa-non-divisible -> origin/bf/pa-non-divisible 2025-08-26T20:39:58.7726261Z * [new branch] bf/partition-doc -> origin/bf/partition-doc 2025-08-26T20:39:58.7726796Z * [new branch] bf/partition-move-cpu -> origin/bf/partition-move-cpu 2025-08-26T20:39:58.8086852Z * [new branch] bf/partition-turn-on -> origin/bf/partition-turn-on 2025-08-26T20:39:58.8087482Z * [new branch] bf/remove-check-55b0c39d -> origin/bf/remove-check-55b0c39d 2025-08-26T20:39:58.8087964Z * [new branch] bf/rope -> origin/bf/rope 2025-08-26T20:39:58.8088410Z * [new branch] bf/skip-asserts -> origin/bf/skip-asserts 2025-08-26T20:39:58.8088872Z * [new branch] bf16adamw -> origin/bf16adamw 2025-08-26T20:39:58.8089369Z * [new branch] bisect_perf_hf_T5_3acc6eac492 -> origin/bisect_perf_hf_T5_3acc6eac492 2025-08-26T20:39:58.8089925Z * [new branch] bisect_perf_hf_T5_3fcf66f61fb -> origin/bisect_perf_hf_T5_3fcf66f61fb 2025-08-26T20:39:58.8090481Z * [new branch] bisect_perf_hf_T5_4009d154129 -> origin/bisect_perf_hf_T5_4009d154129 2025-08-26T20:39:58.8091024Z * [new branch] bisect_perf_hf_T5_40d0740e73d -> origin/bisect_perf_hf_T5_40d0740e73d 2025-08-26T20:39:58.8091564Z * [new branch] bisect_perf_hf_T5_5268754e -> origin/bisect_perf_hf_T5_5268754e 2025-08-26T20:39:58.8092113Z * [new branch] bisect_perf_hf_T5_7d89a8d385c -> origin/bisect_perf_hf_T5_7d89a8d385c 2025-08-26T20:39:58.8092658Z * [new branch] bisect_perf_hf_T5_b7a25c1ee7c -> origin/bisect_perf_hf_T5_b7a25c1ee7c 2025-08-26T20:39:58.8093220Z * [new branch] bisect_perf_hf_T5_c25b201583f -> origin/bisect_perf_hf_T5_c25b201583f 2025-08-26T20:39:58.8093770Z * [new branch] bisect_perf_hf_T5_c93e57efac0 -> origin/bisect_perf_hf_T5_c93e57efac0 2025-08-26T20:39:58.8094310Z * [new branch] bisect_perf_hf_T5_ca9813ea149 -> origin/bisect_perf_hf_T5_ca9813ea149 2025-08-26T20:39:58.8094848Z * [new branch] bisect_perf_hf_T5_d65f194a -> origin/bisect_perf_hf_T5_d65f194a 2025-08-26T20:39:58.8095359Z * [new branch] bisect_perf_hf_T5_da94ab0b -> origin/bisect_perf_hf_T5_da94ab0b 2025-08-26T20:39:58.8095906Z * [new branch] bisect_perf_hf_T5_da94ab0b_new -> origin/bisect_perf_hf_T5_da94ab0b_new 2025-08-26T20:39:58.8096476Z * [new branch] bisect_perf_hf_T5_db4e8a1d8a8 -> origin/bisect_perf_hf_T5_db4e8a1d8a8 2025-08-26T20:39:58.8097031Z * [new branch] bisect_perf_hf_T5_e0d97e936a2 -> origin/bisect_perf_hf_T5_e0d97e936a2 2025-08-26T20:39:58.8097741Z * [new branch] bisect_perf_hf_T5_f23621ec563 -> origin/bisect_perf_hf_T5_f23621ec563 2025-08-26T20:39:58.8098281Z * [new branch] bowbao/bench_updates_stage -> origin/bowbao/bench_updates_stage 2025-08-26T20:39:58.8098809Z * [new branch] bowbao/dort_rewriter -> origin/bowbao/dort_rewriter 2025-08-26T20:39:58.8099305Z * [new branch] bowbao/wip_prs -> origin/bowbao/wip_prs 2025-08-26T20:39:58.8099841Z * [new branch] bowenbao/partial_min_max_reduce -> origin/bowenbao/partial_min_max_reduce 2025-08-26T20:39:58.8101360Z * [new branch] brister/always_wrapper_ir -> origin/brister/always_wrapper_ir 2025-08-26T20:39:58.8101958Z * [new branch] brister/break_tensorbox -> origin/brister/break_tensorbox 2025-08-26T20:39:58.8102488Z * [new branch] brister/flatten_contig -> origin/brister/flatten_contig 2025-08-26T20:39:58.8103009Z * [new branch] brister/fx_custom_triton -> origin/brister/fx_custom_triton 2025-08-26T20:39:58.8103531Z * [new branch] brister/tensor_box_output -> origin/brister/tensor_box_output 2025-08-26T20:39:58.8104074Z * [new branch] brister/test_block_ptr_same -> origin/brister/test_block_ptr_same 2025-08-26T20:39:58.8104696Z * [new branch] brister/tiled_reduction_no_numel_check -> origin/brister/tiled_reduction_no_numel_check 2025-08-26T20:39:58.8105255Z * [new branch] c57382a49 -> origin/c57382a49 2025-08-26T20:39:58.8105696Z * [new branch] ca_0431d47eaa -> origin/ca_0431d47eaa 2025-08-26T20:39:58.8106131Z * [new branch] ca_fix_0431d47eaa -> origin/ca_fix_0431d47eaa 2025-08-26T20:39:58.8107049Z * [new branch] camyll/revert-94bc900da97ad7f3c35b3b819bb53b23c74b581a-for-release-2.8 -> origin/camyll/revert-94bc900da97ad7f3c35b3b819bb53b23c74b581a-for-release-2.8 2025-08-26T20:39:58.8108028Z * [new branch] camyllh/test_setup_hooks_push -> origin/camyllh/test_setup_hooks_push 2025-08-26T20:39:58.8108743Z * [new branch] cherry-pick-149654-by-pytorch_bot_bot_ -> origin/cherry-pick-149654-by-pytorch_bot_bot_ 2025-08-26T20:39:58.8109481Z * [new branch] cherry-pick-151939-by-pytorch_bot_bot_ -> origin/cherry-pick-151939-by-pytorch_bot_bot_ 2025-08-26T20:39:58.8110199Z * [new branch] cherry-pick-154174-by-pytorch_bot_bot_ -> origin/cherry-pick-154174-by-pytorch_bot_bot_ 2025-08-26T20:39:58.8110933Z * [new branch] cherry-pick-155896-by-pytorch_bot_bot_ -> origin/cherry-pick-155896-by-pytorch_bot_bot_ 2025-08-26T20:39:58.8400271Z * [new branch] cherry-pick-156260-by-pytorch_bot_bot_ -> origin/cherry-pick-156260-by-pytorch_bot_bot_ 2025-08-26T20:39:58.8401024Z * [new branch] cherry-pick-156719-by-pytorch_bot_bot_ -> origin/cherry-pick-156719-by-pytorch_bot_bot_ 2025-08-26T20:39:58.8401752Z * [new branch] cherry-pick-156888-by-pytorch_bot_bot_ -> origin/cherry-pick-156888-by-pytorch_bot_bot_ 2025-08-26T20:39:58.8402465Z * [new branch] cherry-pick-157453-by-pytorch_bot_bot_ -> origin/cherry-pick-157453-by-pytorch_bot_bot_ 2025-08-26T20:39:58.8403214Z * [new branch] cherry-pick-157513-by-pytorch_bot_bot_ -> origin/cherry-pick-157513-by-pytorch_bot_bot_ 2025-08-26T20:39:58.8403948Z * [new branch] cherry-pick-157558-by-pytorch_bot_bot_ -> origin/cherry-pick-157558-by-pytorch_bot_bot_ 2025-08-26T20:39:58.8404669Z * [new branch] cherry-pick-157598-by-pytorch_bot_bot_ -> origin/cherry-pick-157598-by-pytorch_bot_bot_ 2025-08-26T20:39:58.8405393Z * [new branch] cherry-pick-157630-by-pytorch_bot_bot_ -> origin/cherry-pick-157630-by-pytorch_bot_bot_ 2025-08-26T20:39:58.8406117Z * [new branch] cherry-pick-157695-by-pytorch_bot_bot_ -> origin/cherry-pick-157695-by-pytorch_bot_bot_ 2025-08-26T20:39:58.8406980Z * [new branch] cherry-pick-157732-by-pytorch_bot_bot_ -> origin/cherry-pick-157732-by-pytorch_bot_bot_ 2025-08-26T20:39:58.8407710Z * [new branch] cherry-pick-157733-by-pytorch_bot_bot_ -> origin/cherry-pick-157733-by-pytorch_bot_bot_ 2025-08-26T20:39:58.8408424Z * [new branch] cherry-pick-157985-by-pytorch_bot_bot_ -> origin/cherry-pick-157985-by-pytorch_bot_bot_ 2025-08-26T20:39:58.8409143Z * [new branch] cherry-pick-157993-by-pytorch_bot_bot_ -> origin/cherry-pick-157993-by-pytorch_bot_bot_ 2025-08-26T20:39:58.8409971Z * [new branch] cherry-pick-158064-by-pytorch_bot_bot_ -> origin/cherry-pick-158064-by-pytorch_bot_bot_ 2025-08-26T20:39:58.8410690Z * [new branch] cherry-pick-158152-by-pytorch_bot_bot_ -> origin/cherry-pick-158152-by-pytorch_bot_bot_ 2025-08-26T20:39:58.8411415Z * [new branch] cherry-pick-158301-by-pytorch_bot_bot_ -> origin/cherry-pick-158301-by-pytorch_bot_bot_ 2025-08-26T20:39:58.8412136Z * [new branch] cherry-pick-158537-by-pytorch_bot_bot_ -> origin/cherry-pick-158537-by-pytorch_bot_bot_ 2025-08-26T20:39:58.8412864Z * [new branch] cherry-pick-159181-by-pytorch_bot_bot_ -> origin/cherry-pick-159181-by-pytorch_bot_bot_ 2025-08-26T20:39:58.8413589Z * [new branch] cherry-pick-159969-by-pytorch_bot_bot_ -> origin/cherry-pick-159969-by-pytorch_bot_bot_ 2025-08-26T20:39:58.8414307Z * [new branch] cherry-pick-160586-by-pytorch_bot_bot_ -> origin/cherry-pick-160586-by-pytorch_bot_bot_ 2025-08-26T20:39:58.8415173Z * [new branch] cherrypick-e4e2701429c17078c3c475382a8b1fa4c8a8cefc -> origin/cherrypick-e4e2701429c17078c3c475382a8b1fa4c8a8cefc 2025-08-26T20:39:58.8415923Z * [new branch] chilli/flex_vllm -> origin/chilli/flex_vllm 2025-08-26T20:39:58.8416372Z * [new branch] cleantest1 -> origin/cleantest1 2025-08-26T20:39:58.8416960Z * [new branch] cleanup-inductor-benchmark-images -> origin/cleanup-inductor-benchmark-images 2025-08-26T20:39:58.8417540Z * [new branch] codex-testing -> origin/codex-testing 2025-08-26T20:39:58.8418154Z * [new branch] codex/add-metadata-field-for-file-path -> origin/codex/add-metadata-field-for-file-path 2025-08-26T20:39:58.8419025Z * [new branch] codex/add-test-for-inductor-local-cache-behavior -> origin/codex/add-test-for-inductor-local-cache-behavior 2025-08-26T20:39:58.8420054Z * [new branch] codex/create-test-for-tensor-memory-leak-in-cudagraph -> origin/codex/create-test-for-tensor-memory-leak-in-cudagraph 2025-08-26T20:39:58.8420932Z * [new branch] codex/fix-issue-121219-in-pytorch -> origin/codex/fix-issue-121219-in-pytorch 2025-08-26T20:39:58.8421581Z * [new branch] codex/fix-issue-160415-in-pytorch -> origin/codex/fix-issue-160415-in-pytorch 2025-08-26T20:39:58.8422378Z * [new branch] codex/fix-noqengine-quantized-engine-support -> origin/codex/fix-noqengine-quantized-engine-support 2025-08-26T20:39:58.8423184Z * [new branch] codex/fix-pin_memory-error-handling -> origin/codex/fix-pin_memory-error-handling 2025-08-26T20:39:58.8423872Z * [new branch] codex/propose-fix-for-issue-160332 -> origin/codex/propose-fix-for-issue-160332 2025-08-26T20:39:58.8424685Z * [new branch] codex/refactor-lintrunner-config-to-use-uv-run -> origin/codex/refactor-lintrunner-config-to-use-uv-run 2025-08-26T20:39:58.8425668Z * [new branch] codex/remove-allow-untyped-defs-and-fix-type-errors -> origin/codex/remove-allow-untyped-defs-and-fix-type-errors 2025-08-26T20:39:58.8805908Z * [new branch] codex/verify-torch-output-and-log-results -> origin/codex/verify-torch-output-and-log-results 2025-08-26T20:39:58.8806745Z * [new branch] compile_fsdp2_disable_stream_and_event -> origin/compile_fsdp2_disable_stream_and_event 2025-08-26T20:39:58.8807478Z * [new branch] context_test -> origin/context_test 2025-08-26T20:39:58.8807960Z * [new branch] copilot/fix-157446 -> origin/copilot/fix-157446 2025-08-26T20:39:58.8808457Z * [new branch] copilot/fix-159257 -> origin/copilot/fix-159257 2025-08-26T20:39:58.8808913Z * [new branch] copy_graph -> origin/copy_graph 2025-08-26T20:39:58.8809383Z * [new branch] cpio/fix_new_ami_tests -> origin/cpio/fix_new_ami_tests 2025-08-26T20:39:58.8809991Z * [new branch] csl/always_produce_xml -> origin/csl/always_produce_xml 2025-08-26T20:39:58.8810520Z * [new branch] csl/build_test_more_procs -> origin/csl/build_test_more_procs 2025-08-26T20:39:58.8811060Z * [new branch] csl/build_test_more_procs2 -> origin/csl/build_test_more_procs2 2025-08-26T20:39:58.8811597Z * [new branch] csl/disable_flaky_cpp_test -> origin/csl/disable_flaky_cpp_test 2025-08-26T20:39:58.8812143Z * [new branch] csl/disable_periodic_test -> origin/csl/disable_periodic_test 2025-08-26T20:39:58.8812679Z * [new branch] csl/executorch_docker_fail -> origin/csl/executorch_docker_fail 2025-08-26T20:39:58.8813199Z * [new branch] csl/fix_check_alerts -> origin/csl/fix_check_alerts 2025-08-26T20:39:58.8813652Z * [new branch] csl/katex -> origin/csl/katex 2025-08-26T20:39:58.8814089Z * [new branch] csl/larger_runner -> origin/csl/larger_runner 2025-08-26T20:39:58.8814587Z * [new branch] csl/lintrunner_stuff -> origin/csl/lintrunner_stuff 2025-08-26T20:39:58.8815066Z * [new branch] csl/mps_sharding -> origin/csl/mps_sharding 2025-08-26T20:39:58.8815551Z * [new branch] csl/multistage_docker -> origin/csl/multistage_docker 2025-08-26T20:39:58.8816054Z * [new branch] csl/name_link_check_job -> origin/csl/name_link_check_job 2025-08-26T20:39:58.8816556Z * [new branch] csl/no_keep_goin_rocm -> origin/csl/no_keep_goin_rocm 2025-08-26T20:39:58.8817039Z * [new branch] csl/not_600_timeout -> origin/csl/not_600_timeout 2025-08-26T20:39:58.8817579Z * [new branch] csl/remove_unused_docker_images -> origin/csl/remove_unused_docker_images 2025-08-26T20:39:58.8818112Z * [new branch] csl/revert_open -> origin/csl/revert_open 2025-08-26T20:39:58.8818563Z * [new branch] csl/skip_build -> origin/csl/skip_build 2025-08-26T20:39:58.8819093Z * [new branch] csl/test_cuda_build_large_runner -> origin/csl/test_cuda_build_large_runner 2025-08-26T20:39:58.8819650Z * [new branch] csl/unused_docker -> origin/csl/unused_docker 2025-08-26T20:39:58.8820097Z * [new branch] csl/win_sccache -> origin/csl/win_sccache 2025-08-26T20:39:58.8820571Z * [new branch] cublasltrelax2 -> origin/cublasltrelax2 2025-08-26T20:39:58.8821025Z * [new branch] cublasrelax2 -> origin/cublasrelax2 2025-08-26T20:39:58.8821497Z * [new branch] cudnnsdparefactor -> origin/cudnnsdparefactor 2025-08-26T20:39:58.8822070Z * [new branch] custom_lowering_dict -> origin/custom_lowering_dict 2025-08-26T20:39:58.8822600Z * [new branch] czhuge_muon_dev -> origin/czhuge_muon_dev 2025-08-26T20:39:58.8823082Z * [new branch] d4l3k/delete_hook -> origin/d4l3k/delete_hook 2025-08-26T20:39:58.8823517Z * [new branch] dcp_zoc -> origin/dcp_zoc 2025-08-26T20:39:58.8823964Z * [new branch] delete-quant-docs -> origin/delete-quant-docs 2025-08-26T20:39:58.8824833Z * [new branch] dependabot/pip/dot-ci/docker/ci_commit_pins/main/transformers-4.55.2 -> origin/dependabot/pip/dot-ci/docker/ci_commit_pins/main/transformers-4.55.2 2025-08-26T20:39:58.8826135Z * [new branch] dependabot/pip/dot-ci/docker/ci_commit_pins/main/transformers-4.55.3 -> origin/dependabot/pip/dot-ci/docker/ci_commit_pins/main/transformers-4.55.3 2025-08-26T20:39:58.8827343Z * [new branch] dependabot/pip/dot-ci/docker/ci_commit_pins/main/transformers-4.55.4 -> origin/dependabot/pip/dot-ci/docker/ci_commit_pins/main/transformers-4.55.4 2025-08-26T20:39:58.8828531Z * [new branch] dependabot/pip/dot-ci/docker/protobuf-5.29.5 -> origin/dependabot/pip/dot-ci/docker/protobuf-5.29.5 2025-08-26T20:39:58.8829458Z * [new branch] dependabot/pip/dot-github/requirements/protobuf-5.29.5 -> origin/dependabot/pip/dot-github/requirements/protobuf-5.29.5 2025-08-26T20:39:58.8830257Z * [new branch] desertfire/test_cpp_wrapper -> origin/desertfire/test_cpp_wrapper 2025-08-26T20:39:58.9448506Z * [new branch] desertfire/triton-cpu-for-aarch64 -> origin/desertfire/triton-cpu-for-aarch64 2025-08-26T20:39:58.9449197Z * [new branch] dev/joona/MPSNDArrayAdd -> origin/dev/joona/MPSNDArrayAdd 2025-08-26T20:39:58.9449736Z * [new branch] dev/joona/Unranked -> origin/dev/joona/Unranked 2025-08-26T20:39:58.9450200Z * [new branch] dev/joona/cat -> origin/dev/joona/cat 2025-08-26T20:39:58.9450701Z * [new branch] dev/joona/cat_remove_graph -> origin/dev/joona/cat_remove_graph 2025-08-26T20:39:58.9451246Z * [new branch] dev/joona/embeddingbag -> origin/dev/joona/embeddingbag 2025-08-26T20:39:58.9451797Z * [new branch] dev/joona/getTensorsString -> origin/dev/joona/getTensorsString 2025-08-26T20:39:58.9452470Z * [new branch] dev/joona/maxpool2dwithindices_errmsg -> origin/dev/joona/maxpool2dwithindices_errmsg 2025-08-26T20:39:58.9453129Z * [new branch] dev/joona/mps_linear_macos14 -> origin/dev/joona/mps_linear_macos14 2025-08-26T20:39:58.9453652Z * [new branch] dev/joona/sdpa -> origin/dev/joona/sdpa 2025-08-26T20:39:58.9454196Z * [new branch] dev/joona/synchronize_benchmark -> origin/dev/joona/synchronize_benchmark 2025-08-26T20:39:58.9454768Z * [new branch] dev/joona/topk_newapi -> origin/dev/joona/topk_newapi 2025-08-26T20:39:58.9455263Z * [new branch] dev/joona/type_inf -> origin/dev/joona/type_inf 2025-08-26T20:39:58.9455746Z * [new branch] dev/joona/upsize3d -> origin/dev/joona/upsize3d 2025-08-26T20:39:58.9456202Z * [new branch] disable -> origin/disable 2025-08-26T20:39:58.9456625Z * [new branch] e2e-baseline -> origin/e2e-baseline 2025-08-26T20:39:58.9457113Z * [new branch] eigen_for_sparse_addmm_v2 -> origin/eigen_for_sparse_addmm_v2 2025-08-26T20:39:58.9457649Z * [new branch] embg/test_inductor_ci_128B -> origin/embg/test_inductor_ci_128B 2025-08-26T20:39:58.9458177Z * [new branch] embg/test_inductor_ci_base -> origin/embg/test_inductor_ci_base 2025-08-26T20:39:58.9458730Z * [new branch] embg/test_inductor_ci_control -> origin/embg/test_inductor_ci_control 2025-08-26T20:39:58.9459289Z * [new branch] embg/triton_l2_prefetch_128B -> origin/embg/triton_l2_prefetch_128B 2025-08-26T20:39:58.9459846Z * [new branch] embg/triton_l2_prefetch_256B -> origin/embg/triton_l2_prefetch_256B 2025-08-26T20:39:58.9460387Z * [new branch] enable-b200-benchmark -> origin/enable-b200-benchmark 2025-08-26T20:39:58.9460871Z * [new branch] eqy-patch-1 -> origin/eqy-patch-1 2025-08-26T20:39:58.9461311Z * [new branch] eqy-patch-2 -> origin/eqy-patch-2 2025-08-26T20:39:58.9461744Z * [new branch] eqy-patch-3 -> origin/eqy-patch-3 2025-08-26T20:39:58.9462364Z * [new branch] eqy-patch-4 -> origin/eqy-patch-4 2025-08-26T20:39:58.9462862Z * [new branch] example-convert-torch.nn -> origin/example-convert-torch.nn 2025-08-26T20:39:58.9463416Z * [new branch] exclamaforte/amd-ma -> origin/exclamaforte/amd-ma 2025-08-26T20:39:58.9464067Z * [new branch] exclamaforte/bump-transformer-version -> origin/exclamaforte/bump-transformer-version 2025-08-26T20:39:58.9464793Z * [new branch] exclamaforte/clear-feedback-savers -> origin/exclamaforte/clear-feedback-savers 2025-08-26T20:39:58.9466168Z * [new branch] exclamaforte/combo-kernels-perf-run -> origin/exclamaforte/combo-kernels-perf-run 2025-08-26T20:39:58.9466907Z * [new branch] exclamaforte/debug-autotuner-profile -> origin/exclamaforte/debug-autotuner-profile 2025-08-26T20:39:58.9467596Z * [new branch] exclamaforte/do_bench_refactor -> origin/exclamaforte/do_bench_refactor 2025-08-26T20:39:58.9468258Z * [new branch] exclamaforte/enable-mem-dep-fusion -> origin/exclamaforte/enable-mem-dep-fusion 2025-08-26T20:39:58.9468981Z * [new branch] exclamaforte/fix-exhaustive-autotuning -> origin/exclamaforte/fix-exhaustive-autotuning 2025-08-26T20:39:58.9469734Z * [new branch] exclamaforte/fix-trace-parsing-fx-svg -> origin/exclamaforte/fix-trace-parsing-fx-svg 2025-08-26T20:39:58.9470511Z * [new branch] exclamaforte/force-pointwise-cat-perf-run -> origin/exclamaforte/force-pointwise-cat-perf-run 2025-08-26T20:39:58.9471200Z * [new branch] exclamaforte/fusion-data -> origin/exclamaforte/fusion-data 2025-08-26T20:39:58.9471808Z * [new branch] exclamaforte/gemm-benchmark-run -> origin/exclamaforte/gemm-benchmark-run 2025-08-26T20:39:58.9472449Z * [new branch] exclamaforte/gemm-export-model -> origin/exclamaforte/gemm-export-model 2025-08-26T20:39:58.9473046Z * [new branch] exclamaforte/gemm-model -> origin/exclamaforte/gemm-model 2025-08-26T20:39:58.9473741Z * [new branch] exclamaforte/gemm-model-all-data-collection -> origin/exclamaforte/gemm-model-all-data-collection 2025-08-26T20:39:58.9874583Z * [new branch] exclamaforte/gemm-to-amd -> origin/exclamaforte/gemm-to-amd 2025-08-26T20:39:58.9875231Z * [new branch] exclamaforte/just-gemm-model -> origin/exclamaforte/just-gemm-model 2025-08-26T20:39:58.9875966Z * [new branch] exclamaforte/just-gemm-model-no-refactor -> origin/exclamaforte/just-gemm-model-no-refactor 2025-08-26T20:39:58.9876680Z * [new branch] exclamaforte/memory-counter -> origin/exclamaforte/memory-counter 2025-08-26T20:39:58.9877370Z * [new branch] exclamaforte/profiler-combo -> origin/exclamaforte/profiler-combo 2025-08-26T20:39:58.9877999Z * [new branch] exclamaforte/test_cpp_wrapper_mode -> origin/exclamaforte/test_cpp_wrapper_mode 2025-08-26T20:39:58.9878734Z * [new branch] exclamaforte/update-autotune-configs -> origin/exclamaforte/update-autotune-configs 2025-08-26T20:39:58.9879500Z * [new branch] exclamaforte/update-autotune-configs-2 -> origin/exclamaforte/update-autotune-configs-2 2025-08-26T20:39:58.9880180Z * [new branch] exclamforte/gemm-model-final -> origin/exclamforte/gemm-model-final 2025-08-26T20:39:58.9880678Z * [new branch] exec -> origin/exec 2025-08-26T20:39:58.9881139Z * [new branch] experimental-mosaic -> origin/experimental-mosaic 2025-08-26T20:39:58.9881636Z * [new branch] export-D58091437 -> origin/export-D58091437 2025-08-26T20:39:58.9882110Z * [new branch] export-D61047529 -> origin/export-D61047529 2025-08-26T20:39:58.9882570Z * [new branch] export-D70112642 -> origin/export-D70112642 2025-08-26T20:39:58.9883274Z * [new branch] export-D71412006 -> origin/export-D71412006 2025-08-26T20:39:58.9883737Z * [new branch] export-D72483950 -> origin/export-D72483950 2025-08-26T20:39:58.9884207Z * [new branch] export-D73042989 -> origin/export-D73042989 2025-08-26T20:39:58.9884662Z * [new branch] export-D75183591 -> origin/export-D75183591 2025-08-26T20:39:58.9885130Z * [new branch] export-D75605373 -> origin/export-D75605373 2025-08-26T20:39:58.9885694Z * [new branch] export-D75617432 -> origin/export-D75617432 2025-08-26T20:39:58.9886154Z * [new branch] export-D75659965 -> origin/export-D75659965 2025-08-26T20:39:58.9886621Z * [new branch] export-D76080931 -> origin/export-D76080931 2025-08-26T20:39:58.9887080Z * [new branch] export-D76463347 -> origin/export-D76463347 2025-08-26T20:39:58.9887559Z * [new branch] export-D76797250 -> origin/export-D76797250 2025-08-26T20:39:58.9888024Z * [new branch] export-D76885271 -> origin/export-D76885271 2025-08-26T20:39:58.9888487Z * [new branch] export-D76885620 -> origin/export-D76885620 2025-08-26T20:39:58.9888950Z * [new branch] export-D76936623 -> origin/export-D76936623 2025-08-26T20:39:58.9889400Z * [new branch] export-D76958268 -> origin/export-D76958268 2025-08-26T20:39:58.9889864Z * [new branch] export-D78308105 -> origin/export-D78308105 2025-08-26T20:39:58.9890327Z * [new branch] export-D78375400 -> origin/export-D78375400 2025-08-26T20:39:58.9890786Z * [new branch] export-D78431305 -> origin/export-D78431305 2025-08-26T20:39:58.9891275Z * [new branch] export-D78580107 -> origin/export-D78580107 2025-08-26T20:39:58.9891729Z * [new branch] export-D78822171 -> origin/export-D78822171 2025-08-26T20:39:58.9892184Z * [new branch] export-D78822351 -> origin/export-D78822351 2025-08-26T20:39:58.9892634Z * [new branch] export-D78822507 -> origin/export-D78822507 2025-08-26T20:39:58.9893095Z * [new branch] export-D78826994 -> origin/export-D78826994 2025-08-26T20:39:58.9893555Z * [new branch] export-D78894142 -> origin/export-D78894142 2025-08-26T20:39:58.9894008Z * [new branch] export-D78894324 -> origin/export-D78894324 2025-08-26T20:39:58.9894467Z * [new branch] export-D78929245 -> origin/export-D78929245 2025-08-26T20:39:58.9894921Z * [new branch] export-D78934925 -> origin/export-D78934925 2025-08-26T20:39:58.9895386Z * [new branch] export-D78953203 -> origin/export-D78953203 2025-08-26T20:39:58.9895852Z * [new branch] export-D78953229 -> origin/export-D78953229 2025-08-26T20:39:58.9896305Z * [new branch] export-D78957093 -> origin/export-D78957093 2025-08-26T20:39:58.9896768Z * [new branch] export-D78957389 -> origin/export-D78957389 2025-08-26T20:39:58.9897223Z * [new branch] export-D78979812 -> origin/export-D78979812 2025-08-26T20:39:58.9897694Z * [new branch] export-D78996107 -> origin/export-D78996107 2025-08-26T20:39:58.9898156Z * [new branch] export-D79026433 -> origin/export-D79026433 2025-08-26T20:39:59.0313042Z * [new branch] export-D79230339 -> origin/export-D79230339 2025-08-26T20:39:59.0313564Z * [new branch] export-D79319835 -> origin/export-D79319835 2025-08-26T20:39:59.0314034Z * [new branch] export-D79328456 -> origin/export-D79328456 2025-08-26T20:39:59.0314681Z * [new branch] export-D79534608 -> origin/export-D79534608 2025-08-26T20:39:59.0315151Z * [new branch] export-D79647167 -> origin/export-D79647167 2025-08-26T20:39:59.0315617Z * [new branch] export-D79751098 -> origin/export-D79751098 2025-08-26T20:39:59.0316089Z * [new branch] export-D79785974 -> origin/export-D79785974 2025-08-26T20:39:59.0316542Z * [new branch] export-D80025417 -> origin/export-D80025417 2025-08-26T20:39:59.0317127Z * [new branch] export-D80120333 -> origin/export-D80120333 2025-08-26T20:39:59.0317594Z * [new branch] export-D80214882 -> origin/export-D80214882 2025-08-26T20:39:59.0318063Z * [new branch] export-D80319069 -> origin/export-D80319069 2025-08-26T20:39:59.0318522Z * [new branch] export-D80321215 -> origin/export-D80321215 2025-08-26T20:39:59.0318989Z * [new branch] export-D80503451 -> origin/export-D80503451 2025-08-26T20:39:59.0319450Z * [new branch] export-D80771648 -> origin/export-D80771648 2025-08-26T20:39:59.0319909Z * [new branch] export-D80823877 -> origin/export-D80823877 2025-08-26T20:39:59.0320374Z * [new branch] export-D80948073 -> origin/export-D80948073 2025-08-26T20:39:59.0320839Z * [new branch] export-D80958642 -> origin/export-D80958642 2025-08-26T20:39:59.0321295Z * [new branch] export-D80970483 -> origin/export-D80970483 2025-08-26T20:39:59.0321772Z * [new branch] export-D81054193 -> origin/export-D81054193 2025-08-26T20:39:59.0322222Z * [new branch] export-D81060182 -> origin/export-D81060182 2025-08-26T20:39:59.0322803Z * [new branch] exported-model-train-idempotent -> origin/exported-model-train-idempotent 2025-08-26T20:39:59.0323544Z * [new branch] ezyang/wip-aot-descriptors -> origin/ezyang/wip-aot-descriptors 2025-08-26T20:39:59.0324049Z * [new branch] fa_u8_brgemm -> origin/fa_u8_brgemm 2025-08-26T20:39:59.0324519Z * [new branch] fastmath_baseline -> origin/fastmath_baseline 2025-08-26T20:39:59.0324974Z * [new branch] fbcode/warm -> origin/fbcode/warm 2025-08-26T20:39:59.0325390Z * [new branch] fca -> origin/fca 2025-08-26T20:39:59.0325795Z * [new branch] fca2_ca5984c -> origin/fca2_ca5984c 2025-08-26T20:39:59.0326224Z * [new branch] fca5 -> origin/fca5 2025-08-26T20:39:59.0326744Z * [new branch] feature/function-numa-binding -> origin/feature/function-numa-binding 2025-08-26T20:39:59.0327420Z * [new branch] feature/function-numa-binding-take2 -> origin/feature/function-numa-binding-take2 2025-08-26T20:39:59.0328076Z * [new branch] feature/numa-nproc-fix -> origin/feature/numa-nproc-fix 2025-08-26T20:39:59.0328693Z * [new branch] feature/numa-signpost-serialize -> origin/feature/numa-signpost-serialize 2025-08-26T20:39:59.0329320Z * [new branch] fengyuan/external-proj -> origin/fengyuan/external-proj 2025-08-26T20:39:59.0330009Z * [new branch] fengyuan/out-of-tree-xpu-ops-improve-test -> origin/fengyuan/out-of-tree-xpu-ops-improve-test 2025-08-26T20:39:59.0330828Z * [new branch] fengyuan/out-of-tree-xpu-ops-remove-dtype -> origin/fengyuan/out-of-tree-xpu-ops-remove-dtype 2025-08-26T20:39:59.0331496Z * [new branch] fengyuan/test-xpu -> origin/fengyuan/test-xpu 2025-08-26T20:39:59.0331981Z * [new branch] ffast_math_baseline -> origin/ffast_math_baseline 2025-08-26T20:39:59.0332448Z * [new branch] ffast_math_target -> origin/ffast_math_target 2025-08-26T20:39:59.0333045Z * [new branch] findhao/base_commit -> origin/findhao/base_commit 2025-08-26T20:39:59.0333540Z * [new branch] findhao/base_commit1 -> origin/findhao/base_commit1 2025-08-26T20:39:59.0334052Z * [new branch] findhao/multistream2 -> origin/findhao/multistream2 2025-08-26T20:39:59.0334576Z * [new branch] findhao/multistream5 -> origin/findhao/multistream5 2025-08-26T20:39:59.0335081Z * [new branch] findhao/multistream6 -> origin/findhao/multistream6 2025-08-26T20:39:59.0335801Z * [new branch] findhao/operatorbench3 -> origin/findhao/operatorbench3 2025-08-26T20:39:59.0336399Z * [new branch] findhao/operatorbench5 -> origin/findhao/operatorbench5 2025-08-26T20:39:59.0336929Z * [new branch] findhao/tritonparse -> origin/findhao/tritonparse 2025-08-26T20:39:59.0337372Z * [new branch] fix -> origin/fix 2025-08-26T20:39:59.0775050Z * [new branch] fix-ck-gemm-template-format -> origin/fix-ck-gemm-template-format 2025-08-26T20:39:59.0775644Z * [new branch] fix-config-ignore -> origin/fix-config-ignore 2025-08-26T20:39:59.0776152Z * [new branch] fix-dict-guard -> origin/fix-dict-guard 2025-08-26T20:39:59.0776690Z * [new branch] fix-distributed-warning -> origin/fix-distributed-warning 2025-08-26T20:39:59.0777276Z * [new branch] fix-inductor-periodic-0528 -> origin/fix-inductor-periodic-0528 2025-08-26T20:39:59.0777842Z * [new branch] fix-mps-benchmark -> origin/fix-mps-benchmark 2025-08-26T20:39:59.0778388Z * [new branch] fix-rlease-feature-template -> origin/fix-rlease-feature-template 2025-08-26T20:39:59.0779057Z * [new branch] fix-run-condition-upload-results -> origin/fix-run-condition-upload-results 2025-08-26T20:39:59.0779657Z * [new branch] fix-torchbench -> origin/fix-torchbench 2025-08-26T20:39:59.0780118Z * [new branch] fix_153389 -> origin/fix_153389 2025-08-26T20:39:59.0780581Z * [new branch] fix_fsdp_rs_bucket2 -> origin/fix_fsdp_rs_bucket2 2025-08-26T20:39:59.0781084Z * [new branch] fix_inductor_peridic_tests -> origin/fix_inductor_peridic_tests 2025-08-26T20:39:59.0781585Z * [new branch] fix_ubn_159469 -> origin/fix_ubn_159469 2025-08-26T20:39:59.0782037Z * [new branch] fixes-triage -> origin/fixes-triage 2025-08-26T20:39:59.0782504Z * [new branch] flash_decoding_cpu -> origin/flash_decoding_cpu 2025-08-26T20:39:59.0782985Z * [new branch] flex-flash -> origin/flex-flash 2025-08-26T20:39:59.0783421Z * [new branch] flex-lowering -> origin/flex-lowering 2025-08-26T20:39:59.0783874Z * [new branch] flex-warning -> origin/flex-warning 2025-08-26T20:39:59.0784396Z * [new branch] flex_attention_functorch_grad -> origin/flex_attention_functorch_grad 2025-08-26T20:39:59.0784898Z * [new branch] flex_flash -> origin/flex_flash 2025-08-26T20:39:59.0785391Z * [new branch] flexdecode-gqa-groups -> origin/flexdecode-gqa-groups 2025-08-26T20:39:59.0785963Z * [new branch] fmassa/fix_memeff_sharding_rule -> origin/fmassa/fix_memeff_sharding_rule 2025-08-26T20:39:59.0786596Z * [new branch] fmassa/try_fix_ac_tag_propagation -> origin/fmassa/try_fix_ac_tag_propagation 2025-08-26T20:39:59.0787159Z * [new branch] fsdp2_trace_rules -> origin/fsdp2_trace_rules 2025-08-26T20:39:59.0787609Z * [new branch] fsdpv2_3d -> origin/fsdpv2_3d 2025-08-26T20:39:59.0788048Z * [new branch] fsdpv2_3d_m1 -> origin/fsdpv2_3d_m1 2025-08-26T20:39:59.0788626Z * [new branch] fx_cpp -> origin/fx_cpp 2025-08-26T20:39:59.0789057Z * [new branch] fy/fix-win -> origin/fy/fix-win 2025-08-26T20:39:59.0789523Z * [new branch] gh/AlnisM/1/base -> origin/gh/AlnisM/1/base 2025-08-26T20:39:59.0790019Z * [new branch] gh/AlnisM/1/head -> origin/gh/AlnisM/1/head 2025-08-26T20:39:59.0790490Z * [new branch] gh/CaoE/2/base -> origin/gh/CaoE/2/base 2025-08-26T20:39:59.0791034Z * [new branch] gh/CaoE/2/head -> origin/gh/CaoE/2/head 2025-08-26T20:39:59.0791498Z * [new branch] gh/CaoE/2/orig -> origin/gh/CaoE/2/orig 2025-08-26T20:39:59.0792010Z * [new branch] gh/ColinPeppler/78/base -> origin/gh/ColinPeppler/78/base 2025-08-26T20:39:59.0792581Z * [new branch] gh/ColinPeppler/78/head -> origin/gh/ColinPeppler/78/head 2025-08-26T20:39:59.0793145Z * [new branch] gh/ColinPeppler/78/orig -> origin/gh/ColinPeppler/78/orig 2025-08-26T20:39:59.0793689Z * [new branch] gh/ColinPeppler/79/base -> origin/gh/ColinPeppler/79/base 2025-08-26T20:39:59.0794250Z * [new branch] gh/ColinPeppler/79/head -> origin/gh/ColinPeppler/79/head 2025-08-26T20:39:59.0794792Z * [new branch] gh/ColinPeppler/79/orig -> origin/gh/ColinPeppler/79/orig 2025-08-26T20:39:59.0795338Z * [new branch] gh/EikanWang/67/base -> origin/gh/EikanWang/67/base 2025-08-26T20:39:59.0795863Z * [new branch] gh/EikanWang/67/head -> origin/gh/EikanWang/67/head 2025-08-26T20:39:59.0796364Z * [new branch] gh/EikanWang/80/base -> origin/gh/EikanWang/80/base 2025-08-26T20:39:59.0796875Z * [new branch] gh/EikanWang/80/head -> origin/gh/EikanWang/80/head 2025-08-26T20:39:59.0797366Z * [new branch] gh/EikanWang/80/orig -> origin/gh/EikanWang/80/orig 2025-08-26T20:39:59.0797870Z * [new branch] gh/EikanWang/81/base -> origin/gh/EikanWang/81/base 2025-08-26T20:39:59.0798368Z * [new branch] gh/EikanWang/81/head -> origin/gh/EikanWang/81/head 2025-08-26T20:39:59.0798877Z * [new branch] gh/EikanWang/81/orig -> origin/gh/EikanWang/81/orig 2025-08-26T20:39:59.1236930Z * [new branch] gh/Gasoonjia/1/base -> origin/gh/Gasoonjia/1/base 2025-08-26T20:39:59.1237521Z * [new branch] gh/Gasoonjia/1/head -> origin/gh/Gasoonjia/1/head 2025-08-26T20:39:59.1238016Z * [new branch] gh/H-Huang/131/base -> origin/gh/H-Huang/131/base 2025-08-26T20:39:59.1238512Z * [new branch] gh/H-Huang/131/head -> origin/gh/H-Huang/131/head 2025-08-26T20:39:59.1238984Z * [new branch] gh/H-Huang/131/orig -> origin/gh/H-Huang/131/orig 2025-08-26T20:39:59.1239478Z * [new branch] gh/H-Huang/132/base -> origin/gh/H-Huang/132/base 2025-08-26T20:39:59.1239961Z * [new branch] gh/H-Huang/132/head -> origin/gh/H-Huang/132/head 2025-08-26T20:39:59.1240427Z * [new branch] gh/H-Huang/132/orig -> origin/gh/H-Huang/132/orig 2025-08-26T20:39:59.1240914Z * [new branch] gh/H-Huang/180/base -> origin/gh/H-Huang/180/base 2025-08-26T20:39:59.1241383Z * [new branch] gh/H-Huang/180/head -> origin/gh/H-Huang/180/head 2025-08-26T20:39:59.1241868Z * [new branch] gh/H-Huang/180/orig -> origin/gh/H-Huang/180/orig 2025-08-26T20:39:59.1242352Z * [new branch] gh/H-Huang/182/base -> origin/gh/H-Huang/182/base 2025-08-26T20:39:59.1242827Z * [new branch] gh/H-Huang/182/head -> origin/gh/H-Huang/182/head 2025-08-26T20:39:59.1243376Z * [new branch] gh/H-Huang/182/orig -> origin/gh/H-Huang/182/orig 2025-08-26T20:39:59.1244007Z * [new branch] gh/H-Huang/187/base -> origin/gh/H-Huang/187/base 2025-08-26T20:39:59.1244490Z * [new branch] gh/H-Huang/187/head -> origin/gh/H-Huang/187/head 2025-08-26T20:39:59.1244971Z * [new branch] gh/H-Huang/187/orig -> origin/gh/H-Huang/187/orig 2025-08-26T20:39:59.1245442Z * [new branch] gh/H-Huang/196/base -> origin/gh/H-Huang/196/base 2025-08-26T20:39:59.1245933Z * [new branch] gh/H-Huang/196/head -> origin/gh/H-Huang/196/head 2025-08-26T20:39:59.1246493Z * [new branch] gh/H-Huang/196/orig -> origin/gh/H-Huang/196/orig 2025-08-26T20:39:59.1246977Z * [new branch] gh/H-Huang/197/base -> origin/gh/H-Huang/197/base 2025-08-26T20:39:59.1247445Z * [new branch] gh/H-Huang/197/head -> origin/gh/H-Huang/197/head 2025-08-26T20:39:59.1247927Z * [new branch] gh/H-Huang/197/orig -> origin/gh/H-Huang/197/orig 2025-08-26T20:39:59.1248423Z * [new branch] gh/H-Huang/198/base -> origin/gh/H-Huang/198/base 2025-08-26T20:39:59.1248896Z * [new branch] gh/H-Huang/198/head -> origin/gh/H-Huang/198/head 2025-08-26T20:39:59.1249372Z * [new branch] gh/H-Huang/198/orig -> origin/gh/H-Huang/198/orig 2025-08-26T20:39:59.1249851Z * [new branch] gh/H-Huang/200/base -> origin/gh/H-Huang/200/base 2025-08-26T20:39:59.1250334Z * [new branch] gh/H-Huang/200/head -> origin/gh/H-Huang/200/head 2025-08-26T20:39:59.1250827Z * [new branch] gh/H-Huang/200/orig -> origin/gh/H-Huang/200/orig 2025-08-26T20:39:59.1251299Z * [new branch] gh/H-Huang/201/base -> origin/gh/H-Huang/201/base 2025-08-26T20:39:59.1251783Z * [new branch] gh/H-Huang/201/head -> origin/gh/H-Huang/201/head 2025-08-26T20:39:59.1252258Z * [new branch] gh/H-Huang/201/orig -> origin/gh/H-Huang/201/orig 2025-08-26T20:39:59.1252746Z * [new branch] gh/H-Huang/202/base -> origin/gh/H-Huang/202/base 2025-08-26T20:39:59.1253245Z * [new branch] gh/H-Huang/202/head -> origin/gh/H-Huang/202/head 2025-08-26T20:39:59.1253711Z * [new branch] gh/H-Huang/202/orig -> origin/gh/H-Huang/202/orig 2025-08-26T20:39:59.1254191Z * [new branch] gh/H-Huang/203/base -> origin/gh/H-Huang/203/base 2025-08-26T20:39:59.1254669Z * [new branch] gh/H-Huang/203/head -> origin/gh/H-Huang/203/head 2025-08-26T20:39:59.1255153Z * [new branch] gh/H-Huang/203/orig -> origin/gh/H-Huang/203/orig 2025-08-26T20:39:59.1255627Z * [new branch] gh/H-Huang/204/base -> origin/gh/H-Huang/204/base 2025-08-26T20:39:59.1256113Z * [new branch] gh/H-Huang/204/head -> origin/gh/H-Huang/204/head 2025-08-26T20:39:59.1256606Z * [new branch] gh/H-Huang/204/orig -> origin/gh/H-Huang/204/orig 2025-08-26T20:39:59.1257075Z * [new branch] gh/H-Huang/205/base -> origin/gh/H-Huang/205/base 2025-08-26T20:39:59.1257562Z * [new branch] gh/H-Huang/205/head -> origin/gh/H-Huang/205/head 2025-08-26T20:39:59.1258036Z * [new branch] gh/H-Huang/205/orig -> origin/gh/H-Huang/205/orig 2025-08-26T20:39:59.1258522Z * [new branch] gh/H-Huang/206/base -> origin/gh/H-Huang/206/base 2025-08-26T20:39:59.1259013Z * [new branch] gh/H-Huang/206/head -> origin/gh/H-Huang/206/head 2025-08-26T20:39:59.1259482Z * [new branch] gh/H-Huang/206/orig -> origin/gh/H-Huang/206/orig 2025-08-26T20:39:59.1675380Z * [new branch] gh/H-Huang/207/base -> origin/gh/H-Huang/207/base 2025-08-26T20:39:59.1675951Z * [new branch] gh/H-Huang/207/head -> origin/gh/H-Huang/207/head 2025-08-26T20:39:59.1677111Z * [new branch] gh/H-Huang/207/orig -> origin/gh/H-Huang/207/orig 2025-08-26T20:39:59.1677603Z * [new branch] gh/H-Huang/208/base -> origin/gh/H-Huang/208/base 2025-08-26T20:39:59.1678080Z * [new branch] gh/H-Huang/208/head -> origin/gh/H-Huang/208/head 2025-08-26T20:39:59.1678568Z * [new branch] gh/H-Huang/208/orig -> origin/gh/H-Huang/208/orig 2025-08-26T20:39:59.1679117Z * [new branch] gh/H-Huang/209/base -> origin/gh/H-Huang/209/base 2025-08-26T20:39:59.1679752Z * [new branch] gh/H-Huang/209/head -> origin/gh/H-Huang/209/head 2025-08-26T20:39:59.1680242Z * [new branch] gh/H-Huang/209/orig -> origin/gh/H-Huang/209/orig 2025-08-26T20:39:59.1680711Z * [new branch] gh/H-Huang/210/base -> origin/gh/H-Huang/210/base 2025-08-26T20:39:59.1681192Z * [new branch] gh/H-Huang/210/head -> origin/gh/H-Huang/210/head 2025-08-26T20:39:59.1681683Z * [new branch] gh/H-Huang/210/orig -> origin/gh/H-Huang/210/orig 2025-08-26T20:39:59.1682150Z * [new branch] gh/H-Huang/211/base -> origin/gh/H-Huang/211/base 2025-08-26T20:39:59.1682637Z * [new branch] gh/H-Huang/211/head -> origin/gh/H-Huang/211/head 2025-08-26T20:39:59.1683108Z * [new branch] gh/H-Huang/211/orig -> origin/gh/H-Huang/211/orig 2025-08-26T20:39:59.1683693Z * [new branch] gh/H-Huang/212/base -> origin/gh/H-Huang/212/base 2025-08-26T20:39:59.1684168Z * [new branch] gh/H-Huang/212/head -> origin/gh/H-Huang/212/head 2025-08-26T20:39:59.1684702Z * [new branch] gh/H-Huang/212/orig -> origin/gh/H-Huang/212/orig 2025-08-26T20:39:59.1685292Z * [new branch] gh/IvanKobzarev/111/base -> origin/gh/IvanKobzarev/111/base 2025-08-26T20:39:59.1685858Z * [new branch] gh/IvanKobzarev/111/head -> origin/gh/IvanKobzarev/111/head 2025-08-26T20:39:59.1686413Z * [new branch] gh/IvanKobzarev/111/orig -> origin/gh/IvanKobzarev/111/orig 2025-08-26T20:39:59.1686952Z * [new branch] gh/IvanKobzarev/112/base -> origin/gh/IvanKobzarev/112/base 2025-08-26T20:39:59.1687510Z * [new branch] gh/IvanKobzarev/112/head -> origin/gh/IvanKobzarev/112/head 2025-08-26T20:39:59.1688052Z * [new branch] gh/IvanKobzarev/112/orig -> origin/gh/IvanKobzarev/112/orig 2025-08-26T20:39:59.1688633Z * [new branch] gh/IvanKobzarev/115/base -> origin/gh/IvanKobzarev/115/base 2025-08-26T20:39:59.1689186Z * [new branch] gh/IvanKobzarev/115/head -> origin/gh/IvanKobzarev/115/head 2025-08-26T20:39:59.1689726Z * [new branch] gh/IvanKobzarev/115/orig -> origin/gh/IvanKobzarev/115/orig 2025-08-26T20:39:59.1690280Z * [new branch] gh/IvanKobzarev/116/base -> origin/gh/IvanKobzarev/116/base 2025-08-26T20:39:59.1690918Z * [new branch] gh/IvanKobzarev/116/head -> origin/gh/IvanKobzarev/116/head 2025-08-26T20:39:59.1691521Z * [new branch] gh/IvanKobzarev/116/orig -> origin/gh/IvanKobzarev/116/orig 2025-08-26T20:39:59.1692159Z * [new branch] gh/IvanKobzarev/118/base -> origin/gh/IvanKobzarev/118/base 2025-08-26T20:39:59.1692810Z * [new branch] gh/IvanKobzarev/118/head -> origin/gh/IvanKobzarev/118/head 2025-08-26T20:39:59.1693414Z * [new branch] gh/IvanKobzarev/118/orig -> origin/gh/IvanKobzarev/118/orig 2025-08-26T20:39:59.1694061Z * [new branch] gh/IvanKobzarev/124/base -> origin/gh/IvanKobzarev/124/base 2025-08-26T20:39:59.1694699Z * [new branch] gh/IvanKobzarev/124/head -> origin/gh/IvanKobzarev/124/head 2025-08-26T20:39:59.1695286Z * [new branch] gh/IvanKobzarev/124/orig -> origin/gh/IvanKobzarev/124/orig 2025-08-26T20:39:59.1696075Z * [new branch] gh/IvanKobzarev/126/base -> origin/gh/IvanKobzarev/126/base 2025-08-26T20:39:59.1696728Z * [new branch] gh/IvanKobzarev/126/head -> origin/gh/IvanKobzarev/126/head 2025-08-26T20:39:59.1697358Z * [new branch] gh/IvanKobzarev/126/orig -> origin/gh/IvanKobzarev/126/orig 2025-08-26T20:39:59.1697954Z * [new branch] gh/IvanKobzarev/127/base -> origin/gh/IvanKobzarev/127/base 2025-08-26T20:39:59.1698594Z * [new branch] gh/IvanKobzarev/127/head -> origin/gh/IvanKobzarev/127/head 2025-08-26T20:39:59.1699348Z * [new branch] gh/IvanKobzarev/127/orig -> origin/gh/IvanKobzarev/127/orig 2025-08-26T20:39:59.1699946Z * [new branch] gh/IvanKobzarev/128/base -> origin/gh/IvanKobzarev/128/base 2025-08-26T20:39:59.1700580Z * [new branch] gh/IvanKobzarev/128/head -> origin/gh/IvanKobzarev/128/head 2025-08-26T20:39:59.1701229Z * [new branch] gh/IvanKobzarev/128/orig -> origin/gh/IvanKobzarev/128/orig 2025-08-26T20:39:59.2116158Z * [new branch] gh/IvanKobzarev/132/base -> origin/gh/IvanKobzarev/132/base 2025-08-26T20:39:59.2116805Z * [new branch] gh/IvanKobzarev/132/head -> origin/gh/IvanKobzarev/132/head 2025-08-26T20:39:59.2117356Z * [new branch] gh/IvanKobzarev/132/orig -> origin/gh/IvanKobzarev/132/orig 2025-08-26T20:39:59.2117918Z * [new branch] gh/IvanKobzarev/133/base -> origin/gh/IvanKobzarev/133/base 2025-08-26T20:39:59.2118498Z * [new branch] gh/IvanKobzarev/133/head -> origin/gh/IvanKobzarev/133/head 2025-08-26T20:39:59.2119035Z * [new branch] gh/IvanKobzarev/133/orig -> origin/gh/IvanKobzarev/133/orig 2025-08-26T20:39:59.2119582Z * [new branch] gh/IvanKobzarev/134/base -> origin/gh/IvanKobzarev/134/base 2025-08-26T20:39:59.2120119Z * [new branch] gh/IvanKobzarev/134/head -> origin/gh/IvanKobzarev/134/head 2025-08-26T20:39:59.2120683Z * [new branch] gh/IvanKobzarev/134/orig -> origin/gh/IvanKobzarev/134/orig 2025-08-26T20:39:59.2121279Z * [new branch] gh/IvanKobzarev/135/base -> origin/gh/IvanKobzarev/135/base 2025-08-26T20:39:59.2121863Z * [new branch] gh/IvanKobzarev/135/head -> origin/gh/IvanKobzarev/135/head 2025-08-26T20:39:59.2122417Z * [new branch] gh/IvanKobzarev/135/orig -> origin/gh/IvanKobzarev/135/orig 2025-08-26T20:39:59.2122959Z * [new branch] gh/IvanKobzarev/136/base -> origin/gh/IvanKobzarev/136/base 2025-08-26T20:39:59.2123592Z * [new branch] gh/IvanKobzarev/136/head -> origin/gh/IvanKobzarev/136/head 2025-08-26T20:39:59.2124142Z * [new branch] gh/IvanKobzarev/136/orig -> origin/gh/IvanKobzarev/136/orig 2025-08-26T20:39:59.2124680Z * [new branch] gh/IvanKobzarev/137/base -> origin/gh/IvanKobzarev/137/base 2025-08-26T20:39:59.2125233Z * [new branch] gh/IvanKobzarev/137/head -> origin/gh/IvanKobzarev/137/head 2025-08-26T20:39:59.2125770Z * [new branch] gh/IvanKobzarev/137/orig -> origin/gh/IvanKobzarev/137/orig 2025-08-26T20:39:59.2126323Z * [new branch] gh/IvanKobzarev/138/base -> origin/gh/IvanKobzarev/138/base 2025-08-26T20:39:59.2126878Z * [new branch] gh/IvanKobzarev/138/head -> origin/gh/IvanKobzarev/138/head 2025-08-26T20:39:59.2127516Z * [new branch] gh/IvanKobzarev/138/orig -> origin/gh/IvanKobzarev/138/orig 2025-08-26T20:39:59.2128082Z * [new branch] gh/IvanKobzarev/139/base -> origin/gh/IvanKobzarev/139/base 2025-08-26T20:39:59.2128619Z * [new branch] gh/IvanKobzarev/139/head -> origin/gh/IvanKobzarev/139/head 2025-08-26T20:39:59.2129172Z * [new branch] gh/IvanKobzarev/139/orig -> origin/gh/IvanKobzarev/139/orig 2025-08-26T20:39:59.2129722Z * [new branch] gh/IvanKobzarev/140/base -> origin/gh/IvanKobzarev/140/base 2025-08-26T20:39:59.2130409Z * [new branch] gh/IvanKobzarev/140/head -> origin/gh/IvanKobzarev/140/head 2025-08-26T20:39:59.2130963Z * [new branch] gh/IvanKobzarev/140/orig -> origin/gh/IvanKobzarev/140/orig 2025-08-26T20:39:59.2131506Z * [new branch] gh/IvanKobzarev/141/base -> origin/gh/IvanKobzarev/141/base 2025-08-26T20:39:59.2132062Z * [new branch] gh/IvanKobzarev/141/head -> origin/gh/IvanKobzarev/141/head 2025-08-26T20:39:59.2132620Z * [new branch] gh/IvanKobzarev/141/orig -> origin/gh/IvanKobzarev/141/orig 2025-08-26T20:39:59.2133899Z * [new branch] gh/IvanKobzarev/142/base -> origin/gh/IvanKobzarev/142/base 2025-08-26T20:39:59.2134473Z * [new branch] gh/IvanKobzarev/142/head -> origin/gh/IvanKobzarev/142/head 2025-08-26T20:39:59.2135012Z * [new branch] gh/IvanKobzarev/142/orig -> origin/gh/IvanKobzarev/142/orig 2025-08-26T20:39:59.2135583Z * [new branch] gh/IvanKobzarev/143/base -> origin/gh/IvanKobzarev/143/base 2025-08-26T20:39:59.2136132Z * [new branch] gh/IvanKobzarev/143/head -> origin/gh/IvanKobzarev/143/head 2025-08-26T20:39:59.2136669Z * [new branch] gh/IvanKobzarev/143/orig -> origin/gh/IvanKobzarev/143/orig 2025-08-26T20:39:59.2137228Z * [new branch] gh/NikhilAPatel/1/base -> origin/gh/NikhilAPatel/1/base 2025-08-26T20:39:59.2137763Z * [new branch] gh/NikhilAPatel/1/head -> origin/gh/NikhilAPatel/1/head 2025-08-26T20:39:59.2138308Z * [new branch] gh/NikhilAPatel/2/base -> origin/gh/NikhilAPatel/2/base 2025-08-26T20:39:59.2138930Z * [new branch] gh/NikhilAPatel/2/head -> origin/gh/NikhilAPatel/2/head 2025-08-26T20:39:59.2139473Z * [new branch] gh/NikhilAPatel/4/base -> origin/gh/NikhilAPatel/4/base 2025-08-26T20:39:59.2140015Z * [new branch] gh/NikhilAPatel/4/head -> origin/gh/NikhilAPatel/4/head 2025-08-26T20:39:59.2140542Z * [new branch] gh/NikhilAPatel/8/base -> origin/gh/NikhilAPatel/8/base 2025-08-26T20:39:59.2141076Z * [new branch] gh/NikhilAPatel/8/head -> origin/gh/NikhilAPatel/8/head 2025-08-26T20:39:59.2141595Z * [new branch] gh/NikhilAPatel/8/orig -> origin/gh/NikhilAPatel/8/orig 2025-08-26T20:39:59.2598412Z * [new branch] gh/NikhilAPatel/9/base -> origin/gh/NikhilAPatel/9/base 2025-08-26T20:39:59.2599049Z * [new branch] gh/NikhilAPatel/9/head -> origin/gh/NikhilAPatel/9/head 2025-08-26T20:39:59.2599584Z * [new branch] gh/NikhilAPatel/9/orig -> origin/gh/NikhilAPatel/9/orig 2025-08-26T20:39:59.2600208Z * [new branch] gh/PaliC/1/base -> origin/gh/PaliC/1/base 2025-08-26T20:39:59.2600689Z * [new branch] gh/PaliC/1/head -> origin/gh/PaliC/1/head 2025-08-26T20:39:59.2601182Z * [new branch] gh/PaliC/1/orig -> origin/gh/PaliC/1/orig 2025-08-26T20:39:59.2601664Z * [new branch] gh/PaliC/12/base -> origin/gh/PaliC/12/base 2025-08-26T20:39:59.2602137Z * [new branch] gh/PaliC/12/head -> origin/gh/PaliC/12/head 2025-08-26T20:39:59.2602612Z * [new branch] gh/PaliC/12/orig -> origin/gh/PaliC/12/orig 2025-08-26T20:39:59.2603078Z * [new branch] gh/PaliC/13/base -> origin/gh/PaliC/13/base 2025-08-26T20:39:59.2603614Z * [new branch] gh/PaliC/13/head -> origin/gh/PaliC/13/head 2025-08-26T20:39:59.2604086Z * [new branch] gh/PaliC/13/orig -> origin/gh/PaliC/13/orig 2025-08-26T20:39:59.2604548Z * [new branch] gh/PaliC/14/base -> origin/gh/PaliC/14/base 2025-08-26T20:39:59.2605035Z * [new branch] gh/PaliC/14/head -> origin/gh/PaliC/14/head 2025-08-26T20:39:59.2605724Z * [new branch] gh/PaliC/14/orig -> origin/gh/PaliC/14/orig 2025-08-26T20:39:59.2606246Z * [new branch] gh/PaliC/16/base -> origin/gh/PaliC/16/base 2025-08-26T20:39:59.2606722Z * [new branch] gh/PaliC/16/head -> origin/gh/PaliC/16/head 2025-08-26T20:39:59.2607183Z * [new branch] gh/PaliC/16/orig -> origin/gh/PaliC/16/orig 2025-08-26T20:39:59.2607660Z * [new branch] gh/PaliC/17/base -> origin/gh/PaliC/17/base 2025-08-26T20:39:59.2608231Z * [new branch] gh/PaliC/17/head -> origin/gh/PaliC/17/head 2025-08-26T20:39:59.2608710Z * [new branch] gh/PaliC/17/orig -> origin/gh/PaliC/17/orig 2025-08-26T20:39:59.2609197Z * [new branch] gh/PaliC/18/base -> origin/gh/PaliC/18/base 2025-08-26T20:39:59.2609661Z * [new branch] gh/PaliC/18/head -> origin/gh/PaliC/18/head 2025-08-26T20:39:59.2610150Z * [new branch] gh/PaliC/18/orig -> origin/gh/PaliC/18/orig 2025-08-26T20:39:59.2610612Z * [new branch] gh/PaliC/19/base -> origin/gh/PaliC/19/base 2025-08-26T20:39:59.2627654Z * [new branch] gh/PaliC/19/head -> origin/gh/PaliC/19/head 2025-08-26T20:39:59.2628169Z * [new branch] gh/PaliC/19/orig -> origin/gh/PaliC/19/orig 2025-08-26T20:39:59.2628740Z * [new branch] gh/PaliC/2/base -> origin/gh/PaliC/2/base 2025-08-26T20:39:59.2629298Z * [new branch] gh/PaliC/2/head -> origin/gh/PaliC/2/head 2025-08-26T20:39:59.2629762Z * [new branch] gh/PaliC/2/orig -> origin/gh/PaliC/2/orig 2025-08-26T20:39:59.2630233Z * [new branch] gh/PaliC/20/base -> origin/gh/PaliC/20/base 2025-08-26T20:39:59.2630710Z * [new branch] gh/PaliC/20/head -> origin/gh/PaliC/20/head 2025-08-26T20:39:59.2631208Z * [new branch] gh/PaliC/20/orig -> origin/gh/PaliC/20/orig 2025-08-26T20:39:59.2631672Z * [new branch] gh/PaliC/21/base -> origin/gh/PaliC/21/base 2025-08-26T20:39:59.2632154Z * [new branch] gh/PaliC/21/head -> origin/gh/PaliC/21/head 2025-08-26T20:39:59.2632635Z * [new branch] gh/PaliC/21/orig -> origin/gh/PaliC/21/orig 2025-08-26T20:39:59.2633108Z * [new branch] gh/PaliC/22/base -> origin/gh/PaliC/22/base 2025-08-26T20:39:59.2633591Z * [new branch] gh/PaliC/22/head -> origin/gh/PaliC/22/head 2025-08-26T20:39:59.2634089Z * [new branch] gh/PaliC/22/orig -> origin/gh/PaliC/22/orig 2025-08-26T20:39:59.2634627Z * [new branch] gh/PaliC/23/base -> origin/gh/PaliC/23/base 2025-08-26T20:39:59.2635106Z * [new branch] gh/PaliC/23/head -> origin/gh/PaliC/23/head 2025-08-26T20:39:59.2635581Z * [new branch] gh/PaliC/23/orig -> origin/gh/PaliC/23/orig 2025-08-26T20:39:59.2636062Z * [new branch] gh/PaliC/24/base -> origin/gh/PaliC/24/base 2025-08-26T20:39:59.2636535Z * [new branch] gh/PaliC/24/head -> origin/gh/PaliC/24/head 2025-08-26T20:39:59.2637018Z * [new branch] gh/PaliC/24/orig -> origin/gh/PaliC/24/orig 2025-08-26T20:39:59.2637535Z * [new branch] gh/PaulZhang12/17/base -> origin/gh/PaulZhang12/17/base 2025-08-26T20:39:59.2638078Z * [new branch] gh/PaulZhang12/17/head -> origin/gh/PaulZhang12/17/head 2025-08-26T20:39:59.2638627Z * [new branch] gh/PaulZhang12/20/base -> origin/gh/PaulZhang12/20/base 2025-08-26T20:39:59.3062906Z * [new branch] gh/PaulZhang12/20/head -> origin/gh/PaulZhang12/20/head 2025-08-26T20:39:59.3063492Z * [new branch] gh/PaulZhang12/20/orig -> origin/gh/PaulZhang12/20/orig 2025-08-26T20:39:59.3064203Z * [new branch] gh/PaulZhang12/21/base -> origin/gh/PaulZhang12/21/base 2025-08-26T20:39:59.3065797Z * [new branch] gh/PaulZhang12/21/head -> origin/gh/PaulZhang12/21/head 2025-08-26T20:39:59.3066328Z * [new branch] gh/PaulZhang12/21/orig -> origin/gh/PaulZhang12/21/orig 2025-08-26T20:39:59.3066863Z * [new branch] gh/PaulZhang12/22/base -> origin/gh/PaulZhang12/22/base 2025-08-26T20:39:59.3067379Z * [new branch] gh/PaulZhang12/22/head -> origin/gh/PaulZhang12/22/head 2025-08-26T20:39:59.3068031Z * [new branch] gh/PaulZhang12/22/orig -> origin/gh/PaulZhang12/22/orig 2025-08-26T20:39:59.3068571Z * [new branch] gh/SamGinzburg/11/base -> origin/gh/SamGinzburg/11/base 2025-08-26T20:39:59.3069098Z * [new branch] gh/SamGinzburg/11/head -> origin/gh/SamGinzburg/11/head 2025-08-26T20:39:59.3069656Z * [new branch] gh/Sidharth123-cpu/24/base -> origin/gh/Sidharth123-cpu/24/base 2025-08-26T20:39:59.3071207Z * [new branch] gh/Sidharth123-cpu/25/base -> origin/gh/Sidharth123-cpu/25/base 2025-08-26T20:39:59.3071798Z * [new branch] gh/Sidharth123-cpu/26/base -> origin/gh/Sidharth123-cpu/26/base 2025-08-26T20:39:59.3072377Z * [new branch] gh/Sidharth123-cpu/27/base -> origin/gh/Sidharth123-cpu/27/base 2025-08-26T20:39:59.3072919Z * [new branch] gh/StrongerXi/1/base -> origin/gh/StrongerXi/1/base 2025-08-26T20:39:59.3073451Z * [new branch] gh/StrongerXi/1/head -> origin/gh/StrongerXi/1/head 2025-08-26T20:39:59.3073967Z * [new branch] gh/StrongerXi/103/base -> origin/gh/StrongerXi/103/base 2025-08-26T20:39:59.3074502Z * [new branch] gh/StrongerXi/103/head -> origin/gh/StrongerXi/103/head 2025-08-26T20:39:59.3075022Z * [new branch] gh/StrongerXi/103/orig -> origin/gh/StrongerXi/103/orig 2025-08-26T20:39:59.3075541Z * [new branch] gh/StrongerXi/133/base -> origin/gh/StrongerXi/133/base 2025-08-26T20:39:59.3077060Z * [new branch] gh/StrongerXi/133/head -> origin/gh/StrongerXi/133/head 2025-08-26T20:39:59.3077585Z * [new branch] gh/StrongerXi/133/orig -> origin/gh/StrongerXi/133/orig 2025-08-26T20:39:59.3078120Z * [new branch] gh/StrongerXi/134/base -> origin/gh/StrongerXi/134/base 2025-08-26T20:39:59.3078638Z * [new branch] gh/StrongerXi/134/head -> origin/gh/StrongerXi/134/head 2025-08-26T20:39:59.3079185Z * [new branch] gh/StrongerXi/134/orig -> origin/gh/StrongerXi/134/orig 2025-08-26T20:39:59.3079715Z * [new branch] gh/StrongerXi/136/base -> origin/gh/StrongerXi/136/base 2025-08-26T20:39:59.3080220Z * [new branch] gh/StrongerXi/136/head -> origin/gh/StrongerXi/136/head 2025-08-26T20:39:59.3080748Z * [new branch] gh/StrongerXi/136/orig -> origin/gh/StrongerXi/136/orig 2025-08-26T20:39:59.3081262Z * [new branch] gh/StrongerXi/137/base -> origin/gh/StrongerXi/137/base 2025-08-26T20:39:59.3082756Z * [new branch] gh/StrongerXi/137/head -> origin/gh/StrongerXi/137/head 2025-08-26T20:39:59.3083339Z * [new branch] gh/StrongerXi/137/orig -> origin/gh/StrongerXi/137/orig 2025-08-26T20:39:59.3083858Z * [new branch] gh/StrongerXi/138/base -> origin/gh/StrongerXi/138/base 2025-08-26T20:39:59.3084399Z * [new branch] gh/StrongerXi/138/head -> origin/gh/StrongerXi/138/head 2025-08-26T20:39:59.3085020Z * [new branch] gh/StrongerXi/138/orig -> origin/gh/StrongerXi/138/orig 2025-08-26T20:39:59.3085552Z * [new branch] gh/StrongerXi/139/base -> origin/gh/StrongerXi/139/base 2025-08-26T20:39:59.3086093Z * [new branch] gh/StrongerXi/139/head -> origin/gh/StrongerXi/139/head 2025-08-26T20:39:59.3086746Z * [new branch] gh/StrongerXi/139/orig -> origin/gh/StrongerXi/139/orig 2025-08-26T20:39:59.3088275Z * [new branch] gh/StrongerXi/140/base -> origin/gh/StrongerXi/140/base 2025-08-26T20:39:59.3088812Z * [new branch] gh/StrongerXi/140/head -> origin/gh/StrongerXi/140/head 2025-08-26T20:39:59.3089350Z * [new branch] gh/StrongerXi/140/orig -> origin/gh/StrongerXi/140/orig 2025-08-26T20:39:59.3089886Z * [new branch] gh/StrongerXi/71/base -> origin/gh/StrongerXi/71/base 2025-08-26T20:39:59.3090500Z * [new branch] gh/StrongerXi/71/head -> origin/gh/StrongerXi/71/head 2025-08-26T20:39:59.3091035Z * [new branch] gh/StrongerXi/72/base -> origin/gh/StrongerXi/72/base 2025-08-26T20:39:59.3091555Z * [new branch] gh/StrongerXi/72/head -> origin/gh/StrongerXi/72/head 2025-08-26T20:39:59.3092075Z * [new branch] gh/XilunWu/133/base -> origin/gh/XilunWu/133/base 2025-08-26T20:39:59.3092583Z * [new branch] gh/XilunWu/133/head -> origin/gh/XilunWu/133/head 2025-08-26T20:39:59.3521246Z * [new branch] gh/XilunWu/133/orig -> origin/gh/XilunWu/133/orig 2025-08-26T20:39:59.3521802Z * [new branch] gh/XilunWu/139/base -> origin/gh/XilunWu/139/base 2025-08-26T20:39:59.3522303Z * [new branch] gh/XilunWu/139/head -> origin/gh/XilunWu/139/head 2025-08-26T20:39:59.3522809Z * [new branch] gh/XilunWu/139/orig -> origin/gh/XilunWu/139/orig 2025-08-26T20:39:59.3523427Z * [new branch] gh/XilunWu/143/base -> origin/gh/XilunWu/143/base 2025-08-26T20:39:59.3523922Z * [new branch] gh/XilunWu/143/head -> origin/gh/XilunWu/143/head 2025-08-26T20:39:59.3524434Z * [new branch] gh/XilunWu/143/orig -> origin/gh/XilunWu/143/orig 2025-08-26T20:39:59.3524937Z * [new branch] gh/XilunWu/144/base -> origin/gh/XilunWu/144/base 2025-08-26T20:39:59.3525420Z * [new branch] gh/XilunWu/144/head -> origin/gh/XilunWu/144/head 2025-08-26T20:39:59.3525919Z * [new branch] gh/XilunWu/144/orig -> origin/gh/XilunWu/144/orig 2025-08-26T20:39:59.3526401Z * [new branch] gh/XilunWu/145/base -> origin/gh/XilunWu/145/base 2025-08-26T20:39:59.3526899Z * [new branch] gh/XilunWu/145/head -> origin/gh/XilunWu/145/head 2025-08-26T20:39:59.3527379Z * [new branch] gh/XilunWu/145/orig -> origin/gh/XilunWu/145/orig 2025-08-26T20:39:59.3527864Z * [new branch] gh/XilunWu/146/base -> origin/gh/XilunWu/146/base 2025-08-26T20:39:59.3528360Z * [new branch] gh/XilunWu/146/head -> origin/gh/XilunWu/146/head 2025-08-26T20:39:59.3528844Z * [new branch] gh/XilunWu/146/orig -> origin/gh/XilunWu/146/orig 2025-08-26T20:39:59.3529340Z * [new branch] gh/XilunWu/147/base -> origin/gh/XilunWu/147/base 2025-08-26T20:39:59.3529821Z * [new branch] gh/XilunWu/147/head -> origin/gh/XilunWu/147/head 2025-08-26T20:39:59.3530324Z * [new branch] gh/XilunWu/147/orig -> origin/gh/XilunWu/147/orig 2025-08-26T20:39:59.3530813Z * [new branch] gh/XilunWu/148/base -> origin/gh/XilunWu/148/base 2025-08-26T20:39:59.3531299Z * [new branch] gh/XilunWu/148/head -> origin/gh/XilunWu/148/head 2025-08-26T20:39:59.3531808Z * [new branch] gh/XilunWu/148/orig -> origin/gh/XilunWu/148/orig 2025-08-26T20:39:59.3532293Z * [new branch] gh/XilunWu/149/base -> origin/gh/XilunWu/149/base 2025-08-26T20:39:59.3532796Z * [new branch] gh/XilunWu/149/head -> origin/gh/XilunWu/149/head 2025-08-26T20:39:59.3533292Z * [new branch] gh/XilunWu/149/orig -> origin/gh/XilunWu/149/orig 2025-08-26T20:39:59.3533940Z * [new branch] gh/XilunWu/150/base -> origin/gh/XilunWu/150/base 2025-08-26T20:39:59.3534448Z * [new branch] gh/XilunWu/150/head -> origin/gh/XilunWu/150/head 2025-08-26T20:39:59.3534935Z * [new branch] gh/XilunWu/150/orig -> origin/gh/XilunWu/150/orig 2025-08-26T20:39:59.3535437Z * [new branch] gh/XilunWu/151/base -> origin/gh/XilunWu/151/base 2025-08-26T20:39:59.3535939Z * [new branch] gh/XilunWu/151/head -> origin/gh/XilunWu/151/head 2025-08-26T20:39:59.3536514Z * [new branch] gh/XilunWu/151/orig -> origin/gh/XilunWu/151/orig 2025-08-26T20:39:59.3537021Z * [new branch] gh/XilunWu/152/base -> origin/gh/XilunWu/152/base 2025-08-26T20:39:59.3537508Z * [new branch] gh/XilunWu/152/head -> origin/gh/XilunWu/152/head 2025-08-26T20:39:59.3538008Z * [new branch] gh/XilunWu/152/orig -> origin/gh/XilunWu/152/orig 2025-08-26T20:39:59.3538499Z * [new branch] gh/XilunWu/153/base -> origin/gh/XilunWu/153/base 2025-08-26T20:39:59.3539003Z * [new branch] gh/XilunWu/153/head -> origin/gh/XilunWu/153/head 2025-08-26T20:39:59.3539514Z * [new branch] gh/XilunWu/153/orig -> origin/gh/XilunWu/153/orig 2025-08-26T20:39:59.3540004Z * [new branch] gh/XilunWu/159/base -> origin/gh/XilunWu/159/base 2025-08-26T20:39:59.3540502Z * [new branch] gh/XilunWu/159/head -> origin/gh/XilunWu/159/head 2025-08-26T20:39:59.3540992Z * [new branch] gh/XilunWu/159/orig -> origin/gh/XilunWu/159/orig 2025-08-26T20:39:59.3541493Z * [new branch] gh/XilunWu/160/base -> origin/gh/XilunWu/160/base 2025-08-26T20:39:59.3541998Z * [new branch] gh/XilunWu/160/head -> origin/gh/XilunWu/160/head 2025-08-26T20:39:59.3542488Z * [new branch] gh/XilunWu/160/orig -> origin/gh/XilunWu/160/orig 2025-08-26T20:39:59.3542986Z * [new branch] gh/XilunWu/161/base -> origin/gh/XilunWu/161/base 2025-08-26T20:39:59.3543475Z * [new branch] gh/XilunWu/161/head -> origin/gh/XilunWu/161/head 2025-08-26T20:39:59.3543977Z * [new branch] gh/XilunWu/161/orig -> origin/gh/XilunWu/161/orig 2025-08-26T20:39:59.3544483Z * [new branch] gh/XilunWu/162/base -> origin/gh/XilunWu/162/base 2025-08-26T20:39:59.3975206Z * [new branch] gh/XilunWu/162/head -> origin/gh/XilunWu/162/head 2025-08-26T20:39:59.3975769Z * [new branch] gh/XilunWu/162/orig -> origin/gh/XilunWu/162/orig 2025-08-26T20:39:59.3976276Z * [new branch] gh/XilunWu/163/base -> origin/gh/XilunWu/163/base 2025-08-26T20:39:59.3976784Z * [new branch] gh/XilunWu/163/head -> origin/gh/XilunWu/163/head 2025-08-26T20:39:59.3977299Z * [new branch] gh/XilunWu/163/orig -> origin/gh/XilunWu/163/orig 2025-08-26T20:39:59.3977787Z * [new branch] gh/XilunWu/164/base -> origin/gh/XilunWu/164/base 2025-08-26T20:39:59.3978292Z * [new branch] gh/XilunWu/164/head -> origin/gh/XilunWu/164/head 2025-08-26T20:39:59.3978781Z * [new branch] gh/XilunWu/164/orig -> origin/gh/XilunWu/164/orig 2025-08-26T20:39:59.3979275Z * [new branch] gh/XilunWu/165/base -> origin/gh/XilunWu/165/base 2025-08-26T20:39:59.3979781Z * [new branch] gh/XilunWu/165/head -> origin/gh/XilunWu/165/head 2025-08-26T20:39:59.3980263Z * [new branch] gh/XilunWu/165/orig -> origin/gh/XilunWu/165/orig 2025-08-26T20:39:59.3980762Z * [new branch] gh/XilunWu/166/base -> origin/gh/XilunWu/166/base 2025-08-26T20:39:59.3981251Z * [new branch] gh/XilunWu/166/head -> origin/gh/XilunWu/166/head 2025-08-26T20:39:59.3981931Z * [new branch] gh/XilunWu/166/orig -> origin/gh/XilunWu/166/orig 2025-08-26T20:39:59.3982432Z * [new branch] gh/XilunWu/167/base -> origin/gh/XilunWu/167/base 2025-08-26T20:39:59.3982914Z * [new branch] gh/XilunWu/167/head -> origin/gh/XilunWu/167/head 2025-08-26T20:39:59.3983415Z * [new branch] gh/XilunWu/167/orig -> origin/gh/XilunWu/167/orig 2025-08-26T20:39:59.3983911Z * [new branch] gh/XuehaiPan/14/base -> origin/gh/XuehaiPan/14/base 2025-08-26T20:39:59.3984547Z * [new branch] gh/XuehaiPan/14/head -> origin/gh/XuehaiPan/14/head 2025-08-26T20:39:59.3985059Z * [new branch] gh/XuehaiPan/14/orig -> origin/gh/XuehaiPan/14/orig 2025-08-26T20:39:59.3985595Z * [new branch] gh/XuehaiPan/179/base -> origin/gh/XuehaiPan/179/base 2025-08-26T20:39:59.3986134Z * [new branch] gh/XuehaiPan/179/head -> origin/gh/XuehaiPan/179/head 2025-08-26T20:39:59.3986656Z * [new branch] gh/XuehaiPan/179/orig -> origin/gh/XuehaiPan/179/orig 2025-08-26T20:39:59.3987203Z * [new branch] gh/XuehaiPan/189/base -> origin/gh/XuehaiPan/189/base 2025-08-26T20:39:59.3987729Z * [new branch] gh/XuehaiPan/189/head -> origin/gh/XuehaiPan/189/head 2025-08-26T20:39:59.3988241Z * [new branch] gh/XuehaiPan/189/orig -> origin/gh/XuehaiPan/189/orig 2025-08-26T20:39:59.3988771Z * [new branch] gh/XuehaiPan/227/base -> origin/gh/XuehaiPan/227/base 2025-08-26T20:39:59.3989282Z * [new branch] gh/XuehaiPan/227/head -> origin/gh/XuehaiPan/227/head 2025-08-26T20:39:59.3989810Z * [new branch] gh/XuehaiPan/227/orig -> origin/gh/XuehaiPan/227/orig 2025-08-26T20:39:59.3990321Z * [new branch] gh/XuehaiPan/231/base -> origin/gh/XuehaiPan/231/base 2025-08-26T20:39:59.3990855Z * [new branch] gh/XuehaiPan/231/head -> origin/gh/XuehaiPan/231/head 2025-08-26T20:39:59.3991374Z * [new branch] gh/XuehaiPan/231/orig -> origin/gh/XuehaiPan/231/orig 2025-08-26T20:39:59.3991881Z * [new branch] gh/XuehaiPan/232/base -> origin/gh/XuehaiPan/232/base 2025-08-26T20:39:59.3992403Z * [new branch] gh/XuehaiPan/232/head -> origin/gh/XuehaiPan/232/head 2025-08-26T20:39:59.3992914Z * [new branch] gh/XuehaiPan/232/orig -> origin/gh/XuehaiPan/232/orig 2025-08-26T20:39:59.3993440Z * [new branch] gh/XuehaiPan/249/base -> origin/gh/XuehaiPan/249/base 2025-08-26T20:39:59.3993964Z * [new branch] gh/XuehaiPan/249/head -> origin/gh/XuehaiPan/249/head 2025-08-26T20:39:59.3994476Z * [new branch] gh/XuehaiPan/249/orig -> origin/gh/XuehaiPan/249/orig 2025-08-26T20:39:59.3994998Z * [new branch] gh/XuehaiPan/253/base -> origin/gh/XuehaiPan/253/base 2025-08-26T20:39:59.3995514Z * [new branch] gh/XuehaiPan/253/head -> origin/gh/XuehaiPan/253/head 2025-08-26T20:39:59.3996037Z * [new branch] gh/XuehaiPan/253/orig -> origin/gh/XuehaiPan/253/orig 2025-08-26T20:39:59.3996557Z * [new branch] gh/XuehaiPan/254/base -> origin/gh/XuehaiPan/254/base 2025-08-26T20:39:59.3997070Z * [new branch] gh/XuehaiPan/254/head -> origin/gh/XuehaiPan/254/head 2025-08-26T20:39:59.3997594Z * [new branch] gh/XuehaiPan/254/orig -> origin/gh/XuehaiPan/254/orig 2025-08-26T20:39:59.3998110Z * [new branch] gh/XuehaiPan/255/base -> origin/gh/XuehaiPan/255/base 2025-08-26T20:39:59.3998645Z * [new branch] gh/XuehaiPan/255/head -> origin/gh/XuehaiPan/255/head 2025-08-26T20:39:59.4415966Z * [new branch] gh/XuehaiPan/255/orig -> origin/gh/XuehaiPan/255/orig 2025-08-26T20:39:59.4416716Z * [new branch] gh/XuehaiPan/257/base -> origin/gh/XuehaiPan/257/base 2025-08-26T20:39:59.4417251Z * [new branch] gh/XuehaiPan/257/head -> origin/gh/XuehaiPan/257/head 2025-08-26T20:39:59.4417767Z * [new branch] gh/XuehaiPan/257/orig -> origin/gh/XuehaiPan/257/orig 2025-08-26T20:39:59.4418300Z * [new branch] gh/XuehaiPan/271/base -> origin/gh/XuehaiPan/271/base 2025-08-26T20:39:59.4418821Z * [new branch] gh/XuehaiPan/271/head -> origin/gh/XuehaiPan/271/head 2025-08-26T20:39:59.4419439Z * [new branch] gh/XuehaiPan/271/orig -> origin/gh/XuehaiPan/271/orig 2025-08-26T20:39:59.4419958Z * [new branch] gh/XuehaiPan/290/base -> origin/gh/XuehaiPan/290/base 2025-08-26T20:39:59.4420464Z * [new branch] gh/XuehaiPan/290/head -> origin/gh/XuehaiPan/290/head 2025-08-26T20:39:59.4420980Z * [new branch] gh/XuehaiPan/290/orig -> origin/gh/XuehaiPan/290/orig 2025-08-26T20:39:59.4421507Z * [new branch] gh/XuehaiPan/343/base -> origin/gh/XuehaiPan/343/base 2025-08-26T20:39:59.4422015Z * [new branch] gh/XuehaiPan/343/head -> origin/gh/XuehaiPan/343/head 2025-08-26T20:39:59.4422530Z * [new branch] gh/XuehaiPan/343/orig -> origin/gh/XuehaiPan/343/orig 2025-08-26T20:39:59.4423040Z * [new branch] gh/XuehaiPan/347/base -> origin/gh/XuehaiPan/347/base 2025-08-26T20:39:59.4423565Z * [new branch] gh/XuehaiPan/347/head -> origin/gh/XuehaiPan/347/head 2025-08-26T20:39:59.4424096Z * [new branch] gh/XuehaiPan/347/orig -> origin/gh/XuehaiPan/347/orig 2025-08-26T20:39:59.4424606Z * [new branch] gh/XuehaiPan/348/base -> origin/gh/XuehaiPan/348/base 2025-08-26T20:39:59.4425133Z * [new branch] gh/XuehaiPan/348/head -> origin/gh/XuehaiPan/348/head 2025-08-26T20:39:59.4425645Z * [new branch] gh/XuehaiPan/348/orig -> origin/gh/XuehaiPan/348/orig 2025-08-26T20:39:59.4426170Z * [new branch] gh/XuehaiPan/350/base -> origin/gh/XuehaiPan/350/base 2025-08-26T20:39:59.4426695Z * [new branch] gh/XuehaiPan/350/head -> origin/gh/XuehaiPan/350/head 2025-08-26T20:39:59.4427206Z * [new branch] gh/XuehaiPan/350/orig -> origin/gh/XuehaiPan/350/orig 2025-08-26T20:39:59.4427731Z * [new branch] gh/XuehaiPan/356/base -> origin/gh/XuehaiPan/356/base 2025-08-26T20:39:59.4428235Z * [new branch] gh/XuehaiPan/356/head -> origin/gh/XuehaiPan/356/head 2025-08-26T20:39:59.4428753Z * [new branch] gh/XuehaiPan/356/orig -> origin/gh/XuehaiPan/356/orig 2025-08-26T20:39:59.4429273Z * [new branch] gh/XuehaiPan/357/base -> origin/gh/XuehaiPan/357/base 2025-08-26T20:39:59.4429783Z * [new branch] gh/XuehaiPan/357/head -> origin/gh/XuehaiPan/357/head 2025-08-26T20:39:59.4430309Z * [new branch] gh/XuehaiPan/357/orig -> origin/gh/XuehaiPan/357/orig 2025-08-26T20:39:59.4430815Z * [new branch] gh/XuehaiPan/358/base -> origin/gh/XuehaiPan/358/base 2025-08-26T20:39:59.4431340Z * [new branch] gh/XuehaiPan/358/head -> origin/gh/XuehaiPan/358/head 2025-08-26T20:39:59.4431858Z * [new branch] gh/XuehaiPan/358/orig -> origin/gh/XuehaiPan/358/orig 2025-08-26T20:39:59.4432366Z * [new branch] gh/XuehaiPan/359/base -> origin/gh/XuehaiPan/359/base 2025-08-26T20:39:59.4432872Z * [new branch] gh/XuehaiPan/359/head -> origin/gh/XuehaiPan/359/head 2025-08-26T20:39:59.4433367Z * [new branch] gh/XuehaiPan/359/orig -> origin/gh/XuehaiPan/359/orig 2025-08-26T20:39:59.4433870Z * [new branch] gh/XuehaiPan/360/base -> origin/gh/XuehaiPan/360/base 2025-08-26T20:39:59.4434362Z * [new branch] gh/XuehaiPan/360/head -> origin/gh/XuehaiPan/360/head 2025-08-26T20:39:59.4434973Z * [new branch] gh/XuehaiPan/360/orig -> origin/gh/XuehaiPan/360/orig 2025-08-26T20:39:59.4435488Z * [new branch] gh/XuehaiPan/365/base -> origin/gh/XuehaiPan/365/base 2025-08-26T20:39:59.4435986Z * [new branch] gh/XuehaiPan/365/head -> origin/gh/XuehaiPan/365/head 2025-08-26T20:39:59.4436494Z * [new branch] gh/XuehaiPan/365/orig -> origin/gh/XuehaiPan/365/orig 2025-08-26T20:39:59.4436991Z * [new branch] gh/XuehaiPan/366/base -> origin/gh/XuehaiPan/366/base 2025-08-26T20:39:59.4437582Z * [new branch] gh/XuehaiPan/366/head -> origin/gh/XuehaiPan/366/head 2025-08-26T20:39:59.4438088Z * [new branch] gh/XuehaiPan/369/base -> origin/gh/XuehaiPan/369/base 2025-08-26T20:39:59.4438584Z * [new branch] gh/XuehaiPan/369/head -> origin/gh/XuehaiPan/369/head 2025-08-26T20:39:59.4439097Z * [new branch] gh/XuehaiPan/369/orig -> origin/gh/XuehaiPan/369/orig 2025-08-26T20:39:59.4439598Z * [new branch] gh/XuehaiPan/370/base -> origin/gh/XuehaiPan/370/base 2025-08-26T20:39:59.4870027Z * [new branch] gh/XuehaiPan/370/head -> origin/gh/XuehaiPan/370/head 2025-08-26T20:39:59.4870597Z * [new branch] gh/XuehaiPan/370/orig -> origin/gh/XuehaiPan/370/orig 2025-08-26T20:39:59.4871174Z * [new branch] gh/XuehaiPan/371/base -> origin/gh/XuehaiPan/371/base 2025-08-26T20:39:59.4871756Z * [new branch] gh/XuehaiPan/371/head -> origin/gh/XuehaiPan/371/head 2025-08-26T20:39:59.4872257Z * [new branch] gh/XuehaiPan/371/orig -> origin/gh/XuehaiPan/371/orig 2025-08-26T20:39:59.4872768Z * [new branch] gh/XuehaiPan/377/base -> origin/gh/XuehaiPan/377/base 2025-08-26T20:39:59.4873266Z * [new branch] gh/XuehaiPan/377/head -> origin/gh/XuehaiPan/377/head 2025-08-26T20:39:59.4873777Z * [new branch] gh/XuehaiPan/377/orig -> origin/gh/XuehaiPan/377/orig 2025-08-26T20:39:59.4874285Z * [new branch] gh/XuehaiPan/378/base -> origin/gh/XuehaiPan/378/base 2025-08-26T20:39:59.4874781Z * [new branch] gh/XuehaiPan/378/head -> origin/gh/XuehaiPan/378/head 2025-08-26T20:39:59.4875280Z * [new branch] gh/XuehaiPan/378/orig -> origin/gh/XuehaiPan/378/orig 2025-08-26T20:39:59.4875781Z * [new branch] gh/XuehaiPan/379/base -> origin/gh/XuehaiPan/379/base 2025-08-26T20:39:59.4876284Z * [new branch] gh/XuehaiPan/379/head -> origin/gh/XuehaiPan/379/head 2025-08-26T20:39:59.4876786Z * [new branch] gh/XuehaiPan/379/orig -> origin/gh/XuehaiPan/379/orig 2025-08-26T20:39:59.4877277Z * [new branch] gh/XuehaiPan/380/base -> origin/gh/XuehaiPan/380/base 2025-08-26T20:39:59.4877781Z * [new branch] gh/XuehaiPan/380/head -> origin/gh/XuehaiPan/380/head 2025-08-26T20:39:59.4878302Z * [new branch] gh/XuehaiPan/380/orig -> origin/gh/XuehaiPan/380/orig 2025-08-26T20:39:59.4878804Z * [new branch] gh/XuehaiPan/381/base -> origin/gh/XuehaiPan/381/base 2025-08-26T20:39:59.4879312Z * [new branch] gh/XuehaiPan/381/head -> origin/gh/XuehaiPan/381/head 2025-08-26T20:39:59.4879807Z * [new branch] gh/XuehaiPan/382/base -> origin/gh/XuehaiPan/382/base 2025-08-26T20:39:59.4880312Z * [new branch] gh/XuehaiPan/382/head -> origin/gh/XuehaiPan/382/head 2025-08-26T20:39:59.4880814Z * [new branch] gh/XuehaiPan/382/orig -> origin/gh/XuehaiPan/382/orig 2025-08-26T20:39:59.4881317Z * [new branch] gh/XuehaiPan/383/base -> origin/gh/XuehaiPan/383/base 2025-08-26T20:39:59.4881819Z * [new branch] gh/XuehaiPan/383/head -> origin/gh/XuehaiPan/383/head 2025-08-26T20:39:59.4882498Z * [new branch] gh/XuehaiPan/383/orig -> origin/gh/XuehaiPan/383/orig 2025-08-26T20:39:59.4883010Z * [new branch] gh/XuehaiPan/384/base -> origin/gh/XuehaiPan/384/base 2025-08-26T20:39:59.4883585Z * [new branch] gh/XuehaiPan/384/head -> origin/gh/XuehaiPan/384/head 2025-08-26T20:39:59.4884102Z * [new branch] gh/XuehaiPan/384/orig -> origin/gh/XuehaiPan/384/orig 2025-08-26T20:39:59.4884624Z * [new branch] gh/ZhiweiYan-96/39/base -> origin/gh/ZhiweiYan-96/39/base 2025-08-26T20:39:59.4885256Z * [new branch] gh/ZhiweiYan-96/39/head -> origin/gh/ZhiweiYan-96/39/head 2025-08-26T20:39:59.4885782Z * [new branch] gh/ZhiweiYan-96/39/orig -> origin/gh/ZhiweiYan-96/39/orig 2025-08-26T20:39:59.4886292Z * [new branch] gh/ZhiweiYan-96/44/base -> origin/gh/ZhiweiYan-96/44/base 2025-08-26T20:39:59.4886812Z * [new branch] gh/ZhiweiYan-96/44/head -> origin/gh/ZhiweiYan-96/44/head 2025-08-26T20:39:59.4887338Z * [new branch] gh/ZhiweiYan-96/45/base -> origin/gh/ZhiweiYan-96/45/base 2025-08-26T20:39:59.4887851Z * [new branch] gh/ZhiweiYan-96/45/head -> origin/gh/ZhiweiYan-96/45/head 2025-08-26T20:39:59.4888371Z * [new branch] gh/ZhiweiYan-96/49/base -> origin/gh/ZhiweiYan-96/49/base 2025-08-26T20:39:59.4888877Z * [new branch] gh/ZhiweiYan-96/49/head -> origin/gh/ZhiweiYan-96/49/head 2025-08-26T20:39:59.4889400Z * [new branch] gh/ZhiweiYan-96/62/base -> origin/gh/ZhiweiYan-96/62/base 2025-08-26T20:39:59.4889920Z * [new branch] gh/ZhiweiYan-96/62/head -> origin/gh/ZhiweiYan-96/62/head 2025-08-26T20:39:59.4890429Z * [new branch] gh/ZhiweiYan-96/64/base -> origin/gh/ZhiweiYan-96/64/base 2025-08-26T20:39:59.4890937Z * [new branch] gh/ZhiweiYan-96/64/head -> origin/gh/ZhiweiYan-96/64/head 2025-08-26T20:39:59.4891447Z * [new branch] gh/ZhiweiYan-96/64/orig -> origin/gh/ZhiweiYan-96/64/orig 2025-08-26T20:39:59.4891963Z * [new branch] gh/ZhiweiYan-96/65/base -> origin/gh/ZhiweiYan-96/65/base 2025-08-26T20:39:59.4892483Z * [new branch] gh/ZhiweiYan-96/65/head -> origin/gh/ZhiweiYan-96/65/head 2025-08-26T20:39:59.4892990Z * [new branch] gh/ZhiweiYan-96/65/orig -> origin/gh/ZhiweiYan-96/65/orig 2025-08-26T20:39:59.4893501Z * [new branch] gh/ZhiweiYan-96/66/base -> origin/gh/ZhiweiYan-96/66/base 2025-08-26T20:39:59.5350829Z * [new branch] gh/ZhiweiYan-96/66/head -> origin/gh/ZhiweiYan-96/66/head 2025-08-26T20:39:59.5351422Z * [new branch] gh/ZhiweiYan-96/67/base -> origin/gh/ZhiweiYan-96/67/base 2025-08-26T20:39:59.5351956Z * [new branch] gh/ZhiweiYan-96/67/head -> origin/gh/ZhiweiYan-96/67/head 2025-08-26T20:39:59.5352465Z * [new branch] gh/ZhiweiYan-96/68/base -> origin/gh/ZhiweiYan-96/68/base 2025-08-26T20:39:59.5352996Z * [new branch] gh/ZhiweiYan-96/68/head -> origin/gh/ZhiweiYan-96/68/head 2025-08-26T20:39:59.5353506Z * [new branch] gh/ZhiweiYan-96/68/orig -> origin/gh/ZhiweiYan-96/68/orig 2025-08-26T20:39:59.5354011Z * [new branch] gh/aakhundov/1/base -> origin/gh/aakhundov/1/base 2025-08-26T20:39:59.5354515Z * [new branch] gh/aakhundov/1/head -> origin/gh/aakhundov/1/head 2025-08-26T20:39:59.5355014Z * [new branch] gh/aakhundov/2/base -> origin/gh/aakhundov/2/base 2025-08-26T20:39:59.5355508Z * [new branch] gh/aakhundov/2/head -> origin/gh/aakhundov/2/head 2025-08-26T20:39:59.5356007Z * [new branch] gh/aditew01/openblas -> origin/gh/aditew01/openblas 2025-08-26T20:39:59.5356518Z * [new branch] gh/aditew01/sbgemm -> origin/gh/aditew01/sbgemm 2025-08-26T20:39:59.5357174Z * [new branch] gh/aditew01/vecbf16 -> origin/gh/aditew01/vecbf16 2025-08-26T20:39:59.5357883Z * [new branch] gh/alexbrauckmann/paddedtensor_faketensor_init -> origin/gh/alexbrauckmann/paddedtensor_faketensor_init 2025-08-26T20:39:59.5358620Z * [new branch] gh/alexsamardzic/8/base -> origin/gh/alexsamardzic/8/base 2025-08-26T20:39:59.5359163Z * [new branch] gh/alexsamardzic/8/head -> origin/gh/alexsamardzic/8/head 2025-08-26T20:39:59.5359706Z * [new branch] gh/alexsamardzic/8/orig -> origin/gh/alexsamardzic/8/orig 2025-08-26T20:39:59.5360311Z * [new branch] gh/amjames/18/base -> origin/gh/amjames/18/base 2025-08-26T20:39:59.5360794Z * [new branch] gh/amjames/18/head -> origin/gh/amjames/18/head 2025-08-26T20:39:59.5361285Z * [new branch] gh/amjames/18/orig -> origin/gh/amjames/18/orig 2025-08-26T20:39:59.5361778Z * [new branch] gh/andrewor14/35/base -> origin/gh/andrewor14/35/base 2025-08-26T20:39:59.5362297Z * [new branch] gh/andrewor14/35/head -> origin/gh/andrewor14/35/head 2025-08-26T20:39:59.5362809Z * [new branch] gh/andrewor14/35/orig -> origin/gh/andrewor14/35/orig 2025-08-26T20:39:59.5363377Z * [new branch] gh/andrewor14/50/base -> origin/gh/andrewor14/50/base 2025-08-26T20:39:59.5363888Z * [new branch] gh/andrewor14/50/head -> origin/gh/andrewor14/50/head 2025-08-26T20:39:59.5364388Z * [new branch] gh/andrewor14/50/orig -> origin/gh/andrewor14/50/orig 2025-08-26T20:39:59.5364907Z * [new branch] gh/andyanwang/1/base -> origin/gh/andyanwang/1/base 2025-08-26T20:39:59.5365426Z * [new branch] gh/andyanwang/1/head -> origin/gh/andyanwang/1/head 2025-08-26T20:39:59.5365925Z * [new branch] gh/andyanwang/1/orig -> origin/gh/andyanwang/1/orig 2025-08-26T20:39:59.5366456Z * [new branch] gh/andyanwang/13/base -> origin/gh/andyanwang/13/base 2025-08-26T20:39:59.5366969Z * [new branch] gh/andyanwang/13/head -> origin/gh/andyanwang/13/head 2025-08-26T20:39:59.5367487Z * [new branch] gh/andyanwang/13/orig -> origin/gh/andyanwang/13/orig 2025-08-26T20:39:59.5367992Z * [new branch] gh/andyanwang/2/base -> origin/gh/andyanwang/2/base 2025-08-26T20:39:59.5368505Z * [new branch] gh/andyanwang/2/head -> origin/gh/andyanwang/2/head 2025-08-26T20:39:59.5369027Z * [new branch] gh/andyanwang/2/orig -> origin/gh/andyanwang/2/orig 2025-08-26T20:39:59.5369539Z * [new branch] gh/andyanwang/28/base -> origin/gh/andyanwang/28/base 2025-08-26T20:39:59.5370058Z * [new branch] gh/andyanwang/28/head -> origin/gh/andyanwang/28/head 2025-08-26T20:39:59.5370565Z * [new branch] gh/andyanwang/28/orig -> origin/gh/andyanwang/28/orig 2025-08-26T20:39:59.5371084Z * [new branch] gh/andyanwang/3/base -> origin/gh/andyanwang/3/base 2025-08-26T20:39:59.5371598Z * [new branch] gh/andyanwang/3/head -> origin/gh/andyanwang/3/head 2025-08-26T20:39:59.5372103Z * [new branch] gh/andyanwang/3/orig -> origin/gh/andyanwang/3/orig 2025-08-26T20:39:59.5372624Z * [new branch] gh/andyanwang/30/base -> origin/gh/andyanwang/30/base 2025-08-26T20:39:59.5373135Z * [new branch] gh/andyanwang/30/orig -> origin/gh/andyanwang/30/orig 2025-08-26T20:39:59.5373661Z * [new branch] gh/andyanwang/31/base -> origin/gh/andyanwang/31/base 2025-08-26T20:39:59.5374181Z * [new branch] gh/andyanwang/31/orig -> origin/gh/andyanwang/31/orig 2025-08-26T20:39:59.5374684Z * [new branch] gh/andyanwang/32/base -> origin/gh/andyanwang/32/base 2025-08-26T20:39:59.5825510Z * [new branch] gh/andyanwang/32/head -> origin/gh/andyanwang/32/head 2025-08-26T20:39:59.5826262Z * [new branch] gh/andyanwang/32/orig -> origin/gh/andyanwang/32/orig 2025-08-26T20:39:59.5826797Z * [new branch] gh/andyanwang/35/base -> origin/gh/andyanwang/35/base 2025-08-26T20:39:59.5827308Z * [new branch] gh/andyanwang/35/head -> origin/gh/andyanwang/35/head 2025-08-26T20:39:59.5827833Z * [new branch] gh/andyanwang/35/orig -> origin/gh/andyanwang/35/orig 2025-08-26T20:39:59.5828467Z * [new branch] gh/andyanwang/36/base -> origin/gh/andyanwang/36/base 2025-08-26T20:39:59.5828982Z * [new branch] gh/andyanwang/36/head -> origin/gh/andyanwang/36/head 2025-08-26T20:39:59.5829515Z * [new branch] gh/andyanwang/36/orig -> origin/gh/andyanwang/36/orig 2025-08-26T20:39:59.5830023Z * [new branch] gh/andyanwang/37/base -> origin/gh/andyanwang/37/base 2025-08-26T20:39:59.5830552Z * [new branch] gh/andyanwang/37/head -> origin/gh/andyanwang/37/head 2025-08-26T20:39:59.5831077Z * [new branch] gh/andyanwang/37/orig -> origin/gh/andyanwang/37/orig 2025-08-26T20:39:59.5831590Z * [new branch] gh/andyanwang/38/base -> origin/gh/andyanwang/38/base 2025-08-26T20:39:59.5832113Z * [new branch] gh/andyanwang/38/head -> origin/gh/andyanwang/38/head 2025-08-26T20:39:59.5832620Z * [new branch] gh/andyanwang/38/orig -> origin/gh/andyanwang/38/orig 2025-08-26T20:39:59.5833148Z * [new branch] gh/andyanwang/39/base -> origin/gh/andyanwang/39/base 2025-08-26T20:39:59.5833670Z * [new branch] gh/andyanwang/39/head -> origin/gh/andyanwang/39/head 2025-08-26T20:39:59.5834185Z * [new branch] gh/andyanwang/39/orig -> origin/gh/andyanwang/39/orig 2025-08-26T20:39:59.5834715Z * [new branch] gh/andyanwang/4/base -> origin/gh/andyanwang/4/base 2025-08-26T20:39:59.5835229Z * [new branch] gh/andyanwang/4/head -> origin/gh/andyanwang/4/head 2025-08-26T20:39:59.5835749Z * [new branch] gh/andyanwang/4/orig -> origin/gh/andyanwang/4/orig 2025-08-26T20:39:59.5836269Z * [new branch] gh/andyanwang/40/base -> origin/gh/andyanwang/40/base 2025-08-26T20:39:59.5836778Z * [new branch] gh/andyanwang/40/head -> origin/gh/andyanwang/40/head 2025-08-26T20:39:59.5837292Z * [new branch] gh/andyanwang/40/orig -> origin/gh/andyanwang/40/orig 2025-08-26T20:39:59.5837804Z * [new branch] gh/angelayi/106/base -> origin/gh/angelayi/106/base 2025-08-26T20:39:59.5838312Z * [new branch] gh/angelayi/106/head -> origin/gh/angelayi/106/head 2025-08-26T20:39:59.5838801Z * [new branch] gh/angelayi/106/orig -> origin/gh/angelayi/106/orig 2025-08-26T20:39:59.5839311Z * [new branch] gh/angelayi/107/base -> origin/gh/angelayi/107/base 2025-08-26T20:39:59.5839813Z * [new branch] gh/angelayi/107/head -> origin/gh/angelayi/107/head 2025-08-26T20:39:59.5840303Z * [new branch] gh/angelayi/108/base -> origin/gh/angelayi/108/base 2025-08-26T20:39:59.5840808Z * [new branch] gh/angelayi/108/head -> origin/gh/angelayi/108/head 2025-08-26T20:39:59.5841303Z * [new branch] gh/angelayi/108/orig -> origin/gh/angelayi/108/orig 2025-08-26T20:39:59.5841814Z * [new branch] gh/angelayi/109/base -> origin/gh/angelayi/109/base 2025-08-26T20:39:59.5842319Z * [new branch] gh/angelayi/109/head -> origin/gh/angelayi/109/head 2025-08-26T20:39:59.5842808Z * [new branch] gh/angelayi/109/orig -> origin/gh/angelayi/109/orig 2025-08-26T20:39:59.5843389Z * [new branch] gh/angelayi/110/base -> origin/gh/angelayi/110/base 2025-08-26T20:39:59.5843988Z * [new branch] gh/angelayi/110/head -> origin/gh/angelayi/110/head 2025-08-26T20:39:59.5844503Z * [new branch] gh/angelayi/110/orig -> origin/gh/angelayi/110/orig 2025-08-26T20:39:59.5845010Z * [new branch] gh/angelayi/111/base -> origin/gh/angelayi/111/base 2025-08-26T20:39:59.5845505Z * [new branch] gh/angelayi/111/head -> origin/gh/angelayi/111/head 2025-08-26T20:39:59.5846020Z * [new branch] gh/angelayi/111/orig -> origin/gh/angelayi/111/orig 2025-08-26T20:39:59.5846604Z * [new branch] gh/angelayi/112/base -> origin/gh/angelayi/112/base 2025-08-26T20:39:59.5847116Z * [new branch] gh/angelayi/112/head -> origin/gh/angelayi/112/head 2025-08-26T20:39:59.5847629Z * [new branch] gh/angelayi/112/orig -> origin/gh/angelayi/112/orig 2025-08-26T20:39:59.5848136Z * [new branch] gh/angelayi/113/base -> origin/gh/angelayi/113/base 2025-08-26T20:39:59.5848651Z * [new branch] gh/angelayi/113/head -> origin/gh/angelayi/113/head 2025-08-26T20:39:59.5849150Z * [new branch] gh/angelayi/113/orig -> origin/gh/angelayi/113/orig 2025-08-26T20:39:59.6280913Z * [new branch] gh/angelayi/114/base -> origin/gh/angelayi/114/base 2025-08-26T20:39:59.6281480Z * [new branch] gh/angelayi/114/head -> origin/gh/angelayi/114/head 2025-08-26T20:39:59.6281996Z * [new branch] gh/angelayi/114/orig -> origin/gh/angelayi/114/orig 2025-08-26T20:39:59.6282537Z * [new branch] gh/angelayi/115/base -> origin/gh/angelayi/115/base 2025-08-26T20:39:59.6283038Z * [new branch] gh/angelayi/115/head -> origin/gh/angelayi/115/head 2025-08-26T20:39:59.6283617Z * [new branch] gh/angelayi/115/orig -> origin/gh/angelayi/115/orig 2025-08-26T20:39:59.6284165Z * [new branch] gh/anijain2305/753/base -> origin/gh/anijain2305/753/base 2025-08-26T20:39:59.6284693Z * [new branch] gh/anijain2305/753/head -> origin/gh/anijain2305/753/head 2025-08-26T20:39:59.6285232Z * [new branch] gh/anijain2305/753/orig -> origin/gh/anijain2305/753/orig 2025-08-26T20:39:59.6285750Z * [new branch] gh/anijain2305/766/base -> origin/gh/anijain2305/766/base 2025-08-26T20:39:59.6286278Z * [new branch] gh/anijain2305/766/head -> origin/gh/anijain2305/766/head 2025-08-26T20:39:59.6286889Z * [new branch] gh/anijain2305/766/orig -> origin/gh/anijain2305/766/orig 2025-08-26T20:39:59.6287415Z * [new branch] gh/anijain2305/790/base -> origin/gh/anijain2305/790/base 2025-08-26T20:39:59.6287948Z * [new branch] gh/anijain2305/790/head -> origin/gh/anijain2305/790/head 2025-08-26T20:39:59.6288471Z * [new branch] gh/anijain2305/790/orig -> origin/gh/anijain2305/790/orig 2025-08-26T20:39:59.6289004Z * [new branch] gh/anijain2305/792/base -> origin/gh/anijain2305/792/base 2025-08-26T20:39:59.6289524Z * [new branch] gh/anijain2305/792/head -> origin/gh/anijain2305/792/head 2025-08-26T20:39:59.6290056Z * [new branch] gh/anijain2305/792/orig -> origin/gh/anijain2305/792/orig 2025-08-26T20:39:59.6290595Z * [new branch] gh/anijain2305/803/base -> origin/gh/anijain2305/803/base 2025-08-26T20:39:59.6291127Z * [new branch] gh/anijain2305/803/head -> origin/gh/anijain2305/803/head 2025-08-26T20:39:59.6291662Z * [new branch] gh/anijain2305/803/orig -> origin/gh/anijain2305/803/orig 2025-08-26T20:39:59.6292304Z * [new branch] gh/anijain2305/804/base -> origin/gh/anijain2305/804/base 2025-08-26T20:39:59.6292878Z * [new branch] gh/anijain2305/804/head -> origin/gh/anijain2305/804/head 2025-08-26T20:39:59.6293554Z * [new branch] gh/anijain2305/804/orig -> origin/gh/anijain2305/804/orig 2025-08-26T20:39:59.6294064Z * [new branch] gh/anijain2305/805/base -> origin/gh/anijain2305/805/base 2025-08-26T20:39:59.6294585Z * [new branch] gh/anijain2305/805/head -> origin/gh/anijain2305/805/head 2025-08-26T20:39:59.6295173Z * [new branch] gh/anijain2305/805/orig -> origin/gh/anijain2305/805/orig 2025-08-26T20:39:59.6295688Z * [new branch] gh/anijain2305/810/base -> origin/gh/anijain2305/810/base 2025-08-26T20:39:59.6296322Z * [new branch] gh/anijain2305/810/head -> origin/gh/anijain2305/810/head 2025-08-26T20:39:59.6296843Z * [new branch] gh/anijain2305/810/orig -> origin/gh/anijain2305/810/orig 2025-08-26T20:39:59.6297357Z * [new branch] gh/anijain2305/812/base -> origin/gh/anijain2305/812/base 2025-08-26T20:39:59.6297866Z * [new branch] gh/anijain2305/812/head -> origin/gh/anijain2305/812/head 2025-08-26T20:39:59.6298384Z * [new branch] gh/anijain2305/812/orig -> origin/gh/anijain2305/812/orig 2025-08-26T20:39:59.6298896Z * [new branch] gh/anijain2305/817/base -> origin/gh/anijain2305/817/base 2025-08-26T20:39:59.6299402Z * [new branch] gh/anijain2305/817/head -> origin/gh/anijain2305/817/head 2025-08-26T20:39:59.6299916Z * [new branch] gh/anijain2305/817/orig -> origin/gh/anijain2305/817/orig 2025-08-26T20:39:59.6300420Z * [new branch] gh/anijain2305/823/base -> origin/gh/anijain2305/823/base 2025-08-26T20:39:59.6300937Z * [new branch] gh/anijain2305/823/head -> origin/gh/anijain2305/823/head 2025-08-26T20:39:59.6301450Z * [new branch] gh/anijain2305/823/orig -> origin/gh/anijain2305/823/orig 2025-08-26T20:39:59.6301950Z * [new branch] gh/anijain2305/829/base -> origin/gh/anijain2305/829/base 2025-08-26T20:39:59.6302463Z * [new branch] gh/anijain2305/829/head -> origin/gh/anijain2305/829/head 2025-08-26T20:39:59.6302965Z * [new branch] gh/anijain2305/829/orig -> origin/gh/anijain2305/829/orig 2025-08-26T20:39:59.6303481Z * [new branch] gh/anijain2305/830/base -> origin/gh/anijain2305/830/base 2025-08-26T20:39:59.6304000Z * [new branch] gh/anijain2305/830/head -> origin/gh/anijain2305/830/head 2025-08-26T20:39:59.6304507Z * [new branch] gh/anijain2305/830/orig -> origin/gh/anijain2305/830/orig 2025-08-26T20:39:59.6726243Z * [new branch] gh/anijain2305/831/base -> origin/gh/anijain2305/831/base 2025-08-26T20:39:59.6726821Z * [new branch] gh/anijain2305/831/head -> origin/gh/anijain2305/831/head 2025-08-26T20:39:59.6727349Z * [new branch] gh/anijain2305/831/orig -> origin/gh/anijain2305/831/orig 2025-08-26T20:39:59.6727890Z * [new branch] gh/anijain2305/832/base -> origin/gh/anijain2305/832/base 2025-08-26T20:39:59.6728412Z * [new branch] gh/anijain2305/832/head -> origin/gh/anijain2305/832/head 2025-08-26T20:39:59.6728932Z * [new branch] gh/anijain2305/832/orig -> origin/gh/anijain2305/832/orig 2025-08-26T20:39:59.6729446Z * [new branch] gh/anijain2305/833/base -> origin/gh/anijain2305/833/base 2025-08-26T20:39:59.6729952Z * [new branch] gh/anijain2305/833/head -> origin/gh/anijain2305/833/head 2025-08-26T20:39:59.6730466Z * [new branch] gh/anijain2305/833/orig -> origin/gh/anijain2305/833/orig 2025-08-26T20:39:59.6730977Z * [new branch] gh/anijain2305/834/base -> origin/gh/anijain2305/834/base 2025-08-26T20:39:59.6731498Z * [new branch] gh/anijain2305/834/head -> origin/gh/anijain2305/834/head 2025-08-26T20:39:59.6732006Z * [new branch] gh/anijain2305/834/orig -> origin/gh/anijain2305/834/orig 2025-08-26T20:39:59.6732735Z * [new branch] gh/anijain2305/835/base -> origin/gh/anijain2305/835/base 2025-08-26T20:39:59.6733342Z * [new branch] gh/anijain2305/835/head -> origin/gh/anijain2305/835/head 2025-08-26T20:39:59.6733863Z * [new branch] gh/anijain2305/835/orig -> origin/gh/anijain2305/835/orig 2025-08-26T20:39:59.6734380Z * [new branch] gh/anijain2305/836/base -> origin/gh/anijain2305/836/base 2025-08-26T20:39:59.6734890Z * [new branch] gh/anijain2305/836/head -> origin/gh/anijain2305/836/head 2025-08-26T20:39:59.6735507Z * [new branch] gh/anijain2305/836/orig -> origin/gh/anijain2305/836/orig 2025-08-26T20:39:59.6736030Z * [new branch] gh/anijain2305/837/base -> origin/gh/anijain2305/837/base 2025-08-26T20:39:59.6736541Z * [new branch] gh/anijain2305/837/head -> origin/gh/anijain2305/837/head 2025-08-26T20:39:59.6737064Z * [new branch] gh/anijain2305/837/orig -> origin/gh/anijain2305/837/orig 2025-08-26T20:39:59.6737574Z * [new branch] gh/anijain2305/838/base -> origin/gh/anijain2305/838/base 2025-08-26T20:39:59.6738100Z * [new branch] gh/anijain2305/838/head -> origin/gh/anijain2305/838/head 2025-08-26T20:39:59.6738622Z * [new branch] gh/anijain2305/838/orig -> origin/gh/anijain2305/838/orig 2025-08-26T20:39:59.6739131Z * [new branch] gh/anijain2305/839/base -> origin/gh/anijain2305/839/base 2025-08-26T20:39:59.6739659Z * [new branch] gh/anijain2305/839/head -> origin/gh/anijain2305/839/head 2025-08-26T20:39:59.6740160Z * [new branch] gh/anijain2305/839/orig -> origin/gh/anijain2305/839/orig 2025-08-26T20:39:59.6740676Z * [new branch] gh/anijain2305/840/base -> origin/gh/anijain2305/840/base 2025-08-26T20:39:59.6741194Z * [new branch] gh/anijain2305/840/head -> origin/gh/anijain2305/840/head 2025-08-26T20:39:59.6741706Z * [new branch] gh/anijain2305/840/orig -> origin/gh/anijain2305/840/orig 2025-08-26T20:39:59.6742222Z * [new branch] gh/anijain2305/841/base -> origin/gh/anijain2305/841/base 2025-08-26T20:39:59.6742732Z * [new branch] gh/anijain2305/841/head -> origin/gh/anijain2305/841/head 2025-08-26T20:39:59.6743249Z * [new branch] gh/anijain2305/841/orig -> origin/gh/anijain2305/841/orig 2025-08-26T20:39:59.6743757Z * [new branch] gh/anijain2305/842/base -> origin/gh/anijain2305/842/base 2025-08-26T20:39:59.6744266Z * [new branch] gh/anijain2305/842/head -> origin/gh/anijain2305/842/head 2025-08-26T20:39:59.6744786Z * [new branch] gh/anijain2305/842/orig -> origin/gh/anijain2305/842/orig 2025-08-26T20:39:59.6745294Z * [new branch] gh/anijain2305/843/base -> origin/gh/anijain2305/843/base 2025-08-26T20:39:59.6745816Z * [new branch] gh/anijain2305/843/head -> origin/gh/anijain2305/843/head 2025-08-26T20:39:59.6746337Z * [new branch] gh/anijain2305/843/orig -> origin/gh/anijain2305/843/orig 2025-08-26T20:39:59.6746932Z * [new branch] gh/anijain2305/844/base -> origin/gh/anijain2305/844/base 2025-08-26T20:39:59.6747452Z * [new branch] gh/anijain2305/844/head -> origin/gh/anijain2305/844/head 2025-08-26T20:39:59.6747957Z * [new branch] gh/anijain2305/844/orig -> origin/gh/anijain2305/844/orig 2025-08-26T20:39:59.6748479Z * [new branch] gh/anijain2305/845/base -> origin/gh/anijain2305/845/base 2025-08-26T20:39:59.6748992Z * [new branch] gh/anijain2305/845/head -> origin/gh/anijain2305/845/head 2025-08-26T20:39:59.6749506Z * [new branch] gh/anijain2305/845/orig -> origin/gh/anijain2305/845/orig 2025-08-26T20:39:59.7172045Z * [new branch] gh/anijain2305/846/base -> origin/gh/anijain2305/846/base 2025-08-26T20:39:59.7173304Z * [new branch] gh/anijain2305/846/head -> origin/gh/anijain2305/846/head 2025-08-26T20:39:59.7173833Z * [new branch] gh/anijain2305/846/orig -> origin/gh/anijain2305/846/orig 2025-08-26T20:39:59.7174378Z * [new branch] gh/anijain2305/847/base -> origin/gh/anijain2305/847/base 2025-08-26T20:39:59.7174946Z * [new branch] gh/anijain2305/847/head -> origin/gh/anijain2305/847/head 2025-08-26T20:39:59.7175521Z * [new branch] gh/anijain2305/847/orig -> origin/gh/anijain2305/847/orig 2025-08-26T20:39:59.7176153Z * [new branch] gh/anijain2305/848/base -> origin/gh/anijain2305/848/base 2025-08-26T20:39:59.7176678Z * [new branch] gh/anijain2305/848/head -> origin/gh/anijain2305/848/head 2025-08-26T20:39:59.7177273Z * [new branch] gh/anijain2305/848/orig -> origin/gh/anijain2305/848/orig 2025-08-26T20:39:59.7177797Z * [new branch] gh/anijain2305/849/base -> origin/gh/anijain2305/849/base 2025-08-26T20:39:59.7178328Z * [new branch] gh/anijain2305/849/head -> origin/gh/anijain2305/849/head 2025-08-26T20:39:59.7178843Z * [new branch] gh/anijain2305/849/orig -> origin/gh/anijain2305/849/orig 2025-08-26T20:39:59.7179359Z * [new branch] gh/anijain2305/850/base -> origin/gh/anijain2305/850/base 2025-08-26T20:39:59.7179876Z * [new branch] gh/anijain2305/850/head -> origin/gh/anijain2305/850/head 2025-08-26T20:39:59.7180390Z * [new branch] gh/anijain2305/850/orig -> origin/gh/anijain2305/850/orig 2025-08-26T20:39:59.7180967Z * [new branch] gh/anijain2305/851/base -> origin/gh/anijain2305/851/base 2025-08-26T20:39:59.7181530Z * [new branch] gh/anijain2305/851/head -> origin/gh/anijain2305/851/head 2025-08-26T20:39:59.7182053Z * [new branch] gh/anijain2305/851/orig -> origin/gh/anijain2305/851/orig 2025-08-26T20:39:59.7182587Z * [new branch] gh/anijain2305/852/base -> origin/gh/anijain2305/852/base 2025-08-26T20:39:59.7183097Z * [new branch] gh/anijain2305/852/head -> origin/gh/anijain2305/852/head 2025-08-26T20:39:59.7183617Z * [new branch] gh/anijain2305/852/orig -> origin/gh/anijain2305/852/orig 2025-08-26T20:39:59.7184130Z * [new branch] gh/anijain2305/853/base -> origin/gh/anijain2305/853/base 2025-08-26T20:39:59.7184713Z * [new branch] gh/anijain2305/853/head -> origin/gh/anijain2305/853/head 2025-08-26T20:39:59.7185239Z * [new branch] gh/anijain2305/853/orig -> origin/gh/anijain2305/853/orig 2025-08-26T20:39:59.7185750Z * [new branch] gh/anijain2305/854/base -> origin/gh/anijain2305/854/base 2025-08-26T20:39:59.7186271Z * [new branch] gh/anijain2305/854/head -> origin/gh/anijain2305/854/head 2025-08-26T20:39:59.7186877Z * [new branch] gh/anijain2305/854/orig -> origin/gh/anijain2305/854/orig 2025-08-26T20:39:59.7187397Z * [new branch] gh/anijain2305/855/base -> origin/gh/anijain2305/855/base 2025-08-26T20:39:59.7187919Z * [new branch] gh/anijain2305/855/head -> origin/gh/anijain2305/855/head 2025-08-26T20:39:59.7188433Z * [new branch] gh/anijain2305/855/orig -> origin/gh/anijain2305/855/orig 2025-08-26T20:39:59.7188948Z * [new branch] gh/anijain2305/856/base -> origin/gh/anijain2305/856/base 2025-08-26T20:39:59.7189463Z * [new branch] gh/anijain2305/856/head -> origin/gh/anijain2305/856/head 2025-08-26T20:39:59.7189979Z * [new branch] gh/anijain2305/856/orig -> origin/gh/anijain2305/856/orig 2025-08-26T20:39:59.7190489Z * [new branch] gh/anijain2305/857/base -> origin/gh/anijain2305/857/base 2025-08-26T20:39:59.7191003Z * [new branch] gh/anijain2305/857/head -> origin/gh/anijain2305/857/head 2025-08-26T20:39:59.7191918Z * [new branch] gh/anijain2305/857/orig -> origin/gh/anijain2305/857/orig 2025-08-26T20:39:59.7192493Z * [new branch] gh/anijain2305/858/base -> origin/gh/anijain2305/858/base 2025-08-26T20:39:59.7193072Z * [new branch] gh/anijain2305/858/head -> origin/gh/anijain2305/858/head 2025-08-26T20:39:59.7193581Z * [new branch] gh/anijain2305/858/orig -> origin/gh/anijain2305/858/orig 2025-08-26T20:39:59.7194100Z * [new branch] gh/anijain2305/859/base -> origin/gh/anijain2305/859/base 2025-08-26T20:39:59.7194705Z * [new branch] gh/anijain2305/859/head -> origin/gh/anijain2305/859/head 2025-08-26T20:39:59.7195211Z * [new branch] gh/anijain2305/859/orig -> origin/gh/anijain2305/859/orig 2025-08-26T20:39:59.7195724Z * [new branch] gh/anjali411/216/base -> origin/gh/anjali411/216/base 2025-08-26T20:39:59.7196316Z * [new branch] gh/anjali411/216/head -> origin/gh/anjali411/216/head 2025-08-26T20:39:59.7196816Z * [new branch] gh/anjali411/216/orig -> origin/gh/anjali411/216/orig 2025-08-26T20:39:59.7625447Z * [new branch] gh/ankitageorge/13/base -> origin/gh/ankitageorge/13/base 2025-08-26T20:39:59.7626046Z * [new branch] gh/ankitageorge/13/head -> origin/gh/ankitageorge/13/head 2025-08-26T20:39:59.7626587Z * [new branch] gh/ankitageorge/13/orig -> origin/gh/ankitageorge/13/orig 2025-08-26T20:39:59.7627137Z * [new branch] gh/ankitageorge/14/base -> origin/gh/ankitageorge/14/base 2025-08-26T20:39:59.7627665Z * [new branch] gh/ankitageorge/14/head -> origin/gh/ankitageorge/14/head 2025-08-26T20:39:59.7628188Z * [new branch] gh/ankitageorge/14/orig -> origin/gh/ankitageorge/14/orig 2025-08-26T20:39:59.7628706Z * [new branch] gh/ankitageorge/15/base -> origin/gh/ankitageorge/15/base 2025-08-26T20:39:59.7629248Z * [new branch] gh/ankitageorge/15/head -> origin/gh/ankitageorge/15/head 2025-08-26T20:39:59.7630780Z * [new branch] gh/ankitageorge/15/orig -> origin/gh/ankitageorge/15/orig 2025-08-26T20:39:59.7631318Z * [new branch] gh/ankitageorge/16/base -> origin/gh/ankitageorge/16/base 2025-08-26T20:39:59.7631843Z * [new branch] gh/ankitageorge/16/head -> origin/gh/ankitageorge/16/head 2025-08-26T20:39:59.7632369Z * [new branch] gh/ankitageorge/16/orig -> origin/gh/ankitageorge/16/orig 2025-08-26T20:39:59.7632908Z * [new branch] gh/ankitageorge/17/base -> origin/gh/ankitageorge/17/base 2025-08-26T20:39:59.7633437Z * [new branch] gh/ankitageorge/17/head -> origin/gh/ankitageorge/17/head 2025-08-26T20:39:59.7633955Z * [new branch] gh/ankitageorge/17/orig -> origin/gh/ankitageorge/17/orig 2025-08-26T20:39:59.7634487Z * [new branch] gh/ankitageorge/18/base -> origin/gh/ankitageorge/18/base 2025-08-26T20:39:59.7635005Z * [new branch] gh/ankitageorge/18/head -> origin/gh/ankitageorge/18/head 2025-08-26T20:39:59.7636491Z * [new branch] gh/ankitageorge/18/orig -> origin/gh/ankitageorge/18/orig 2025-08-26T20:39:59.7637019Z * [new branch] gh/ankitageorge/19/base -> origin/gh/ankitageorge/19/base 2025-08-26T20:39:59.7637552Z * [new branch] gh/ankitageorge/19/head -> origin/gh/ankitageorge/19/head 2025-08-26T20:39:59.7638087Z * [new branch] gh/ankitageorge/19/orig -> origin/gh/ankitageorge/19/orig 2025-08-26T20:39:59.7638606Z * [new branch] gh/ankitageorge/20/base -> origin/gh/ankitageorge/20/base 2025-08-26T20:39:59.7639147Z * [new branch] gh/ankitageorge/20/head -> origin/gh/ankitageorge/20/head 2025-08-26T20:39:59.7639663Z * [new branch] gh/ankitageorge/20/orig -> origin/gh/ankitageorge/20/orig 2025-08-26T20:39:59.7640742Z * [new branch] gh/ankitageorge/21/base -> origin/gh/ankitageorge/21/base 2025-08-26T20:39:59.7642344Z * [new branch] gh/ankitageorge/21/head -> origin/gh/ankitageorge/21/head 2025-08-26T20:39:59.7642888Z * [new branch] gh/ankitageorge/21/orig -> origin/gh/ankitageorge/21/orig 2025-08-26T20:39:59.7643467Z * [new branch] gh/anshul-si/1/base -> origin/gh/anshul-si/1/base 2025-08-26T20:39:59.7643958Z * [new branch] gh/anshul-si/1/head -> origin/gh/anshul-si/1/head 2025-08-26T20:39:59.7645003Z * [new branch] gh/anshul-si/10/base -> origin/gh/anshul-si/10/base 2025-08-26T20:39:59.7645517Z * [new branch] gh/anshul-si/10/head -> origin/gh/anshul-si/10/head 2025-08-26T20:39:59.7646011Z * [new branch] gh/anshul-si/10/orig -> origin/gh/anshul-si/10/orig 2025-08-26T20:39:59.7646501Z * [new branch] gh/anshul-si/11/base -> origin/gh/anshul-si/11/base 2025-08-26T20:39:59.7648036Z * [new branch] gh/anshul-si/11/head -> origin/gh/anshul-si/11/head 2025-08-26T20:39:59.7648545Z * [new branch] gh/anshul-si/11/orig -> origin/gh/anshul-si/11/orig 2025-08-26T20:39:59.7649034Z * [new branch] gh/anshul-si/12/base -> origin/gh/anshul-si/12/base 2025-08-26T20:39:59.7649597Z * [new branch] gh/anshul-si/12/head -> origin/gh/anshul-si/12/head 2025-08-26T20:39:59.7650095Z * [new branch] gh/anshul-si/12/orig -> origin/gh/anshul-si/12/orig 2025-08-26T20:39:59.7650578Z * [new branch] gh/anshul-si/13/base -> origin/gh/anshul-si/13/base 2025-08-26T20:39:59.7651065Z * [new branch] gh/anshul-si/13/head -> origin/gh/anshul-si/13/head 2025-08-26T20:39:59.7651547Z * [new branch] gh/anshul-si/13/orig -> origin/gh/anshul-si/13/orig 2025-08-26T20:39:59.7652043Z * [new branch] gh/anshul-si/14/base -> origin/gh/anshul-si/14/base 2025-08-26T20:39:59.7652541Z * [new branch] gh/anshul-si/14/head -> origin/gh/anshul-si/14/head 2025-08-26T20:39:59.7654021Z * [new branch] gh/anshul-si/14/orig -> origin/gh/anshul-si/14/orig 2025-08-26T20:39:59.7654514Z * [new branch] gh/anshul-si/15/base -> origin/gh/anshul-si/15/base 2025-08-26T20:39:59.7654997Z * [new branch] gh/anshul-si/15/head -> origin/gh/anshul-si/15/head 2025-08-26T20:39:59.8077914Z * [new branch] gh/anshul-si/15/orig -> origin/gh/anshul-si/15/orig 2025-08-26T20:39:59.8078466Z * [new branch] gh/anshul-si/16/base -> origin/gh/anshul-si/16/base 2025-08-26T20:39:59.8078948Z * [new branch] gh/anshul-si/16/head -> origin/gh/anshul-si/16/head 2025-08-26T20:39:59.8079438Z * [new branch] gh/anshul-si/16/orig -> origin/gh/anshul-si/16/orig 2025-08-26T20:39:59.8079932Z * [new branch] gh/anshul-si/17/base -> origin/gh/anshul-si/17/base 2025-08-26T20:39:59.8080410Z * [new branch] gh/anshul-si/17/head -> origin/gh/anshul-si/17/head 2025-08-26T20:39:59.8080896Z * [new branch] gh/anshul-si/17/orig -> origin/gh/anshul-si/17/orig 2025-08-26T20:39:59.8081372Z * [new branch] gh/anshul-si/18/base -> origin/gh/anshul-si/18/base 2025-08-26T20:39:59.8081866Z * [new branch] gh/anshul-si/18/head -> origin/gh/anshul-si/18/head 2025-08-26T20:39:59.8082355Z * [new branch] gh/anshul-si/18/orig -> origin/gh/anshul-si/18/orig 2025-08-26T20:39:59.8082834Z * [new branch] gh/anshul-si/19/base -> origin/gh/anshul-si/19/base 2025-08-26T20:39:59.8083405Z * [new branch] gh/anshul-si/19/head -> origin/gh/anshul-si/19/head 2025-08-26T20:39:59.8084516Z * [new branch] gh/anshul-si/19/orig -> origin/gh/anshul-si/19/orig 2025-08-26T20:39:59.8085026Z * [new branch] gh/anshul-si/2/base -> origin/gh/anshul-si/2/base 2025-08-26T20:39:59.8085517Z * [new branch] gh/anshul-si/2/head -> origin/gh/anshul-si/2/head 2025-08-26T20:39:59.8085996Z * [new branch] gh/anshul-si/20/base -> origin/gh/anshul-si/20/base 2025-08-26T20:39:59.8086584Z * [new branch] gh/anshul-si/20/head -> origin/gh/anshul-si/20/head 2025-08-26T20:39:59.8087448Z * [new branch] gh/anshul-si/20/orig -> origin/gh/anshul-si/20/orig 2025-08-26T20:39:59.8087953Z * [new branch] gh/anshul-si/21/base -> origin/gh/anshul-si/21/base 2025-08-26T20:39:59.8088437Z * [new branch] gh/anshul-si/21/head -> origin/gh/anshul-si/21/head 2025-08-26T20:39:59.8088932Z * [new branch] gh/anshul-si/21/orig -> origin/gh/anshul-si/21/orig 2025-08-26T20:39:59.8089430Z * [new branch] gh/anshul-si/22/base -> origin/gh/anshul-si/22/base 2025-08-26T20:39:59.8089923Z * [new branch] gh/anshul-si/22/head -> origin/gh/anshul-si/22/head 2025-08-26T20:39:59.8090422Z * [new branch] gh/anshul-si/22/orig -> origin/gh/anshul-si/22/orig 2025-08-26T20:39:59.8090905Z * [new branch] gh/anshul-si/23/base -> origin/gh/anshul-si/23/base 2025-08-26T20:39:59.8091399Z * [new branch] gh/anshul-si/23/head -> origin/gh/anshul-si/23/head 2025-08-26T20:39:59.8091903Z * [new branch] gh/anshul-si/23/orig -> origin/gh/anshul-si/23/orig 2025-08-26T20:39:59.8092387Z * [new branch] gh/anshul-si/24/base -> origin/gh/anshul-si/24/base 2025-08-26T20:39:59.8092870Z * [new branch] gh/anshul-si/24/head -> origin/gh/anshul-si/24/head 2025-08-26T20:39:59.8093354Z * [new branch] gh/anshul-si/24/orig -> origin/gh/anshul-si/24/orig 2025-08-26T20:39:59.8093844Z * [new branch] gh/anshul-si/25/base -> origin/gh/anshul-si/25/base 2025-08-26T20:39:59.8094338Z * [new branch] gh/anshul-si/25/head -> origin/gh/anshul-si/25/head 2025-08-26T20:39:59.8094820Z * [new branch] gh/anshul-si/25/orig -> origin/gh/anshul-si/25/orig 2025-08-26T20:39:59.8095305Z * [new branch] gh/anshul-si/26/base -> origin/gh/anshul-si/26/base 2025-08-26T20:39:59.8095787Z * [new branch] gh/anshul-si/26/head -> origin/gh/anshul-si/26/head 2025-08-26T20:39:59.8096302Z * [new branch] gh/anshul-si/26/orig -> origin/gh/anshul-si/26/orig 2025-08-26T20:39:59.8096789Z * [new branch] gh/anshul-si/27/base -> origin/gh/anshul-si/27/base 2025-08-26T20:39:59.8097279Z * [new branch] gh/anshul-si/27/head -> origin/gh/anshul-si/27/head 2025-08-26T20:39:59.8097766Z * [new branch] gh/anshul-si/27/orig -> origin/gh/anshul-si/27/orig 2025-08-26T20:39:59.8098253Z * [new branch] gh/anshul-si/28/base -> origin/gh/anshul-si/28/base 2025-08-26T20:39:59.8098737Z * [new branch] gh/anshul-si/28/head -> origin/gh/anshul-si/28/head 2025-08-26T20:39:59.8099223Z * [new branch] gh/anshul-si/28/orig -> origin/gh/anshul-si/28/orig 2025-08-26T20:39:59.8099714Z * [new branch] gh/anshul-si/3/base -> origin/gh/anshul-si/3/base 2025-08-26T20:39:59.8100205Z * [new branch] gh/anshul-si/3/head -> origin/gh/anshul-si/3/head 2025-08-26T20:39:59.8100691Z * [new branch] gh/anshul-si/4/base -> origin/gh/anshul-si/4/base 2025-08-26T20:39:59.8101173Z * [new branch] gh/anshul-si/4/head -> origin/gh/anshul-si/4/head 2025-08-26T20:39:59.8101644Z * [new branch] gh/anshul-si/5/base -> origin/gh/anshul-si/5/base 2025-08-26T20:39:59.8530058Z * [new branch] gh/anshul-si/5/head -> origin/gh/anshul-si/5/head 2025-08-26T20:39:59.8530602Z * [new branch] gh/anshul-si/7/base -> origin/gh/anshul-si/7/base 2025-08-26T20:39:59.8531112Z * [new branch] gh/anshul-si/7/head -> origin/gh/anshul-si/7/head 2025-08-26T20:39:59.8531606Z * [new branch] gh/anshul-si/7/orig -> origin/gh/anshul-si/7/orig 2025-08-26T20:39:59.8532091Z * [new branch] gh/anshul-si/8/base -> origin/gh/anshul-si/8/base 2025-08-26T20:39:59.8533087Z * [new branch] gh/anshul-si/8/head -> origin/gh/anshul-si/8/head 2025-08-26T20:39:59.8533590Z * [new branch] gh/anshul-si/8/orig -> origin/gh/anshul-si/8/orig 2025-08-26T20:39:59.8534069Z * [new branch] gh/anshul-si/9/base -> origin/gh/anshul-si/9/base 2025-08-26T20:39:59.8534566Z * [new branch] gh/anshul-si/9/head -> origin/gh/anshul-si/9/head 2025-08-26T20:39:59.8535055Z * [new branch] gh/anshul-si/9/orig -> origin/gh/anshul-si/9/orig 2025-08-26T20:39:59.8535540Z * [new branch] gh/aorenste/132/base -> origin/gh/aorenste/132/base 2025-08-26T20:39:59.8536039Z * [new branch] gh/aorenste/132/head -> origin/gh/aorenste/132/head 2025-08-26T20:39:59.8536531Z * [new branch] gh/aorenste/237/base -> origin/gh/aorenste/237/base 2025-08-26T20:39:59.8537027Z * [new branch] gh/aorenste/237/head -> origin/gh/aorenste/237/head 2025-08-26T20:39:59.8537522Z * [new branch] gh/aorenste/237/orig -> origin/gh/aorenste/237/orig 2025-08-26T20:39:59.8538012Z * [new branch] gh/aorenste/238/base -> origin/gh/aorenste/238/base 2025-08-26T20:39:59.8538502Z * [new branch] gh/aorenste/238/head -> origin/gh/aorenste/238/head 2025-08-26T20:39:59.8538984Z * [new branch] gh/aorenste/238/orig -> origin/gh/aorenste/238/orig 2025-08-26T20:39:59.8539491Z * [new branch] gh/bdhirsh/650/base -> origin/gh/bdhirsh/650/base 2025-08-26T20:39:59.8539969Z * [new branch] gh/bdhirsh/650/head -> origin/gh/bdhirsh/650/head 2025-08-26T20:39:59.8540457Z * [new branch] gh/bdhirsh/650/orig -> origin/gh/bdhirsh/650/orig 2025-08-26T20:39:59.8540941Z * [new branch] gh/bdhirsh/656/base -> origin/gh/bdhirsh/656/base 2025-08-26T20:39:59.8541417Z * [new branch] gh/bdhirsh/656/head -> origin/gh/bdhirsh/656/head 2025-08-26T20:39:59.8541908Z * [new branch] gh/bdhirsh/657/base -> origin/gh/bdhirsh/657/base 2025-08-26T20:39:59.8542389Z * [new branch] gh/bdhirsh/657/head -> origin/gh/bdhirsh/657/head 2025-08-26T20:39:59.8542871Z * [new branch] gh/bdhirsh/663/base -> origin/gh/bdhirsh/663/base 2025-08-26T20:39:59.8543356Z * [new branch] gh/bdhirsh/663/head -> origin/gh/bdhirsh/663/head 2025-08-26T20:39:59.8543827Z * [new branch] gh/bdhirsh/663/orig -> origin/gh/bdhirsh/663/orig 2025-08-26T20:39:59.8544309Z * [new branch] gh/bdhirsh/665/base -> origin/gh/bdhirsh/665/base 2025-08-26T20:39:59.8544780Z * [new branch] gh/bdhirsh/665/head -> origin/gh/bdhirsh/665/head 2025-08-26T20:39:59.8545262Z * [new branch] gh/bdhirsh/665/orig -> origin/gh/bdhirsh/665/orig 2025-08-26T20:39:59.8545864Z * [new branch] gh/bdhirsh/666/base -> origin/gh/bdhirsh/666/base 2025-08-26T20:39:59.8546364Z * [new branch] gh/bdhirsh/666/head -> origin/gh/bdhirsh/666/head 2025-08-26T20:39:59.8546848Z * [new branch] gh/bdhirsh/666/orig -> origin/gh/bdhirsh/666/orig 2025-08-26T20:39:59.8547325Z * [new branch] gh/bdhirsh/667/base -> origin/gh/bdhirsh/667/base 2025-08-26T20:39:59.8548170Z * [new branch] gh/bdhirsh/667/head -> origin/gh/bdhirsh/667/head 2025-08-26T20:39:59.8548653Z * [new branch] gh/bdhirsh/667/orig -> origin/gh/bdhirsh/667/orig 2025-08-26T20:39:59.8549133Z * [new branch] gh/bdhirsh/668/base -> origin/gh/bdhirsh/668/base 2025-08-26T20:39:59.8549620Z * [new branch] gh/bdhirsh/668/head -> origin/gh/bdhirsh/668/head 2025-08-26T20:39:59.8550196Z * [new branch] gh/bdhirsh/668/orig -> origin/gh/bdhirsh/668/orig 2025-08-26T20:39:59.8551004Z * [new branch] gh/benjaminglass1/100/base -> origin/gh/benjaminglass1/100/base 2025-08-26T20:39:59.8551671Z * [new branch] gh/benjaminglass1/100/head -> origin/gh/benjaminglass1/100/head 2025-08-26T20:39:59.8552231Z * [new branch] gh/benjaminglass1/100/orig -> origin/gh/benjaminglass1/100/orig 2025-08-26T20:39:59.8552790Z * [new branch] gh/benjaminglass1/101/base -> origin/gh/benjaminglass1/101/base 2025-08-26T20:39:59.8553432Z * [new branch] gh/benjaminglass1/101/head -> origin/gh/benjaminglass1/101/head 2025-08-26T20:39:59.8553990Z * [new branch] gh/benjaminglass1/101/orig -> origin/gh/benjaminglass1/101/orig 2025-08-26T20:39:59.8959434Z * [new branch] gh/benjaminglass1/102/base -> origin/gh/benjaminglass1/102/base 2025-08-26T20:39:59.8960039Z * [new branch] gh/benjaminglass1/102/head -> origin/gh/benjaminglass1/102/head 2025-08-26T20:39:59.8960614Z * [new branch] gh/benjaminglass1/102/orig -> origin/gh/benjaminglass1/102/orig 2025-08-26T20:39:59.8961172Z * [new branch] gh/benjaminglass1/103/base -> origin/gh/benjaminglass1/103/base 2025-08-26T20:39:59.8961734Z * [new branch] gh/benjaminglass1/103/head -> origin/gh/benjaminglass1/103/head 2025-08-26T20:39:59.8962283Z * [new branch] gh/benjaminglass1/103/orig -> origin/gh/benjaminglass1/103/orig 2025-08-26T20:39:59.8962849Z * [new branch] gh/benjaminglass1/79/base -> origin/gh/benjaminglass1/79/base 2025-08-26T20:39:59.8963469Z * [new branch] gh/benjaminglass1/79/head -> origin/gh/benjaminglass1/79/head 2025-08-26T20:39:59.8964024Z * [new branch] gh/benjaminglass1/79/orig -> origin/gh/benjaminglass1/79/orig 2025-08-26T20:39:59.8964582Z * [new branch] gh/benjaminglass1/86/base -> origin/gh/benjaminglass1/86/base 2025-08-26T20:39:59.8965136Z * [new branch] gh/benjaminglass1/86/head -> origin/gh/benjaminglass1/86/head 2025-08-26T20:39:59.8965692Z * [new branch] gh/benjaminglass1/86/orig -> origin/gh/benjaminglass1/86/orig 2025-08-26T20:39:59.8966249Z * [new branch] gh/benjaminglass1/89/base -> origin/gh/benjaminglass1/89/base 2025-08-26T20:39:59.8966867Z * [new branch] gh/benjaminglass1/89/head -> origin/gh/benjaminglass1/89/head 2025-08-26T20:39:59.8967422Z * [new branch] gh/benjaminglass1/89/orig -> origin/gh/benjaminglass1/89/orig 2025-08-26T20:39:59.8967970Z * [new branch] gh/benjaminglass1/91/base -> origin/gh/benjaminglass1/91/base 2025-08-26T20:39:59.8968515Z * [new branch] gh/benjaminglass1/91/head -> origin/gh/benjaminglass1/91/head 2025-08-26T20:39:59.8969076Z * [new branch] gh/benjaminglass1/91/orig -> origin/gh/benjaminglass1/91/orig 2025-08-26T20:39:59.8969622Z * [new branch] gh/benjaminglass1/93/base -> origin/gh/benjaminglass1/93/base 2025-08-26T20:39:59.8970188Z * [new branch] gh/benjaminglass1/93/head -> origin/gh/benjaminglass1/93/head 2025-08-26T20:39:59.8970727Z * [new branch] gh/benjaminglass1/93/orig -> origin/gh/benjaminglass1/93/orig 2025-08-26T20:39:59.8971278Z * [new branch] gh/benjaminglass1/95/base -> origin/gh/benjaminglass1/95/base 2025-08-26T20:39:59.8971832Z * [new branch] gh/benjaminglass1/95/head -> origin/gh/benjaminglass1/95/head 2025-08-26T20:39:59.8972844Z * [new branch] gh/benjaminglass1/95/orig -> origin/gh/benjaminglass1/95/orig 2025-08-26T20:39:59.8973407Z * [new branch] gh/benjaminglass1/97/base -> origin/gh/benjaminglass1/97/base 2025-08-26T20:39:59.8973953Z * [new branch] gh/benjaminglass1/97/head -> origin/gh/benjaminglass1/97/head 2025-08-26T20:39:59.8974504Z * [new branch] gh/benjaminglass1/97/orig -> origin/gh/benjaminglass1/97/orig 2025-08-26T20:39:59.8975153Z * [new branch] gh/benjaminglass1/98/base -> origin/gh/benjaminglass1/98/base 2025-08-26T20:39:59.8975705Z * [new branch] gh/benjaminglass1/98/head -> origin/gh/benjaminglass1/98/head 2025-08-26T20:39:59.8976260Z * [new branch] gh/benjaminglass1/98/orig -> origin/gh/benjaminglass1/98/orig 2025-08-26T20:39:59.8976805Z * [new branch] gh/benjaminglass1/99/base -> origin/gh/benjaminglass1/99/base 2025-08-26T20:39:59.8977361Z * [new branch] gh/benjaminglass1/99/head -> origin/gh/benjaminglass1/99/head 2025-08-26T20:39:59.8977919Z * [new branch] gh/benjaminglass1/99/orig -> origin/gh/benjaminglass1/99/orig 2025-08-26T20:39:59.8978451Z * [new branch] gh/bobrenjc93/514/base -> origin/gh/bobrenjc93/514/base 2025-08-26T20:39:59.8978968Z * [new branch] gh/bobrenjc93/514/head -> origin/gh/bobrenjc93/514/head 2025-08-26T20:39:59.8979471Z * [new branch] gh/bobrenjc93/514/orig -> origin/gh/bobrenjc93/514/orig 2025-08-26T20:39:59.8979986Z * [new branch] gh/bobrenjc93/521/base -> origin/gh/bobrenjc93/521/base 2025-08-26T20:39:59.8980498Z * [new branch] gh/bobrenjc93/521/head -> origin/gh/bobrenjc93/521/head 2025-08-26T20:39:59.8981004Z * [new branch] gh/bobrenjc93/521/orig -> origin/gh/bobrenjc93/521/orig 2025-08-26T20:39:59.8981618Z * [new branch] gh/bobrenjc93/522/base -> origin/gh/bobrenjc93/522/base 2025-08-26T20:39:59.8982144Z * [new branch] gh/bobrenjc93/522/head -> origin/gh/bobrenjc93/522/head 2025-08-26T20:39:59.8982654Z * [new branch] gh/bobrenjc93/522/orig -> origin/gh/bobrenjc93/522/orig 2025-08-26T20:39:59.8983160Z * [new branch] gh/bobrenjc93/525/base -> origin/gh/bobrenjc93/525/base 2025-08-26T20:39:59.8983660Z * [new branch] gh/bobrenjc93/525/head -> origin/gh/bobrenjc93/525/head 2025-08-26T20:39:59.9416519Z * [new branch] gh/bobrenjc93/525/orig -> origin/gh/bobrenjc93/525/orig 2025-08-26T20:39:59.9417075Z * [new branch] gh/bobrenjc93/526/base -> origin/gh/bobrenjc93/526/base 2025-08-26T20:39:59.9417593Z * [new branch] gh/bobrenjc93/526/head -> origin/gh/bobrenjc93/526/head 2025-08-26T20:39:59.9418113Z * [new branch] gh/bobrenjc93/526/orig -> origin/gh/bobrenjc93/526/orig 2025-08-26T20:39:59.9418618Z * [new branch] gh/bobrenjc93/527/base -> origin/gh/bobrenjc93/527/base 2025-08-26T20:39:59.9419133Z * [new branch] gh/bobrenjc93/527/head -> origin/gh/bobrenjc93/527/head 2025-08-26T20:39:59.9419713Z * [new branch] gh/bobrenjc93/527/orig -> origin/gh/bobrenjc93/527/orig 2025-08-26T20:39:59.9420268Z * [new branch] gh/bobrenjc93/528/base -> origin/gh/bobrenjc93/528/base 2025-08-26T20:39:59.9420840Z * [new branch] gh/bobrenjc93/528/head -> origin/gh/bobrenjc93/528/head 2025-08-26T20:39:59.9421346Z * [new branch] gh/bobrenjc93/528/orig -> origin/gh/bobrenjc93/528/orig 2025-08-26T20:39:59.9421853Z * [new branch] gh/bobrenjc93/529/base -> origin/gh/bobrenjc93/529/base 2025-08-26T20:39:59.9422437Z * [new branch] gh/bobrenjc93/529/head -> origin/gh/bobrenjc93/529/head 2025-08-26T20:39:59.9423360Z * [new branch] gh/bobrenjc93/529/orig -> origin/gh/bobrenjc93/529/orig 2025-08-26T20:39:59.9423877Z * [new branch] gh/bobrenjc93/535/base -> origin/gh/bobrenjc93/535/base 2025-08-26T20:39:59.9424382Z * [new branch] gh/bobrenjc93/535/head -> origin/gh/bobrenjc93/535/head 2025-08-26T20:39:59.9424901Z * [new branch] gh/bobrenjc93/535/orig -> origin/gh/bobrenjc93/535/orig 2025-08-26T20:39:59.9425423Z * [new branch] gh/bobrenjc93/537/base -> origin/gh/bobrenjc93/537/base 2025-08-26T20:39:59.9426077Z * [new branch] gh/bobrenjc93/537/head -> origin/gh/bobrenjc93/537/head 2025-08-26T20:39:59.9426643Z * [new branch] gh/bobrenjc93/537/orig -> origin/gh/bobrenjc93/537/orig 2025-08-26T20:39:59.9427143Z * [new branch] gh/bobrenjc93/538/base -> origin/gh/bobrenjc93/538/base 2025-08-26T20:39:59.9427656Z * [new branch] gh/bobrenjc93/538/head -> origin/gh/bobrenjc93/538/head 2025-08-26T20:39:59.9428168Z * [new branch] gh/bobrenjc93/538/orig -> origin/gh/bobrenjc93/538/orig 2025-08-26T20:39:59.9428671Z * [new branch] gh/bobrenjc93/539/base -> origin/gh/bobrenjc93/539/base 2025-08-26T20:39:59.9429178Z * [new branch] gh/bobrenjc93/539/head -> origin/gh/bobrenjc93/539/head 2025-08-26T20:39:59.9429679Z * [new branch] gh/bobrenjc93/539/orig -> origin/gh/bobrenjc93/539/orig 2025-08-26T20:39:59.9430193Z * [new branch] gh/bobrenjc93/540/base -> origin/gh/bobrenjc93/540/base 2025-08-26T20:39:59.9430780Z * [new branch] gh/bobrenjc93/540/head -> origin/gh/bobrenjc93/540/head 2025-08-26T20:39:59.9431281Z * [new branch] gh/bobrenjc93/540/orig -> origin/gh/bobrenjc93/540/orig 2025-08-26T20:39:59.9431793Z * [new branch] gh/bobrenjc93/541/base -> origin/gh/bobrenjc93/541/base 2025-08-26T20:39:59.9432343Z * [new branch] gh/bobrenjc93/541/head -> origin/gh/bobrenjc93/541/head 2025-08-26T20:39:59.9432906Z * [new branch] gh/bobrenjc93/541/orig -> origin/gh/bobrenjc93/541/orig 2025-08-26T20:39:59.9433413Z * [new branch] gh/bobrenjc93/542/base -> origin/gh/bobrenjc93/542/base 2025-08-26T20:39:59.9434006Z * [new branch] gh/bobrenjc93/542/head -> origin/gh/bobrenjc93/542/head 2025-08-26T20:39:59.9434605Z * [new branch] gh/bobrenjc93/542/orig -> origin/gh/bobrenjc93/542/orig 2025-08-26T20:39:59.9435110Z * [new branch] gh/bobrenjc93/543/base -> origin/gh/bobrenjc93/543/base 2025-08-26T20:39:59.9435611Z * [new branch] gh/bobrenjc93/543/head -> origin/gh/bobrenjc93/543/head 2025-08-26T20:39:59.9436168Z * [new branch] gh/bobrenjc93/543/orig -> origin/gh/bobrenjc93/543/orig 2025-08-26T20:39:59.9436680Z * [new branch] gh/bobrenjc93/544/base -> origin/gh/bobrenjc93/544/base 2025-08-26T20:39:59.9437193Z * [new branch] gh/bobrenjc93/544/head -> origin/gh/bobrenjc93/544/head 2025-08-26T20:39:59.9437692Z * [new branch] gh/bobrenjc93/544/orig -> origin/gh/bobrenjc93/544/orig 2025-08-26T20:39:59.9438240Z * [new branch] gh/bobrenjc93/545/base -> origin/gh/bobrenjc93/545/base 2025-08-26T20:39:59.9438792Z * [new branch] gh/bobrenjc93/545/head -> origin/gh/bobrenjc93/545/head 2025-08-26T20:39:59.9439306Z * [new branch] gh/bobrenjc93/545/orig -> origin/gh/bobrenjc93/545/orig 2025-08-26T20:39:59.9439829Z * [new branch] gh/bobrenjc93/546/base -> origin/gh/bobrenjc93/546/base 2025-08-26T20:39:59.9440332Z * [new branch] gh/bobrenjc93/546/head -> origin/gh/bobrenjc93/546/head 2025-08-26T20:39:59.9440833Z * [new branch] gh/bobrenjc93/546/orig -> origin/gh/bobrenjc93/546/orig 2025-08-26T20:39:59.9902600Z * [new branch] gh/bobrenjc93/547/base -> origin/gh/bobrenjc93/547/base 2025-08-26T20:39:59.9903659Z * [new branch] gh/bobrenjc93/547/head -> origin/gh/bobrenjc93/547/head 2025-08-26T20:39:59.9904298Z * [new branch] gh/bobrenjc93/547/orig -> origin/gh/bobrenjc93/547/orig 2025-08-26T20:39:59.9904854Z * [new branch] gh/bobrenjc93/548/base -> origin/gh/bobrenjc93/548/base 2025-08-26T20:39:59.9905370Z * [new branch] gh/bobrenjc93/548/head -> origin/gh/bobrenjc93/548/head 2025-08-26T20:39:59.9906000Z * [new branch] gh/bobrenjc93/548/orig -> origin/gh/bobrenjc93/548/orig 2025-08-26T20:39:59.9906603Z * [new branch] gh/bobrenjc93/549/base -> origin/gh/bobrenjc93/549/base 2025-08-26T20:39:59.9907114Z * [new branch] gh/bobrenjc93/549/head -> origin/gh/bobrenjc93/549/head 2025-08-26T20:39:59.9907668Z * [new branch] gh/bobrenjc93/549/orig -> origin/gh/bobrenjc93/549/orig 2025-08-26T20:39:59.9908189Z * [new branch] gh/bobrenjc93/550/base -> origin/gh/bobrenjc93/550/base 2025-08-26T20:39:59.9908699Z * [new branch] gh/bobrenjc93/550/head -> origin/gh/bobrenjc93/550/head 2025-08-26T20:39:59.9909202Z * [new branch] gh/bobrenjc93/550/orig -> origin/gh/bobrenjc93/550/orig 2025-08-26T20:39:59.9909717Z * [new branch] gh/bobrenjc93/551/base -> origin/gh/bobrenjc93/551/base 2025-08-26T20:39:59.9910266Z * [new branch] gh/bobrenjc93/551/head -> origin/gh/bobrenjc93/551/head 2025-08-26T20:39:59.9910830Z * [new branch] gh/bobrenjc93/551/orig -> origin/gh/bobrenjc93/551/orig 2025-08-26T20:39:59.9911366Z * [new branch] gh/briancoutinho/2/base -> origin/gh/briancoutinho/2/base 2025-08-26T20:39:59.9911906Z * [new branch] gh/briancoutinho/2/head -> origin/gh/briancoutinho/2/head 2025-08-26T20:39:59.9912409Z * [new branch] gh/c00w/23/base -> origin/gh/c00w/23/base 2025-08-26T20:39:59.9912867Z * [new branch] gh/c00w/23/head -> origin/gh/c00w/23/head 2025-08-26T20:39:59.9913311Z * [new branch] gh/c00w/38/base -> origin/gh/c00w/38/base 2025-08-26T20:39:59.9913747Z * [new branch] gh/c00w/38/head -> origin/gh/c00w/38/head 2025-08-26T20:39:59.9914189Z * [new branch] gh/c00w/38/orig -> origin/gh/c00w/38/orig 2025-08-26T20:39:59.9914635Z * [new branch] gh/c00w/48/base -> origin/gh/c00w/48/base 2025-08-26T20:39:59.9915074Z * [new branch] gh/c00w/48/head -> origin/gh/c00w/48/head 2025-08-26T20:39:59.9915517Z * [new branch] gh/c00w/48/orig -> origin/gh/c00w/48/orig 2025-08-26T20:39:59.9915958Z * [new branch] gh/c00w/51/base -> origin/gh/c00w/51/base 2025-08-26T20:39:59.9916401Z * [new branch] gh/c00w/51/head -> origin/gh/c00w/51/head 2025-08-26T20:39:59.9916850Z * [new branch] gh/c00w/51/orig -> origin/gh/c00w/51/orig 2025-08-26T20:39:59.9917355Z * [new branch] gh/c00w/52/base -> origin/gh/c00w/52/base 2025-08-26T20:39:59.9917813Z * [new branch] gh/c00w/52/head -> origin/gh/c00w/52/head 2025-08-26T20:39:59.9918257Z * [new branch] gh/c00w/52/orig -> origin/gh/c00w/52/orig 2025-08-26T20:39:59.9918710Z * [new branch] gh/c00w/53/base -> origin/gh/c00w/53/base 2025-08-26T20:39:59.9919154Z * [new branch] gh/c00w/53/head -> origin/gh/c00w/53/head 2025-08-26T20:39:59.9919601Z * [new branch] gh/c00w/53/orig -> origin/gh/c00w/53/orig 2025-08-26T20:39:59.9920053Z * [new branch] gh/c00w/54/base -> origin/gh/c00w/54/base 2025-08-26T20:39:59.9920495Z * [new branch] gh/c00w/54/head -> origin/gh/c00w/54/head 2025-08-26T20:39:59.9921432Z * [new branch] gh/c00w/54/orig -> origin/gh/c00w/54/orig 2025-08-26T20:39:59.9921867Z * [new branch] gh/c00w/55/base -> origin/gh/c00w/55/base 2025-08-26T20:39:59.9922317Z * [new branch] gh/c00w/55/head -> origin/gh/c00w/55/head 2025-08-26T20:39:59.9922764Z * [new branch] gh/c00w/55/orig -> origin/gh/c00w/55/orig 2025-08-26T20:39:59.9923303Z * [new branch] gh/chenmillie/1/base -> origin/gh/chenmillie/1/base 2025-08-26T20:39:59.9923925Z * [new branch] gh/chenmillie/1/head -> origin/gh/chenmillie/1/head 2025-08-26T20:39:59.9924428Z * [new branch] gh/chenmillie/1/orig -> origin/gh/chenmillie/1/orig 2025-08-26T20:39:59.9924929Z * [new branch] gh/clee2000/1/base -> origin/gh/clee2000/1/base 2025-08-26T20:39:59.9925446Z * [new branch] gh/clee2000/1/head -> origin/gh/clee2000/1/head 2025-08-26T20:39:59.9925914Z * [new branch] gh/clee2000/1/orig -> origin/gh/clee2000/1/orig 2025-08-26T20:39:59.9926428Z * [new branch] gh/coconutruben/1/base -> origin/gh/coconutruben/1/base 2025-08-26T20:40:00.0350982Z * [new branch] gh/coconutruben/1/head -> origin/gh/coconutruben/1/head 2025-08-26T20:40:00.0351611Z * [new branch] gh/coconutruben/11/base -> origin/gh/coconutruben/11/base 2025-08-26T20:40:00.0352263Z * [new branch] gh/coconutruben/11/head -> origin/gh/coconutruben/11/head 2025-08-26T20:40:00.0352895Z * [new branch] gh/coconutruben/11/orig -> origin/gh/coconutruben/11/orig 2025-08-26T20:40:00.0353488Z * [new branch] gh/coconutruben/12/base -> origin/gh/coconutruben/12/base 2025-08-26T20:40:00.0354106Z * [new branch] gh/coconutruben/12/head -> origin/gh/coconutruben/12/head 2025-08-26T20:40:00.0354721Z * [new branch] gh/coconutruben/12/orig -> origin/gh/coconutruben/12/orig 2025-08-26T20:40:00.0355331Z * [new branch] gh/coconutruben/13/base -> origin/gh/coconutruben/13/base 2025-08-26T20:40:00.0356026Z * [new branch] gh/coconutruben/13/head -> origin/gh/coconutruben/13/head 2025-08-26T20:40:00.0356613Z * [new branch] gh/coconutruben/13/orig -> origin/gh/coconutruben/13/orig 2025-08-26T20:40:00.0357227Z * [new branch] gh/coconutruben/14/base -> origin/gh/coconutruben/14/base 2025-08-26T20:40:00.0357808Z * [new branch] gh/coconutruben/14/head -> origin/gh/coconutruben/14/head 2025-08-26T20:40:00.0358431Z * [new branch] gh/coconutruben/14/orig -> origin/gh/coconutruben/14/orig 2025-08-26T20:40:00.0359035Z * [new branch] gh/coconutruben/15/base -> origin/gh/coconutruben/15/base 2025-08-26T20:40:00.0359721Z * [new branch] gh/coconutruben/15/head -> origin/gh/coconutruben/15/head 2025-08-26T20:40:00.0360350Z * [new branch] gh/coconutruben/15/orig -> origin/gh/coconutruben/15/orig 2025-08-26T20:40:00.0360947Z * [new branch] gh/coconutruben/16/base -> origin/gh/coconutruben/16/base 2025-08-26T20:40:00.0361581Z * [new branch] gh/coconutruben/16/head -> origin/gh/coconutruben/16/head 2025-08-26T20:40:00.0362191Z * [new branch] gh/coconutruben/16/orig -> origin/gh/coconutruben/16/orig 2025-08-26T20:40:00.0362781Z * [new branch] gh/coconutruben/17/base -> origin/gh/coconutruben/17/base 2025-08-26T20:40:00.0363534Z * [new branch] gh/coconutruben/17/head -> origin/gh/coconutruben/17/head 2025-08-26T20:40:00.0364189Z * [new branch] gh/coconutruben/17/orig -> origin/gh/coconutruben/17/orig 2025-08-26T20:40:00.0364784Z * [new branch] gh/coconutruben/18/base -> origin/gh/coconutruben/18/base 2025-08-26T20:40:00.0365989Z * [new branch] gh/coconutruben/18/head -> origin/gh/coconutruben/18/head 2025-08-26T20:40:00.0366623Z * [new branch] gh/coconutruben/18/orig -> origin/gh/coconutruben/18/orig 2025-08-26T20:40:00.0367224Z * [new branch] gh/coconutruben/19/base -> origin/gh/coconutruben/19/base 2025-08-26T20:40:00.0367822Z * [new branch] gh/coconutruben/19/head -> origin/gh/coconutruben/19/head 2025-08-26T20:40:00.0368452Z * [new branch] gh/coconutruben/19/orig -> origin/gh/coconutruben/19/orig 2025-08-26T20:40:00.0369161Z * [new branch] gh/coconutruben/20/base -> origin/gh/coconutruben/20/base 2025-08-26T20:40:00.0369756Z * [new branch] gh/coconutruben/20/head -> origin/gh/coconutruben/20/head 2025-08-26T20:40:00.0370366Z * [new branch] gh/coconutruben/20/orig -> origin/gh/coconutruben/20/orig 2025-08-26T20:40:00.0370955Z * [new branch] gh/coconutruben/21/base -> origin/gh/coconutruben/21/base 2025-08-26T20:40:00.0371589Z * [new branch] gh/coconutruben/21/head -> origin/gh/coconutruben/21/head 2025-08-26T20:40:00.0372166Z * [new branch] gh/coconutruben/21/orig -> origin/gh/coconutruben/21/orig 2025-08-26T20:40:00.0372800Z * [new branch] gh/coconutruben/22/base -> origin/gh/coconutruben/22/base 2025-08-26T20:40:00.0373415Z * [new branch] gh/coconutruben/22/head -> origin/gh/coconutruben/22/head 2025-08-26T20:40:00.0373961Z * [new branch] gh/coconutruben/22/orig -> origin/gh/coconutruben/22/orig 2025-08-26T20:40:00.0374496Z * [new branch] gh/coconutruben/23/base -> origin/gh/coconutruben/23/base 2025-08-26T20:40:00.0375038Z * [new branch] gh/coconutruben/23/head -> origin/gh/coconutruben/23/head 2025-08-26T20:40:00.0375582Z * [new branch] gh/coconutruben/23/orig -> origin/gh/coconutruben/23/orig 2025-08-26T20:40:00.0376121Z * [new branch] gh/coconutruben/24/base -> origin/gh/coconutruben/24/base 2025-08-26T20:40:00.0376666Z * [new branch] gh/coconutruben/24/head -> origin/gh/coconutruben/24/head 2025-08-26T20:40:00.0377196Z * [new branch] gh/coconutruben/24/orig -> origin/gh/coconutruben/24/orig 2025-08-26T20:40:00.0377747Z * [new branch] gh/coconutruben/25/base -> origin/gh/coconutruben/25/base 2025-08-26T20:40:00.0378286Z * [new branch] gh/coconutruben/25/head -> origin/gh/coconutruben/25/head 2025-08-26T20:40:00.0798235Z * [new branch] gh/coconutruben/25/orig -> origin/gh/coconutruben/25/orig 2025-08-26T20:40:00.0798849Z * [new branch] gh/coconutruben/26/base -> origin/gh/coconutruben/26/base 2025-08-26T20:40:00.0799400Z * [new branch] gh/coconutruben/26/head -> origin/gh/coconutruben/26/head 2025-08-26T20:40:00.0800093Z * [new branch] gh/coconutruben/26/orig -> origin/gh/coconutruben/26/orig 2025-08-26T20:40:00.0800635Z * [new branch] gh/coconutruben/27/base -> origin/gh/coconutruben/27/base 2025-08-26T20:40:00.0801161Z * [new branch] gh/coconutruben/27/head -> origin/gh/coconutruben/27/head 2025-08-26T20:40:00.0801688Z * [new branch] gh/coconutruben/27/orig -> origin/gh/coconutruben/27/orig 2025-08-26T20:40:00.0802222Z * [new branch] gh/coconutruben/28/base -> origin/gh/coconutruben/28/base 2025-08-26T20:40:00.0802757Z * [new branch] gh/coconutruben/28/head -> origin/gh/coconutruben/28/head 2025-08-26T20:40:00.0803341Z * [new branch] gh/coconutruben/28/orig -> origin/gh/coconutruben/28/orig 2025-08-26T20:40:00.0803865Z * [new branch] gh/coconutruben/29/base -> origin/gh/coconutruben/29/base 2025-08-26T20:40:00.0804412Z * [new branch] gh/coconutruben/29/head -> origin/gh/coconutruben/29/head 2025-08-26T20:40:00.0805423Z * [new branch] gh/coconutruben/29/orig -> origin/gh/coconutruben/29/orig 2025-08-26T20:40:00.0805981Z * [new branch] gh/coconutruben/30/base -> origin/gh/coconutruben/30/base 2025-08-26T20:40:00.0806526Z * [new branch] gh/coconutruben/30/head -> origin/gh/coconutruben/30/head 2025-08-26T20:40:00.0807057Z * [new branch] gh/coconutruben/30/orig -> origin/gh/coconutruben/30/orig 2025-08-26T20:40:00.0807605Z * [new branch] gh/coconutruben/31/base -> origin/gh/coconutruben/31/base 2025-08-26T20:40:00.0808239Z * [new branch] gh/coconutruben/31/head -> origin/gh/coconutruben/31/head 2025-08-26T20:40:00.0808790Z * [new branch] gh/coconutruben/31/orig -> origin/gh/coconutruben/31/orig 2025-08-26T20:40:00.0809340Z * [new branch] gh/coconutruben/32/base -> origin/gh/coconutruben/32/base 2025-08-26T20:40:00.0809877Z * [new branch] gh/coconutruben/32/head -> origin/gh/coconutruben/32/head 2025-08-26T20:40:00.0810427Z * [new branch] gh/coconutruben/32/orig -> origin/gh/coconutruben/32/orig 2025-08-26T20:40:00.0810961Z * [new branch] gh/coconutruben/33/base -> origin/gh/coconutruben/33/base 2025-08-26T20:40:00.0811571Z * [new branch] gh/coconutruben/33/head -> origin/gh/coconutruben/33/head 2025-08-26T20:40:00.0812171Z * [new branch] gh/coconutruben/33/orig -> origin/gh/coconutruben/33/orig 2025-08-26T20:40:00.0812843Z * [new branch] gh/coconutruben/34/base -> origin/gh/coconutruben/34/base 2025-08-26T20:40:00.0813395Z * [new branch] gh/coconutruben/34/head -> origin/gh/coconutruben/34/head 2025-08-26T20:40:00.0813926Z * [new branch] gh/coconutruben/34/orig -> origin/gh/coconutruben/34/orig 2025-08-26T20:40:00.0814473Z * [new branch] gh/coconutruben/35/base -> origin/gh/coconutruben/35/base 2025-08-26T20:40:00.0815029Z * [new branch] gh/coconutruben/35/head -> origin/gh/coconutruben/35/head 2025-08-26T20:40:00.0815557Z * [new branch] gh/coconutruben/35/orig -> origin/gh/coconutruben/35/orig 2025-08-26T20:40:00.0816095Z * [new branch] gh/coconutruben/36/base -> origin/gh/coconutruben/36/base 2025-08-26T20:40:00.0816630Z * [new branch] gh/coconutruben/36/head -> origin/gh/coconutruben/36/head 2025-08-26T20:40:00.0817170Z * [new branch] gh/coconutruben/36/orig -> origin/gh/coconutruben/36/orig 2025-08-26T20:40:00.0817722Z * [new branch] gh/coconutruben/37/base -> origin/gh/coconutruben/37/base 2025-08-26T20:40:00.0818262Z * [new branch] gh/coconutruben/37/head -> origin/gh/coconutruben/37/head 2025-08-26T20:40:00.0818812Z * [new branch] gh/coconutruben/37/orig -> origin/gh/coconutruben/37/orig 2025-08-26T20:40:00.0819346Z * [new branch] gh/coconutruben/38/base -> origin/gh/coconutruben/38/base 2025-08-26T20:40:00.0819948Z * [new branch] gh/coconutruben/38/head -> origin/gh/coconutruben/38/head 2025-08-26T20:40:00.0820499Z * [new branch] gh/coconutruben/38/orig -> origin/gh/coconutruben/38/orig 2025-08-26T20:40:00.0821026Z * [new branch] gh/coconutruben/39/base -> origin/gh/coconutruben/39/base 2025-08-26T20:40:00.0821564Z * [new branch] gh/coconutruben/39/head -> origin/gh/coconutruben/39/head 2025-08-26T20:40:00.0833376Z * [new branch] gh/coconutruben/39/orig -> origin/gh/coconutruben/39/orig 2025-08-26T20:40:00.0833957Z * [new branch] gh/coconutruben/40/base -> origin/gh/coconutruben/40/base 2025-08-26T20:40:00.0834573Z * [new branch] gh/coconutruben/40/head -> origin/gh/coconutruben/40/head 2025-08-26T20:40:00.1250505Z * [new branch] gh/coconutruben/40/orig -> origin/gh/coconutruben/40/orig 2025-08-26T20:40:00.1251731Z * [new branch] gh/coconutruben/41/base -> origin/gh/coconutruben/41/base 2025-08-26T20:40:00.1252281Z * [new branch] gh/coconutruben/41/head -> origin/gh/coconutruben/41/head 2025-08-26T20:40:00.1252808Z * [new branch] gh/coconutruben/41/orig -> origin/gh/coconutruben/41/orig 2025-08-26T20:40:00.1253347Z * [new branch] gh/coconutruben/42/base -> origin/gh/coconutruben/42/base 2025-08-26T20:40:00.1253884Z * [new branch] gh/coconutruben/42/head -> origin/gh/coconutruben/42/head 2025-08-26T20:40:00.1254537Z * [new branch] gh/coconutruben/42/orig -> origin/gh/coconutruben/42/orig 2025-08-26T20:40:00.1255151Z * [new branch] gh/coconutruben/43/base -> origin/gh/coconutruben/43/base 2025-08-26T20:40:00.1255727Z * [new branch] gh/coconutruben/43/head -> origin/gh/coconutruben/43/head 2025-08-26T20:40:00.1256318Z * [new branch] gh/coconutruben/43/orig -> origin/gh/coconutruben/43/orig 2025-08-26T20:40:00.1256848Z * [new branch] gh/coconutruben/44/base -> origin/gh/coconutruben/44/base 2025-08-26T20:40:00.1257379Z * [new branch] gh/coconutruben/44/head -> origin/gh/coconutruben/44/head 2025-08-26T20:40:00.1257908Z * [new branch] gh/coconutruben/44/orig -> origin/gh/coconutruben/44/orig 2025-08-26T20:40:00.1258430Z * [new branch] gh/coconutruben/45/base -> origin/gh/coconutruben/45/base 2025-08-26T20:40:00.1258969Z * [new branch] gh/coconutruben/45/head -> origin/gh/coconutruben/45/head 2025-08-26T20:40:00.1259493Z * [new branch] gh/coconutruben/45/orig -> origin/gh/coconutruben/45/orig 2025-08-26T20:40:00.1260027Z * [new branch] gh/coconutruben/46/base -> origin/gh/coconutruben/46/base 2025-08-26T20:40:00.1260653Z * [new branch] gh/coconutruben/46/head -> origin/gh/coconutruben/46/head 2025-08-26T20:40:00.1261236Z * [new branch] gh/coconutruben/46/orig -> origin/gh/coconutruben/46/orig 2025-08-26T20:40:00.1261821Z * [new branch] gh/coconutruben/47/base -> origin/gh/coconutruben/47/base 2025-08-26T20:40:00.1262434Z * [new branch] gh/coconutruben/47/head -> origin/gh/coconutruben/47/head 2025-08-26T20:40:00.1263023Z * [new branch] gh/coconutruben/47/orig -> origin/gh/coconutruben/47/orig 2025-08-26T20:40:00.1263646Z * [new branch] gh/coconutruben/48/base -> origin/gh/coconutruben/48/base 2025-08-26T20:40:00.1264263Z * [new branch] gh/coconutruben/48/head -> origin/gh/coconutruben/48/head 2025-08-26T20:40:00.1264839Z * [new branch] gh/coconutruben/48/orig -> origin/gh/coconutruben/48/orig 2025-08-26T20:40:00.1265441Z * [new branch] gh/coconutruben/49/base -> origin/gh/coconutruben/49/base 2025-08-26T20:40:00.1266080Z * [new branch] gh/coconutruben/49/head -> origin/gh/coconutruben/49/head 2025-08-26T20:40:00.1266703Z * [new branch] gh/coconutruben/49/orig -> origin/gh/coconutruben/49/orig 2025-08-26T20:40:00.1267276Z * [new branch] gh/coconutruben/50/base -> origin/gh/coconutruben/50/base 2025-08-26T20:40:00.1267887Z * [new branch] gh/coconutruben/50/head -> origin/gh/coconutruben/50/head 2025-08-26T20:40:00.1268521Z * [new branch] gh/coconutruben/50/orig -> origin/gh/coconutruben/50/orig 2025-08-26T20:40:00.1269105Z * [new branch] gh/coconutruben/51/base -> origin/gh/coconutruben/51/base 2025-08-26T20:40:00.1269723Z * [new branch] gh/coconutruben/51/head -> origin/gh/coconutruben/51/head 2025-08-26T20:40:00.1270292Z * [new branch] gh/coconutruben/51/orig -> origin/gh/coconutruben/51/orig 2025-08-26T20:40:00.1270912Z * [new branch] gh/coconutruben/52/base -> origin/gh/coconutruben/52/base 2025-08-26T20:40:00.1272551Z * [new branch] gh/coconutruben/52/head -> origin/gh/coconutruben/52/head 2025-08-26T20:40:00.1273198Z * [new branch] gh/coconutruben/52/orig -> origin/gh/coconutruben/52/orig 2025-08-26T20:40:00.1273792Z * [new branch] gh/coconutruben/53/base -> origin/gh/coconutruben/53/base 2025-08-26T20:40:00.1274414Z * [new branch] gh/coconutruben/53/head -> origin/gh/coconutruben/53/head 2025-08-26T20:40:00.1275137Z * [new branch] gh/coconutruben/53/orig -> origin/gh/coconutruben/53/orig 2025-08-26T20:40:00.1275754Z * [new branch] gh/coconutruben/54/base -> origin/gh/coconutruben/54/base 2025-08-26T20:40:00.1276349Z * [new branch] gh/coconutruben/54/head -> origin/gh/coconutruben/54/head 2025-08-26T20:40:00.1276972Z * [new branch] gh/coconutruben/54/orig -> origin/gh/coconutruben/54/orig 2025-08-26T20:40:00.1277547Z * [new branch] gh/coconutruben/55/base -> origin/gh/coconutruben/55/base 2025-08-26T20:40:00.1278167Z * [new branch] gh/coconutruben/55/head -> origin/gh/coconutruben/55/head 2025-08-26T20:40:00.1712476Z * [new branch] gh/coconutruben/55/orig -> origin/gh/coconutruben/55/orig 2025-08-26T20:40:00.1713090Z * [new branch] gh/codingwithsurya/12/base -> origin/gh/codingwithsurya/12/base 2025-08-26T20:40:00.1713681Z * [new branch] gh/codingwithsurya/12/head -> origin/gh/codingwithsurya/12/head 2025-08-26T20:40:00.1714283Z * [new branch] gh/codingwithsurya/12/orig -> origin/gh/codingwithsurya/12/orig 2025-08-26T20:40:00.1714852Z * [new branch] gh/codingwithsurya/13/base -> origin/gh/codingwithsurya/13/base 2025-08-26T20:40:00.1715408Z * [new branch] gh/codingwithsurya/13/head -> origin/gh/codingwithsurya/13/head 2025-08-26T20:40:00.1715977Z * [new branch] gh/codingwithsurya/13/orig -> origin/gh/codingwithsurya/13/orig 2025-08-26T20:40:00.1716562Z * [new branch] gh/codingwithsurya/14/base -> origin/gh/codingwithsurya/14/base 2025-08-26T20:40:00.1717178Z * [new branch] gh/codingwithsurya/14/head -> origin/gh/codingwithsurya/14/head 2025-08-26T20:40:00.1717799Z * [new branch] gh/codingwithsurya/14/orig -> origin/gh/codingwithsurya/14/orig 2025-08-26T20:40:00.1718361Z * [new branch] gh/codingwithsurya/15/base -> origin/gh/codingwithsurya/15/base 2025-08-26T20:40:00.1718948Z * [new branch] gh/codingwithsurya/15/head -> origin/gh/codingwithsurya/15/head 2025-08-26T20:40:00.1719523Z * [new branch] gh/codingwithsurya/15/orig -> origin/gh/codingwithsurya/15/orig 2025-08-26T20:40:00.1720087Z * [new branch] gh/codingwithsurya/16/base -> origin/gh/codingwithsurya/16/base 2025-08-26T20:40:00.1720652Z * [new branch] gh/codingwithsurya/16/head -> origin/gh/codingwithsurya/16/head 2025-08-26T20:40:00.1721226Z * [new branch] gh/codingwithsurya/16/orig -> origin/gh/codingwithsurya/16/orig 2025-08-26T20:40:00.1721815Z * [new branch] gh/codingwithsurya/17/base -> origin/gh/codingwithsurya/17/base 2025-08-26T20:40:00.1722390Z * [new branch] gh/codingwithsurya/17/head -> origin/gh/codingwithsurya/17/head 2025-08-26T20:40:00.1722995Z * [new branch] gh/codingwithsurya/17/orig -> origin/gh/codingwithsurya/17/orig 2025-08-26T20:40:00.1723671Z * [new branch] gh/codingwithsurya/18/base -> origin/gh/codingwithsurya/18/base 2025-08-26T20:40:00.1724246Z * [new branch] gh/codingwithsurya/18/head -> origin/gh/codingwithsurya/18/head 2025-08-26T20:40:00.1724820Z * [new branch] gh/codingwithsurya/18/orig -> origin/gh/codingwithsurya/18/orig 2025-08-26T20:40:00.1725388Z * [new branch] gh/codingwithsurya/19/base -> origin/gh/codingwithsurya/19/base 2025-08-26T20:40:00.1726641Z * [new branch] gh/codingwithsurya/19/head -> origin/gh/codingwithsurya/19/head 2025-08-26T20:40:00.1727312Z * [new branch] gh/codingwithsurya/19/orig -> origin/gh/codingwithsurya/19/orig 2025-08-26T20:40:00.1727875Z * [new branch] gh/codingwithsurya/20/base -> origin/gh/codingwithsurya/20/base 2025-08-26T20:40:00.1728459Z * [new branch] gh/codingwithsurya/20/head -> origin/gh/codingwithsurya/20/head 2025-08-26T20:40:00.1729038Z * [new branch] gh/codingwithsurya/20/orig -> origin/gh/codingwithsurya/20/orig 2025-08-26T20:40:00.1729761Z * [new branch] gh/codingwithsurya/21/base -> origin/gh/codingwithsurya/21/base 2025-08-26T20:40:00.1730384Z * [new branch] gh/codingwithsurya/21/head -> origin/gh/codingwithsurya/21/head 2025-08-26T20:40:00.1730947Z * [new branch] gh/codingwithsurya/21/orig -> origin/gh/codingwithsurya/21/orig 2025-08-26T20:40:00.1731513Z * [new branch] gh/colinchan15/1/base -> origin/gh/colinchan15/1/base 2025-08-26T20:40:00.1732034Z * [new branch] gh/colinchan15/1/head -> origin/gh/colinchan15/1/head 2025-08-26T20:40:00.1732544Z * [new branch] gh/colinchan15/2/base -> origin/gh/colinchan15/2/base 2025-08-26T20:40:00.1733063Z * [new branch] gh/colinchan15/2/head -> origin/gh/colinchan15/2/head 2025-08-26T20:40:00.1733563Z * [new branch] gh/colinchan15/3/base -> origin/gh/colinchan15/3/base 2025-08-26T20:40:00.1734078Z * [new branch] gh/colinchan15/3/head -> origin/gh/colinchan15/3/head 2025-08-26T20:40:00.1734593Z * [new branch] gh/colinchan15/4/base -> origin/gh/colinchan15/4/base 2025-08-26T20:40:00.1735098Z * [new branch] gh/colinchan15/4/head -> origin/gh/colinchan15/4/head 2025-08-26T20:40:00.1735652Z * [new branch] gh/colinchan15/5/base -> origin/gh/colinchan15/5/base 2025-08-26T20:40:00.1736198Z * [new branch] gh/colinchan15/5/head -> origin/gh/colinchan15/5/head 2025-08-26T20:40:00.1736715Z * [new branch] gh/colinchan15/6/base -> origin/gh/colinchan15/6/base 2025-08-26T20:40:00.1737214Z * [new branch] gh/colinchan15/6/head -> origin/gh/colinchan15/6/head 2025-08-26T20:40:00.1737741Z * [new branch] gh/davidberard98/382/base -> origin/gh/davidberard98/382/base 2025-08-26T20:40:00.1738292Z * [new branch] gh/davidberard98/382/head -> origin/gh/davidberard98/382/head 2025-08-26T20:40:00.2161951Z * [new branch] gh/davidberard98/382/orig -> origin/gh/davidberard98/382/orig 2025-08-26T20:40:00.2162550Z * [new branch] gh/davidberard98/386/base -> origin/gh/davidberard98/386/base 2025-08-26T20:40:00.2163180Z * [new branch] gh/davidberard98/386/head -> origin/gh/davidberard98/386/head 2025-08-26T20:40:00.2163742Z * [new branch] gh/davidberard98/386/orig -> origin/gh/davidberard98/386/orig 2025-08-26T20:40:00.2164287Z * [new branch] gh/davidberard98/391/base -> origin/gh/davidberard98/391/base 2025-08-26T20:40:00.2164894Z * [new branch] gh/davidberard98/391/head -> origin/gh/davidberard98/391/head 2025-08-26T20:40:00.2165443Z * [new branch] gh/davidberard98/391/orig -> origin/gh/davidberard98/391/orig 2025-08-26T20:40:00.2166078Z * [new branch] gh/davidberard98/392/base -> origin/gh/davidberard98/392/base 2025-08-26T20:40:00.2166713Z * [new branch] gh/davidberard98/392/head -> origin/gh/davidberard98/392/head 2025-08-26T20:40:00.2167307Z * [new branch] gh/davidberard98/392/orig -> origin/gh/davidberard98/392/orig 2025-08-26T20:40:00.2167953Z * [new branch] gh/davidberard98/393/base -> origin/gh/davidberard98/393/base 2025-08-26T20:40:00.2168505Z * [new branch] gh/davidberard98/393/head -> origin/gh/davidberard98/393/head 2025-08-26T20:40:00.2169514Z * [new branch] gh/davidberard98/393/orig -> origin/gh/davidberard98/393/orig 2025-08-26T20:40:00.2170055Z * [new branch] gh/davidberard98/394/base -> origin/gh/davidberard98/394/base 2025-08-26T20:40:00.2170598Z * [new branch] gh/davidberard98/394/head -> origin/gh/davidberard98/394/head 2025-08-26T20:40:00.2171139Z * [new branch] gh/davidberard98/394/orig -> origin/gh/davidberard98/394/orig 2025-08-26T20:40:00.2171790Z * [new branch] gh/davidberard98/395/base -> origin/gh/davidberard98/395/base 2025-08-26T20:40:00.2172336Z * [new branch] gh/davidberard98/395/head -> origin/gh/davidberard98/395/head 2025-08-26T20:40:00.2173028Z * [new branch] gh/davidberard98/395/orig -> origin/gh/davidberard98/395/orig 2025-08-26T20:40:00.2173622Z * [new branch] gh/davidberard98/396/base -> origin/gh/davidberard98/396/base 2025-08-26T20:40:00.2174172Z * [new branch] gh/davidberard98/396/head -> origin/gh/davidberard98/396/head 2025-08-26T20:40:00.2174723Z * [new branch] gh/davidberard98/396/orig -> origin/gh/davidberard98/396/orig 2025-08-26T20:40:00.2175299Z * [new branch] gh/davidberard98/397/base -> origin/gh/davidberard98/397/base 2025-08-26T20:40:00.2175838Z * [new branch] gh/davidberard98/397/head -> origin/gh/davidberard98/397/head 2025-08-26T20:40:00.2176390Z * [new branch] gh/davidberard98/397/orig -> origin/gh/davidberard98/397/orig 2025-08-26T20:40:00.2176937Z * [new branch] gh/davidberard98/398/base -> origin/gh/davidberard98/398/base 2025-08-26T20:40:00.2177489Z * [new branch] gh/davidberard98/398/head -> origin/gh/davidberard98/398/head 2025-08-26T20:40:00.2178047Z * [new branch] gh/davidberard98/398/orig -> origin/gh/davidberard98/398/orig 2025-08-26T20:40:00.2178592Z * [new branch] gh/davidberard98/399/base -> origin/gh/davidberard98/399/base 2025-08-26T20:40:00.2179188Z * [new branch] gh/davidberard98/399/head -> origin/gh/davidberard98/399/head 2025-08-26T20:40:00.2179774Z * [new branch] gh/davidberard98/399/orig -> origin/gh/davidberard98/399/orig 2025-08-26T20:40:00.2180321Z * [new branch] gh/davidberard98/400/base -> origin/gh/davidberard98/400/base 2025-08-26T20:40:00.2180865Z * [new branch] gh/davidberard98/400/head -> origin/gh/davidberard98/400/head 2025-08-26T20:40:00.2181408Z * [new branch] gh/davidberard98/400/orig -> origin/gh/davidberard98/400/orig 2025-08-26T20:40:00.2181951Z * [new branch] gh/davidberard98/401/base -> origin/gh/davidberard98/401/base 2025-08-26T20:40:00.2182484Z * [new branch] gh/davidberard98/401/head -> origin/gh/davidberard98/401/head 2025-08-26T20:40:00.2183031Z * [new branch] gh/davidberard98/401/orig -> origin/gh/davidberard98/401/orig 2025-08-26T20:40:00.2183570Z * [new branch] gh/davidberard98/402/base -> origin/gh/davidberard98/402/base 2025-08-26T20:40:00.2184113Z * [new branch] gh/davidberard98/402/head -> origin/gh/davidberard98/402/head 2025-08-26T20:40:00.2184655Z * [new branch] gh/davidberard98/402/orig -> origin/gh/davidberard98/402/orig 2025-08-26T20:40:00.2185232Z * [new branch] gh/davidberard98/403/base -> origin/gh/davidberard98/403/base 2025-08-26T20:40:00.2185830Z * [new branch] gh/davidberard98/403/head -> origin/gh/davidberard98/403/head 2025-08-26T20:40:00.2186369Z * [new branch] gh/davidberard98/403/orig -> origin/gh/davidberard98/403/orig 2025-08-26T20:40:00.2186906Z * [new branch] gh/desertfire/589/base -> origin/gh/desertfire/589/base 2025-08-26T20:40:00.2634911Z * [new branch] gh/desertfire/589/head -> origin/gh/desertfire/589/head 2025-08-26T20:40:00.2636210Z * [new branch] gh/desertfire/589/orig -> origin/gh/desertfire/589/orig 2025-08-26T20:40:00.2636792Z * [new branch] gh/desertfire/591/base -> origin/gh/desertfire/591/base 2025-08-26T20:40:00.2637396Z * [new branch] gh/desertfire/591/head -> origin/gh/desertfire/591/head 2025-08-26T20:40:00.2637961Z * [new branch] gh/desertfire/591/orig -> origin/gh/desertfire/591/orig 2025-08-26T20:40:00.2638566Z * [new branch] gh/desertfire/592/base -> origin/gh/desertfire/592/base 2025-08-26T20:40:00.2639273Z * [new branch] gh/desertfire/592/head -> origin/gh/desertfire/592/head 2025-08-26T20:40:00.2639845Z * [new branch] gh/desertfire/592/orig -> origin/gh/desertfire/592/orig 2025-08-26T20:40:00.2640435Z * [new branch] gh/desertfire/593/base -> origin/gh/desertfire/593/base 2025-08-26T20:40:00.2640996Z * [new branch] gh/desertfire/593/head -> origin/gh/desertfire/593/head 2025-08-26T20:40:00.2641607Z * [new branch] gh/desertfire/593/orig -> origin/gh/desertfire/593/orig 2025-08-26T20:40:00.2642159Z * [new branch] gh/desertfire/594/base -> origin/gh/desertfire/594/base 2025-08-26T20:40:00.2642761Z * [new branch] gh/desertfire/594/head -> origin/gh/desertfire/594/head 2025-08-26T20:40:00.2643378Z * [new branch] gh/desertfire/594/orig -> origin/gh/desertfire/594/orig 2025-08-26T20:40:00.2643999Z * [new branch] gh/desertfire/595/base -> origin/gh/desertfire/595/base 2025-08-26T20:40:00.2644576Z * [new branch] gh/desertfire/595/head -> origin/gh/desertfire/595/head 2025-08-26T20:40:00.2645171Z * [new branch] gh/desertfire/595/orig -> origin/gh/desertfire/595/orig 2025-08-26T20:40:00.2645737Z * [new branch] gh/desertfire/596/base -> origin/gh/desertfire/596/base 2025-08-26T20:40:00.2646338Z * [new branch] gh/desertfire/596/head -> origin/gh/desertfire/596/head 2025-08-26T20:40:00.2646894Z * [new branch] gh/desertfire/596/orig -> origin/gh/desertfire/596/orig 2025-08-26T20:40:00.2647505Z * [new branch] gh/desertfire/597/base -> origin/gh/desertfire/597/base 2025-08-26T20:40:00.2648051Z * [new branch] gh/desertfire/597/head -> origin/gh/desertfire/597/head 2025-08-26T20:40:00.2648655Z * [new branch] gh/desertfire/597/orig -> origin/gh/desertfire/597/orig 2025-08-26T20:40:00.2649212Z * [new branch] gh/dharakk/1/base -> origin/gh/dharakk/1/base 2025-08-26T20:40:00.2649735Z * [new branch] gh/dharakk/1/head -> origin/gh/dharakk/1/head 2025-08-26T20:40:00.2650305Z * [new branch] gh/dharakk/4/base -> origin/gh/dharakk/4/base 2025-08-26T20:40:00.2650835Z * [new branch] gh/dharakk/4/head -> origin/gh/dharakk/4/head 2025-08-26T20:40:00.2651496Z * [new branch] gh/dharakk/4/orig -> origin/gh/dharakk/4/orig 2025-08-26T20:40:00.2652209Z * [new branch] gh/drisspg/149/base -> origin/gh/drisspg/149/base 2025-08-26T20:40:00.2652878Z * [new branch] gh/drisspg/149/head -> origin/gh/drisspg/149/head 2025-08-26T20:40:00.2653381Z * [new branch] gh/drisspg/149/orig -> origin/gh/drisspg/149/orig 2025-08-26T20:40:00.2653869Z * [new branch] gh/drisspg/150/base -> origin/gh/drisspg/150/base 2025-08-26T20:40:00.2654352Z * [new branch] gh/drisspg/150/head -> origin/gh/drisspg/150/head 2025-08-26T20:40:00.2654823Z * [new branch] gh/drisspg/150/orig -> origin/gh/drisspg/150/orig 2025-08-26T20:40:00.2655302Z * [new branch] gh/drisspg/151/base -> origin/gh/drisspg/151/base 2025-08-26T20:40:00.2655788Z * [new branch] gh/drisspg/151/head -> origin/gh/drisspg/151/head 2025-08-26T20:40:00.2656370Z * [new branch] gh/drisspg/151/orig -> origin/gh/drisspg/151/orig 2025-08-26T20:40:00.2656854Z * [new branch] gh/drisspg/159/base -> origin/gh/drisspg/159/base 2025-08-26T20:40:00.2657330Z * [new branch] gh/drisspg/159/head -> origin/gh/drisspg/159/head 2025-08-26T20:40:00.2657825Z * [new branch] gh/drisspg/159/orig -> origin/gh/drisspg/159/orig 2025-08-26T20:40:00.2658437Z * [new branch] gh/drisspg/166/base -> origin/gh/drisspg/166/base 2025-08-26T20:40:00.2659009Z * [new branch] gh/drisspg/166/head -> origin/gh/drisspg/166/head 2025-08-26T20:40:00.2659504Z * [new branch] gh/drisspg/166/orig -> origin/gh/drisspg/166/orig 2025-08-26T20:40:00.2659980Z * [new branch] gh/drisspg/170/base -> origin/gh/drisspg/170/base 2025-08-26T20:40:00.2660468Z * [new branch] gh/drisspg/170/head -> origin/gh/drisspg/170/head 2025-08-26T20:40:00.2660953Z * [new branch] gh/drisspg/170/orig -> origin/gh/drisspg/170/orig 2025-08-26T20:40:00.3320664Z * [new branch] gh/drisspg/172/base -> origin/gh/drisspg/172/base 2025-08-26T20:40:00.3321260Z * [new branch] gh/drisspg/172/head -> origin/gh/drisspg/172/head 2025-08-26T20:40:00.3321781Z * [new branch] gh/drisspg/172/orig -> origin/gh/drisspg/172/orig 2025-08-26T20:40:00.3322289Z * [new branch] gh/drisspg/173/base -> origin/gh/drisspg/173/base 2025-08-26T20:40:00.3322780Z * [new branch] gh/drisspg/173/head -> origin/gh/drisspg/173/head 2025-08-26T20:40:00.3323339Z * [new branch] gh/drisspg/173/orig -> origin/gh/drisspg/173/orig 2025-08-26T20:40:00.3323823Z * [new branch] gh/drisspg/175/base -> origin/gh/drisspg/175/base 2025-08-26T20:40:00.3324367Z * [new branch] gh/drisspg/175/head -> origin/gh/drisspg/175/head 2025-08-26T20:40:00.3324849Z * [new branch] gh/drisspg/175/orig -> origin/gh/drisspg/175/orig 2025-08-26T20:40:00.3325337Z * [new branch] gh/drisspg/176/base -> origin/gh/drisspg/176/base 2025-08-26T20:40:00.3325825Z * [new branch] gh/drisspg/176/head -> origin/gh/drisspg/176/head 2025-08-26T20:40:00.3326307Z * [new branch] gh/drisspg/176/orig -> origin/gh/drisspg/176/orig 2025-08-26T20:40:00.3326793Z * [new branch] gh/drisspg/177/base -> origin/gh/drisspg/177/base 2025-08-26T20:40:00.3327278Z * [new branch] gh/drisspg/177/head -> origin/gh/drisspg/177/head 2025-08-26T20:40:00.3327813Z * [new branch] gh/drisspg/177/orig -> origin/gh/drisspg/177/orig 2025-08-26T20:40:00.3328292Z * [new branch] gh/drisspg/178/base -> origin/gh/drisspg/178/base 2025-08-26T20:40:00.3328786Z * [new branch] gh/drisspg/178/head -> origin/gh/drisspg/178/head 2025-08-26T20:40:00.3329266Z * [new branch] gh/drisspg/178/orig -> origin/gh/drisspg/178/orig 2025-08-26T20:40:00.3329750Z * [new branch] gh/drisspg/179/base -> origin/gh/drisspg/179/base 2025-08-26T20:40:00.3330232Z * [new branch] gh/drisspg/179/head -> origin/gh/drisspg/179/head 2025-08-26T20:40:00.3330708Z * [new branch] gh/drisspg/179/orig -> origin/gh/drisspg/179/orig 2025-08-26T20:40:00.3331195Z * [new branch] gh/drisspg/180/base -> origin/gh/drisspg/180/base 2025-08-26T20:40:00.3331721Z * [new branch] gh/drisspg/180/head -> origin/gh/drisspg/180/head 2025-08-26T20:40:00.3332208Z * [new branch] gh/drisspg/180/orig -> origin/gh/drisspg/180/orig 2025-08-26T20:40:00.3332692Z * [new branch] gh/drisspg/181/base -> origin/gh/drisspg/181/base 2025-08-26T20:40:00.3333332Z * [new branch] gh/drisspg/181/head -> origin/gh/drisspg/181/head 2025-08-26T20:40:00.3333823Z * [new branch] gh/drisspg/181/orig -> origin/gh/drisspg/181/orig 2025-08-26T20:40:00.3334306Z * [new branch] gh/drisspg/182/base -> origin/gh/drisspg/182/base 2025-08-26T20:40:00.3334838Z * [new branch] gh/drisspg/182/head -> origin/gh/drisspg/182/head 2025-08-26T20:40:00.3335704Z * [new branch] gh/drisspg/183/base -> origin/gh/drisspg/183/base 2025-08-26T20:40:00.3336215Z * [new branch] gh/drisspg/183/head -> origin/gh/drisspg/183/head 2025-08-26T20:40:00.3336706Z * [new branch] gh/drisspg/184/base -> origin/gh/drisspg/184/base 2025-08-26T20:40:00.3337181Z * [new branch] gh/drisspg/184/head -> origin/gh/drisspg/184/head 2025-08-26T20:40:00.3337734Z * [new branch] gh/drisspg/185/base -> origin/gh/drisspg/185/base 2025-08-26T20:40:00.3338205Z * [new branch] gh/drisspg/185/head -> origin/gh/drisspg/185/head 2025-08-26T20:40:00.3338695Z * [new branch] gh/drisspg/186/base -> origin/gh/drisspg/186/base 2025-08-26T20:40:00.3339172Z * [new branch] gh/drisspg/186/head -> origin/gh/drisspg/186/head 2025-08-26T20:40:00.3339653Z * [new branch] gh/drisspg/186/orig -> origin/gh/drisspg/186/orig 2025-08-26T20:40:00.3340143Z * [new branch] gh/drisspg/187/base -> origin/gh/drisspg/187/base 2025-08-26T20:40:00.3340675Z * [new branch] gh/drisspg/187/head -> origin/gh/drisspg/187/head 2025-08-26T20:40:00.3341160Z * [new branch] gh/drisspg/187/orig -> origin/gh/drisspg/187/orig 2025-08-26T20:40:00.3341647Z * [new branch] gh/drisspg/188/base -> origin/gh/drisspg/188/base 2025-08-26T20:40:00.3342133Z * [new branch] gh/drisspg/188/head -> origin/gh/drisspg/188/head 2025-08-26T20:40:00.3342611Z * [new branch] gh/drisspg/188/orig -> origin/gh/drisspg/188/orig 2025-08-26T20:40:00.3343085Z * [new branch] gh/drisspg/189/base -> origin/gh/drisspg/189/base 2025-08-26T20:40:00.3343615Z * [new branch] gh/drisspg/189/head -> origin/gh/drisspg/189/head 2025-08-26T20:40:00.3344094Z * [new branch] gh/drisspg/189/orig -> origin/gh/drisspg/189/orig 2025-08-26T20:40:00.3797108Z * [new branch] gh/dsjohns2/1/base -> origin/gh/dsjohns2/1/base 2025-08-26T20:40:00.3797703Z * [new branch] gh/dsjohns2/1/head -> origin/gh/dsjohns2/1/head 2025-08-26T20:40:00.3798262Z * [new branch] gh/eellison/784/base -> origin/gh/eellison/784/base 2025-08-26T20:40:00.3798816Z * [new branch] gh/eellison/784/head -> origin/gh/eellison/784/head 2025-08-26T20:40:00.3799365Z * [new branch] gh/eellison/784/orig -> origin/gh/eellison/784/orig 2025-08-26T20:40:00.3799892Z * [new branch] gh/eellison/785/base -> origin/gh/eellison/785/base 2025-08-26T20:40:00.3800459Z * [new branch] gh/eellison/785/head -> origin/gh/eellison/785/head 2025-08-26T20:40:00.3801010Z * [new branch] gh/eellison/785/orig -> origin/gh/eellison/785/orig 2025-08-26T20:40:00.3801551Z * [new branch] gh/eellison/789/base -> origin/gh/eellison/789/base 2025-08-26T20:40:00.3802099Z * [new branch] gh/eellison/789/head -> origin/gh/eellison/789/head 2025-08-26T20:40:00.3802630Z * [new branch] gh/eellison/789/orig -> origin/gh/eellison/789/orig 2025-08-26T20:40:00.3803235Z * [new branch] gh/eellison/800/base -> origin/gh/eellison/800/base 2025-08-26T20:40:00.3803927Z * [new branch] gh/eellison/800/head -> origin/gh/eellison/800/head 2025-08-26T20:40:00.3804512Z * [new branch] gh/eellison/800/orig -> origin/gh/eellison/800/orig 2025-08-26T20:40:00.3805062Z * [new branch] gh/eellison/801/base -> origin/gh/eellison/801/base 2025-08-26T20:40:00.3805599Z * [new branch] gh/eellison/801/head -> origin/gh/eellison/801/head 2025-08-26T20:40:00.3806135Z * [new branch] gh/eellison/801/orig -> origin/gh/eellison/801/orig 2025-08-26T20:40:00.3806768Z * [new branch] gh/eellison/802/base -> origin/gh/eellison/802/base 2025-08-26T20:40:00.3807312Z * [new branch] gh/eellison/802/head -> origin/gh/eellison/802/head 2025-08-26T20:40:00.3807857Z * [new branch] gh/eellison/802/orig -> origin/gh/eellison/802/orig 2025-08-26T20:40:00.3808393Z * [new branch] gh/eellison/805/base -> origin/gh/eellison/805/base 2025-08-26T20:40:00.3808977Z * [new branch] gh/eellison/805/head -> origin/gh/eellison/805/head 2025-08-26T20:40:00.3809510Z * [new branch] gh/eellison/805/orig -> origin/gh/eellison/805/orig 2025-08-26T20:40:00.3810046Z * [new branch] gh/eellison/808/base -> origin/gh/eellison/808/base 2025-08-26T20:40:00.3810570Z * [new branch] gh/eellison/808/head -> origin/gh/eellison/808/head 2025-08-26T20:40:00.3811108Z * [new branch] gh/eellison/808/orig -> origin/gh/eellison/808/orig 2025-08-26T20:40:00.3811647Z * [new branch] gh/eellison/809/base -> origin/gh/eellison/809/base 2025-08-26T20:40:00.3812182Z * [new branch] gh/eellison/809/head -> origin/gh/eellison/809/head 2025-08-26T20:40:00.3812717Z * [new branch] gh/eellison/809/orig -> origin/gh/eellison/809/orig 2025-08-26T20:40:00.3813249Z * [new branch] gh/eellison/810/base -> origin/gh/eellison/810/base 2025-08-26T20:40:00.3813790Z * [new branch] gh/eellison/810/head -> origin/gh/eellison/810/head 2025-08-26T20:40:00.3814331Z * [new branch] gh/eellison/810/orig -> origin/gh/eellison/810/orig 2025-08-26T20:40:00.3814859Z * [new branch] gh/eellison/811/base -> origin/gh/eellison/811/base 2025-08-26T20:40:00.3815399Z * [new branch] gh/eellison/811/head -> origin/gh/eellison/811/head 2025-08-26T20:40:00.3815973Z * [new branch] gh/eellison/811/orig -> origin/gh/eellison/811/orig 2025-08-26T20:40:00.3816518Z * [new branch] gh/eellison/812/base -> origin/gh/eellison/812/base 2025-08-26T20:40:00.3817051Z * [new branch] gh/eellison/812/head -> origin/gh/eellison/812/head 2025-08-26T20:40:00.3817577Z * [new branch] gh/eellison/812/orig -> origin/gh/eellison/812/orig 2025-08-26T20:40:00.3818107Z * [new branch] gh/eellison/813/base -> origin/gh/eellison/813/base 2025-08-26T20:40:00.3818640Z * [new branch] gh/eellison/813/head -> origin/gh/eellison/813/head 2025-08-26T20:40:00.3819184Z * [new branch] gh/eellison/813/orig -> origin/gh/eellison/813/orig 2025-08-26T20:40:00.3819718Z * [new branch] gh/eellison/814/base -> origin/gh/eellison/814/base 2025-08-26T20:40:00.3820253Z * [new branch] gh/eellison/814/head -> origin/gh/eellison/814/head 2025-08-26T20:40:00.3820794Z * [new branch] gh/eellison/814/orig -> origin/gh/eellison/814/orig 2025-08-26T20:40:00.3821352Z * [new branch] gh/eellison/815/base -> origin/gh/eellison/815/base 2025-08-26T20:40:00.3821903Z * [new branch] gh/eellison/815/head -> origin/gh/eellison/815/head 2025-08-26T20:40:00.3822426Z * [new branch] gh/eellison/815/orig -> origin/gh/eellison/815/orig 2025-08-26T20:40:00.4447800Z * [new branch] gh/eellison/816/base -> origin/gh/eellison/816/base 2025-08-26T20:40:00.4448359Z * [new branch] gh/eellison/816/head -> origin/gh/eellison/816/head 2025-08-26T20:40:00.4448870Z * [new branch] gh/eellison/816/orig -> origin/gh/eellison/816/orig 2025-08-26T20:40:00.4449372Z * [new branch] gh/eellison/817/base -> origin/gh/eellison/817/base 2025-08-26T20:40:00.4449863Z * [new branch] gh/eellison/817/head -> origin/gh/eellison/817/head 2025-08-26T20:40:00.4450512Z * [new branch] gh/eellison/817/orig -> origin/gh/eellison/817/orig 2025-08-26T20:40:00.4451015Z * [new branch] gh/eellison/818/base -> origin/gh/eellison/818/base 2025-08-26T20:40:00.4451499Z * [new branch] gh/eellison/818/head -> origin/gh/eellison/818/head 2025-08-26T20:40:00.4451999Z * [new branch] gh/eellison/818/orig -> origin/gh/eellison/818/orig 2025-08-26T20:40:00.4452504Z * [new branch] gh/eellison/819/base -> origin/gh/eellison/819/base 2025-08-26T20:40:00.4452985Z * [new branch] gh/eellison/819/head -> origin/gh/eellison/819/head 2025-08-26T20:40:00.4453476Z * [new branch] gh/eellison/819/orig -> origin/gh/eellison/819/orig 2025-08-26T20:40:00.4453959Z * [new branch] gh/eellison/820/base -> origin/gh/eellison/820/base 2025-08-26T20:40:00.4454444Z * [new branch] gh/eellison/820/head -> origin/gh/eellison/820/head 2025-08-26T20:40:00.4454939Z * [new branch] gh/eellison/820/orig -> origin/gh/eellison/820/orig 2025-08-26T20:40:00.4455425Z * [new branch] gh/eellison/821/base -> origin/gh/eellison/821/base 2025-08-26T20:40:00.4455913Z * [new branch] gh/eellison/821/head -> origin/gh/eellison/821/head 2025-08-26T20:40:00.4456392Z * [new branch] gh/eellison/821/orig -> origin/gh/eellison/821/orig 2025-08-26T20:40:00.4456897Z * [new branch] gh/eellison/822/base -> origin/gh/eellison/822/base 2025-08-26T20:40:00.4457383Z * [new branch] gh/eellison/822/head -> origin/gh/eellison/822/head 2025-08-26T20:40:00.4457873Z * [new branch] gh/eellison/822/orig -> origin/gh/eellison/822/orig 2025-08-26T20:40:00.4458359Z * [new branch] gh/etaf/132/base -> origin/gh/etaf/132/base 2025-08-26T20:40:00.4458807Z * [new branch] gh/etaf/132/head -> origin/gh/etaf/132/head 2025-08-26T20:40:00.4459270Z * [new branch] gh/etaf/132/orig -> origin/gh/etaf/132/orig 2025-08-26T20:40:00.4459721Z * [new branch] gh/etaf/138/base -> origin/gh/etaf/138/base 2025-08-26T20:40:00.4460172Z * [new branch] gh/etaf/138/head -> origin/gh/etaf/138/head 2025-08-26T20:40:00.4460628Z * [new branch] gh/etaf/138/orig -> origin/gh/etaf/138/orig 2025-08-26T20:40:00.4461071Z * [new branch] gh/etaf/140/base -> origin/gh/etaf/140/base 2025-08-26T20:40:00.4461520Z * [new branch] gh/etaf/140/head -> origin/gh/etaf/140/head 2025-08-26T20:40:00.4461969Z * [new branch] gh/etaf/140/orig -> origin/gh/etaf/140/orig 2025-08-26T20:40:00.4462430Z * [new branch] gh/etaf/143/base -> origin/gh/etaf/143/base 2025-08-26T20:40:00.4462883Z * [new branch] gh/etaf/143/head -> origin/gh/etaf/143/head 2025-08-26T20:40:00.4463336Z * [new branch] gh/etaf/143/orig -> origin/gh/etaf/143/orig 2025-08-26T20:40:00.4463790Z * [new branch] gh/etaf/147/base -> origin/gh/etaf/147/base 2025-08-26T20:40:00.4464313Z * [new branch] gh/etaf/147/head -> origin/gh/etaf/147/head 2025-08-26T20:40:00.4464880Z * [new branch] gh/etaf/149/base -> origin/gh/etaf/149/base 2025-08-26T20:40:00.4465377Z * [new branch] gh/etaf/149/head -> origin/gh/etaf/149/head 2025-08-26T20:40:00.4465835Z * [new branch] gh/etaf/149/orig -> origin/gh/etaf/149/orig 2025-08-26T20:40:00.4466298Z * [new branch] gh/etaf/150/base -> origin/gh/etaf/150/base 2025-08-26T20:40:00.4466743Z * [new branch] gh/etaf/150/head -> origin/gh/etaf/150/head 2025-08-26T20:40:00.4467279Z * [new branch] gh/etaf/150/orig -> origin/gh/etaf/150/orig 2025-08-26T20:40:00.4467726Z * [new branch] gh/etaf/151/base -> origin/gh/etaf/151/base 2025-08-26T20:40:00.4468179Z * [new branch] gh/etaf/151/head -> origin/gh/etaf/151/head 2025-08-26T20:40:00.4468635Z * [new branch] gh/etaf/151/orig -> origin/gh/etaf/151/orig 2025-08-26T20:40:00.4469088Z * [new branch] gh/etaf/152/base -> origin/gh/etaf/152/base 2025-08-26T20:40:00.4469542Z * [new branch] gh/etaf/152/head -> origin/gh/etaf/152/head 2025-08-26T20:40:00.4469992Z * [new branch] gh/etaf/152/orig -> origin/gh/etaf/152/orig 2025-08-26T20:40:00.4470452Z * [new branch] gh/etaf/153/base -> origin/gh/etaf/153/base 2025-08-26T20:40:00.4893219Z * [new branch] gh/etaf/153/head -> origin/gh/etaf/153/head 2025-08-26T20:40:00.4893726Z * [new branch] gh/etaf/153/orig -> origin/gh/etaf/153/orig 2025-08-26T20:40:00.4894205Z * [new branch] gh/etaf/154/base -> origin/gh/etaf/154/base 2025-08-26T20:40:00.4894666Z * [new branch] gh/etaf/154/head -> origin/gh/etaf/154/head 2025-08-26T20:40:00.4895128Z * [new branch] gh/etaf/154/orig -> origin/gh/etaf/154/orig 2025-08-26T20:40:00.4895591Z * [new branch] gh/etaf/155/base -> origin/gh/etaf/155/base 2025-08-26T20:40:00.4896042Z * [new branch] gh/etaf/155/head -> origin/gh/etaf/155/head 2025-08-26T20:40:00.4896499Z * [new branch] gh/etaf/155/orig -> origin/gh/etaf/155/orig 2025-08-26T20:40:00.4896944Z * [new branch] gh/etaf/156/base -> origin/gh/etaf/156/base 2025-08-26T20:40:00.4897397Z * [new branch] gh/etaf/156/head -> origin/gh/etaf/156/head 2025-08-26T20:40:00.4897854Z * [new branch] gh/etaf/156/orig -> origin/gh/etaf/156/orig 2025-08-26T20:40:00.4898308Z * [new branch] gh/etaf/157/base -> origin/gh/etaf/157/base 2025-08-26T20:40:00.4898759Z * [new branch] gh/etaf/157/head -> origin/gh/etaf/157/head 2025-08-26T20:40:00.4899203Z * [new branch] gh/etaf/157/orig -> origin/gh/etaf/157/orig 2025-08-26T20:40:00.4899658Z * [new branch] gh/etaf/158/base -> origin/gh/etaf/158/base 2025-08-26T20:40:00.4900113Z * [new branch] gh/etaf/158/head -> origin/gh/etaf/158/head 2025-08-26T20:40:00.4900562Z * [new branch] gh/etaf/158/orig -> origin/gh/etaf/158/orig 2025-08-26T20:40:00.4901023Z * [new branch] gh/etaf/159/base -> origin/gh/etaf/159/base 2025-08-26T20:40:00.4901467Z * [new branch] gh/etaf/159/head -> origin/gh/etaf/159/head 2025-08-26T20:40:00.4901924Z * [new branch] gh/etaf/159/orig -> origin/gh/etaf/159/orig 2025-08-26T20:40:00.4902369Z * [new branch] gh/etaf/160/base -> origin/gh/etaf/160/base 2025-08-26T20:40:00.4902824Z * [new branch] gh/etaf/160/head -> origin/gh/etaf/160/head 2025-08-26T20:40:00.4903279Z * [new branch] gh/etaf/160/orig -> origin/gh/etaf/160/orig 2025-08-26T20:40:00.4903873Z * [new branch] gh/etaf/161/base -> origin/gh/etaf/161/base 2025-08-26T20:40:00.4904328Z * [new branch] gh/etaf/161/head -> origin/gh/etaf/161/head 2025-08-26T20:40:00.4904774Z * [new branch] gh/etaf/161/orig -> origin/gh/etaf/161/orig 2025-08-26T20:40:00.4905241Z * [new branch] gh/etaf/162/base -> origin/gh/etaf/162/base 2025-08-26T20:40:00.4905707Z * [new branch] gh/etaf/162/head -> origin/gh/etaf/162/head 2025-08-26T20:40:00.4906242Z * [new branch] gh/etaf/162/orig -> origin/gh/etaf/162/orig 2025-08-26T20:40:00.4906709Z * [new branch] gh/etaf/163/base -> origin/gh/etaf/163/base 2025-08-26T20:40:00.4907157Z * [new branch] gh/etaf/163/head -> origin/gh/etaf/163/head 2025-08-26T20:40:00.4907613Z * [new branch] gh/etaf/163/orig -> origin/gh/etaf/163/orig 2025-08-26T20:40:00.4908073Z * [new branch] gh/etaf/164/base -> origin/gh/etaf/164/base 2025-08-26T20:40:00.4908548Z * [new branch] gh/etaf/164/head -> origin/gh/etaf/164/head 2025-08-26T20:40:00.4909002Z * [new branch] gh/etaf/164/orig -> origin/gh/etaf/164/orig 2025-08-26T20:40:00.4909452Z * [new branch] gh/etaf/165/base -> origin/gh/etaf/165/base 2025-08-26T20:40:00.4909912Z * [new branch] gh/etaf/165/head -> origin/gh/etaf/165/head 2025-08-26T20:40:00.4910358Z * [new branch] gh/etaf/165/orig -> origin/gh/etaf/165/orig 2025-08-26T20:40:00.4910828Z * [new branch] gh/ezyang/2374/base -> origin/gh/ezyang/2374/base 2025-08-26T20:40:00.4911313Z * [new branch] gh/ezyang/2374/head -> origin/gh/ezyang/2374/head 2025-08-26T20:40:00.4911783Z * [new branch] gh/ezyang/2374/orig -> origin/gh/ezyang/2374/orig 2025-08-26T20:40:00.4912266Z * [new branch] gh/ezyang/2973/base -> origin/gh/ezyang/2973/base 2025-08-26T20:40:00.4912735Z * [new branch] gh/ezyang/2973/head -> origin/gh/ezyang/2973/head 2025-08-26T20:40:00.4913217Z * [new branch] gh/ezyang/2973/orig -> origin/gh/ezyang/2973/orig 2025-08-26T20:40:00.4913694Z * [new branch] gh/ezyang/2974/base -> origin/gh/ezyang/2974/base 2025-08-26T20:40:00.4914162Z * [new branch] gh/ezyang/2974/head -> origin/gh/ezyang/2974/head 2025-08-26T20:40:00.4914646Z * [new branch] gh/ezyang/2974/orig -> origin/gh/ezyang/2974/orig 2025-08-26T20:40:00.4915114Z * [new branch] gh/ezyang/3068/base -> origin/gh/ezyang/3068/base 2025-08-26T20:40:00.5364146Z * [new branch] gh/ezyang/3068/head -> origin/gh/ezyang/3068/head 2025-08-26T20:40:00.5364682Z * [new branch] gh/ezyang/3068/orig -> origin/gh/ezyang/3068/orig 2025-08-26T20:40:00.5365214Z * [new branch] gh/ezyang/3071/base -> origin/gh/ezyang/3071/base 2025-08-26T20:40:00.5365746Z * [new branch] gh/ezyang/3071/head -> origin/gh/ezyang/3071/head 2025-08-26T20:40:00.5366265Z * [new branch] gh/ezyang/3071/orig -> origin/gh/ezyang/3071/orig 2025-08-26T20:40:00.5366796Z * [new branch] gh/ezyang/3074/base -> origin/gh/ezyang/3074/base 2025-08-26T20:40:00.5367277Z * [new branch] gh/ezyang/3074/head -> origin/gh/ezyang/3074/head 2025-08-26T20:40:00.5367761Z * [new branch] gh/ezyang/3074/orig -> origin/gh/ezyang/3074/orig 2025-08-26T20:40:00.5368244Z * [new branch] gh/ezyang/3088/base -> origin/gh/ezyang/3088/base 2025-08-26T20:40:00.5368707Z * [new branch] gh/ezyang/3088/head -> origin/gh/ezyang/3088/head 2025-08-26T20:40:00.5369186Z * [new branch] gh/ezyang/3088/orig -> origin/gh/ezyang/3088/orig 2025-08-26T20:40:00.5369824Z * [new branch] gh/ezyang/3092/base -> origin/gh/ezyang/3092/base 2025-08-26T20:40:00.5370298Z * [new branch] gh/ezyang/3092/head -> origin/gh/ezyang/3092/head 2025-08-26T20:40:00.5370776Z * [new branch] gh/ezyang/3092/orig -> origin/gh/ezyang/3092/orig 2025-08-26T20:40:00.5371248Z * [new branch] gh/ezyang/3103/base -> origin/gh/ezyang/3103/base 2025-08-26T20:40:00.5371730Z * [new branch] gh/ezyang/3103/head -> origin/gh/ezyang/3103/head 2025-08-26T20:40:00.5372321Z * [new branch] gh/ezyang/3103/orig -> origin/gh/ezyang/3103/orig 2025-08-26T20:40:00.5372798Z * [new branch] gh/ezyang/3105/base -> origin/gh/ezyang/3105/base 2025-08-26T20:40:00.5373295Z * [new branch] gh/ezyang/3105/head -> origin/gh/ezyang/3105/head 2025-08-26T20:40:00.5373770Z * [new branch] gh/ezyang/3105/orig -> origin/gh/ezyang/3105/orig 2025-08-26T20:40:00.5374256Z * [new branch] gh/ezyang/3114/base -> origin/gh/ezyang/3114/base 2025-08-26T20:40:00.5374738Z * [new branch] gh/ezyang/3114/head -> origin/gh/ezyang/3114/head 2025-08-26T20:40:00.5375221Z * [new branch] gh/ezyang/3114/orig -> origin/gh/ezyang/3114/orig 2025-08-26T20:40:00.5375694Z * [new branch] gh/ezyang/3116/base -> origin/gh/ezyang/3116/base 2025-08-26T20:40:00.5376174Z * [new branch] gh/ezyang/3116/head -> origin/gh/ezyang/3116/head 2025-08-26T20:40:00.5376650Z * [new branch] gh/ezyang/3116/orig -> origin/gh/ezyang/3116/orig 2025-08-26T20:40:00.5377118Z * [new branch] gh/ezyang/3117/base -> origin/gh/ezyang/3117/base 2025-08-26T20:40:00.5377592Z * [new branch] gh/ezyang/3117/head -> origin/gh/ezyang/3117/head 2025-08-26T20:40:00.5378073Z * [new branch] gh/ezyang/3117/orig -> origin/gh/ezyang/3117/orig 2025-08-26T20:40:00.5378537Z * [new branch] gh/ezyang/3118/base -> origin/gh/ezyang/3118/base 2025-08-26T20:40:00.5379020Z * [new branch] gh/ezyang/3118/head -> origin/gh/ezyang/3118/head 2025-08-26T20:40:00.5379490Z * [new branch] gh/ezyang/3118/orig -> origin/gh/ezyang/3118/orig 2025-08-26T20:40:00.5379965Z * [new branch] gh/ezyang/3119/base -> origin/gh/ezyang/3119/base 2025-08-26T20:40:00.5380453Z * [new branch] gh/ezyang/3119/head -> origin/gh/ezyang/3119/head 2025-08-26T20:40:00.5380925Z * [new branch] gh/ezyang/3119/orig -> origin/gh/ezyang/3119/orig 2025-08-26T20:40:00.5381399Z * [new branch] gh/ezyang/3120/base -> origin/gh/ezyang/3120/base 2025-08-26T20:40:00.5381865Z * [new branch] gh/ezyang/3120/head -> origin/gh/ezyang/3120/head 2025-08-26T20:40:00.5382346Z * [new branch] gh/ezyang/3120/orig -> origin/gh/ezyang/3120/orig 2025-08-26T20:40:00.5382815Z * [new branch] gh/ezyang/3121/base -> origin/gh/ezyang/3121/base 2025-08-26T20:40:00.5383283Z * [new branch] gh/ezyang/3121/head -> origin/gh/ezyang/3121/head 2025-08-26T20:40:00.5383764Z * [new branch] gh/ezyang/3121/orig -> origin/gh/ezyang/3121/orig 2025-08-26T20:40:00.5384231Z * [new branch] gh/ezyang/3122/base -> origin/gh/ezyang/3122/base 2025-08-26T20:40:00.5384719Z * [new branch] gh/ezyang/3122/head -> origin/gh/ezyang/3122/head 2025-08-26T20:40:00.5385196Z * [new branch] gh/ezyang/3122/orig -> origin/gh/ezyang/3122/orig 2025-08-26T20:40:00.5385672Z * [new branch] gh/ezyang/3123/base -> origin/gh/ezyang/3123/base 2025-08-26T20:40:00.5386153Z * [new branch] gh/ezyang/3123/head -> origin/gh/ezyang/3123/head 2025-08-26T20:40:00.5386714Z * [new branch] gh/ezyang/3123/orig -> origin/gh/ezyang/3123/orig 2025-08-26T20:40:00.5815219Z * [new branch] gh/ezyang/3124/base -> origin/gh/ezyang/3124/base 2025-08-26T20:40:00.5815762Z * [new branch] gh/ezyang/3124/head -> origin/gh/ezyang/3124/head 2025-08-26T20:40:00.5816275Z * [new branch] gh/ezyang/3124/orig -> origin/gh/ezyang/3124/orig 2025-08-26T20:40:00.5816762Z * [new branch] gh/ezyang/3125/base -> origin/gh/ezyang/3125/base 2025-08-26T20:40:00.5817413Z * [new branch] gh/ezyang/3125/head -> origin/gh/ezyang/3125/head 2025-08-26T20:40:00.5817908Z * [new branch] gh/ezyang/3125/orig -> origin/gh/ezyang/3125/orig 2025-08-26T20:40:00.5818389Z * [new branch] gh/ezyang/3126/base -> origin/gh/ezyang/3126/base 2025-08-26T20:40:00.5818929Z * [new branch] gh/ezyang/3126/head -> origin/gh/ezyang/3126/head 2025-08-26T20:40:00.5819494Z * [new branch] gh/ezyang/3126/orig -> origin/gh/ezyang/3126/orig 2025-08-26T20:40:00.5819973Z * [new branch] gh/ezyang/3127/base -> origin/gh/ezyang/3127/base 2025-08-26T20:40:00.5820460Z * [new branch] gh/ezyang/3127/head -> origin/gh/ezyang/3127/head 2025-08-26T20:40:00.5820954Z * [new branch] gh/ezyang/3127/orig -> origin/gh/ezyang/3127/orig 2025-08-26T20:40:00.5821430Z * [new branch] gh/ezyang/3128/base -> origin/gh/ezyang/3128/base 2025-08-26T20:40:00.5821908Z * [new branch] gh/ezyang/3128/head -> origin/gh/ezyang/3128/head 2025-08-26T20:40:00.5822376Z * [new branch] gh/ezyang/3128/orig -> origin/gh/ezyang/3128/orig 2025-08-26T20:40:00.5822852Z * [new branch] gh/ezyang/3129/base -> origin/gh/ezyang/3129/base 2025-08-26T20:40:00.5823335Z * [new branch] gh/ezyang/3129/head -> origin/gh/ezyang/3129/head 2025-08-26T20:40:00.5823800Z * [new branch] gh/ezyang/3129/orig -> origin/gh/ezyang/3129/orig 2025-08-26T20:40:00.5824281Z * [new branch] gh/ezyang/3130/base -> origin/gh/ezyang/3130/base 2025-08-26T20:40:00.5824746Z * [new branch] gh/ezyang/3130/head -> origin/gh/ezyang/3130/head 2025-08-26T20:40:00.5825226Z * [new branch] gh/ezyang/3130/orig -> origin/gh/ezyang/3130/orig 2025-08-26T20:40:00.5825695Z * [new branch] gh/ezyang/3131/base -> origin/gh/ezyang/3131/base 2025-08-26T20:40:00.5826182Z * [new branch] gh/ezyang/3131/head -> origin/gh/ezyang/3131/head 2025-08-26T20:40:00.5826657Z * [new branch] gh/ezyang/3131/orig -> origin/gh/ezyang/3131/orig 2025-08-26T20:40:00.5827126Z * [new branch] gh/ezyang/3132/base -> origin/gh/ezyang/3132/base 2025-08-26T20:40:00.5827609Z * [new branch] gh/ezyang/3132/head -> origin/gh/ezyang/3132/head 2025-08-26T20:40:00.5828076Z * [new branch] gh/ezyang/3132/orig -> origin/gh/ezyang/3132/orig 2025-08-26T20:40:00.5828552Z * [new branch] gh/ezyang/3133/base -> origin/gh/ezyang/3133/base 2025-08-26T20:40:00.5829031Z * [new branch] gh/ezyang/3133/head -> origin/gh/ezyang/3133/head 2025-08-26T20:40:00.5829502Z * [new branch] gh/ezyang/3133/orig -> origin/gh/ezyang/3133/orig 2025-08-26T20:40:00.5829984Z * [new branch] gh/ezyang/3134/base -> origin/gh/ezyang/3134/base 2025-08-26T20:40:00.5830449Z * [new branch] gh/ezyang/3134/head -> origin/gh/ezyang/3134/head 2025-08-26T20:40:00.5830927Z * [new branch] gh/ezyang/3134/orig -> origin/gh/ezyang/3134/orig 2025-08-26T20:40:00.5831401Z * [new branch] gh/ezyang/3135/base -> origin/gh/ezyang/3135/base 2025-08-26T20:40:00.5831989Z * [new branch] gh/ezyang/3135/head -> origin/gh/ezyang/3135/head 2025-08-26T20:40:00.5832480Z * [new branch] gh/ezyang/3135/orig -> origin/gh/ezyang/3135/orig 2025-08-26T20:40:00.5833054Z * [new branch] gh/ezyang/3136/base -> origin/gh/ezyang/3136/base 2025-08-26T20:40:00.5833541Z * [new branch] gh/ezyang/3136/head -> origin/gh/ezyang/3136/head 2025-08-26T20:40:00.5834015Z * [new branch] gh/ezyang/3136/orig -> origin/gh/ezyang/3136/orig 2025-08-26T20:40:00.5834597Z * [new branch] gh/ezyang/3137/base -> origin/gh/ezyang/3137/base 2025-08-26T20:40:00.5835145Z * [new branch] gh/ezyang/3137/head -> origin/gh/ezyang/3137/head 2025-08-26T20:40:00.5835701Z * [new branch] gh/ezyang/3137/orig -> origin/gh/ezyang/3137/orig 2025-08-26T20:40:00.5836196Z * [new branch] gh/fadara01/1/base -> origin/gh/fadara01/1/base 2025-08-26T20:40:00.5836665Z * [new branch] gh/fadara01/1/head -> origin/gh/fadara01/1/head 2025-08-26T20:40:00.5837145Z * [new branch] gh/fadara01/1/orig -> origin/gh/fadara01/1/orig 2025-08-26T20:40:00.5837619Z * [new branch] gh/fduwjj/169/base -> origin/gh/fduwjj/169/base 2025-08-26T20:40:00.5838082Z * [new branch] gh/fduwjj/169/head -> origin/gh/fduwjj/169/head 2025-08-26T20:40:00.6268539Z * [new branch] gh/fduwjj/169/orig -> origin/gh/fduwjj/169/orig 2025-08-26T20:40:00.6269093Z * [new branch] gh/fduwjj/171/base -> origin/gh/fduwjj/171/base 2025-08-26T20:40:00.6269581Z * [new branch] gh/fduwjj/171/head -> origin/gh/fduwjj/171/head 2025-08-26T20:40:00.6270056Z * [new branch] gh/fduwjj/171/orig -> origin/gh/fduwjj/171/orig 2025-08-26T20:40:00.6270565Z * [new branch] gh/fduwjj/175/base -> origin/gh/fduwjj/175/base 2025-08-26T20:40:00.6271033Z * [new branch] gh/fduwjj/175/head -> origin/gh/fduwjj/175/head 2025-08-26T20:40:00.6271505Z * [new branch] gh/fduwjj/175/orig -> origin/gh/fduwjj/175/orig 2025-08-26T20:40:00.6271974Z * [new branch] gh/fduwjj/176/base -> origin/gh/fduwjj/176/base 2025-08-26T20:40:00.6272438Z * [new branch] gh/fduwjj/176/head -> origin/gh/fduwjj/176/head 2025-08-26T20:40:00.6272912Z * [new branch] gh/fduwjj/176/orig -> origin/gh/fduwjj/176/orig 2025-08-26T20:40:00.6273380Z * [new branch] gh/fduwjj/177/base -> origin/gh/fduwjj/177/base 2025-08-26T20:40:00.6273851Z * [new branch] gh/fduwjj/177/head -> origin/gh/fduwjj/177/head 2025-08-26T20:40:00.6274324Z * [new branch] gh/fduwjj/177/orig -> origin/gh/fduwjj/177/orig 2025-08-26T20:40:00.6274798Z * [new branch] gh/fduwjj/178/base -> origin/gh/fduwjj/178/base 2025-08-26T20:40:00.6275273Z * [new branch] gh/fduwjj/178/head -> origin/gh/fduwjj/178/head 2025-08-26T20:40:00.6275754Z * [new branch] gh/fduwjj/178/orig -> origin/gh/fduwjj/178/orig 2025-08-26T20:40:00.6276216Z * [new branch] gh/fduwjj/179/base -> origin/gh/fduwjj/179/base 2025-08-26T20:40:00.6276691Z * [new branch] gh/fduwjj/179/head -> origin/gh/fduwjj/179/head 2025-08-26T20:40:00.6277159Z * [new branch] gh/fduwjj/179/orig -> origin/gh/fduwjj/179/orig 2025-08-26T20:40:00.6277642Z * [new branch] gh/fduwjj/180/base -> origin/gh/fduwjj/180/base 2025-08-26T20:40:00.6278111Z * [new branch] gh/fduwjj/180/head -> origin/gh/fduwjj/180/head 2025-08-26T20:40:00.6278572Z * [new branch] gh/fduwjj/180/orig -> origin/gh/fduwjj/180/orig 2025-08-26T20:40:00.6279223Z * [new branch] gh/fduwjj/181/base -> origin/gh/fduwjj/181/base 2025-08-26T20:40:00.6279695Z * [new branch] gh/fduwjj/181/head -> origin/gh/fduwjj/181/head 2025-08-26T20:40:00.6280170Z * [new branch] gh/fduwjj/181/orig -> origin/gh/fduwjj/181/orig 2025-08-26T20:40:00.6280635Z * [new branch] gh/fduwjj/182/base -> origin/gh/fduwjj/182/base 2025-08-26T20:40:00.6281114Z * [new branch] gh/fduwjj/182/head -> origin/gh/fduwjj/182/head 2025-08-26T20:40:00.6281697Z * [new branch] gh/fduwjj/182/orig -> origin/gh/fduwjj/182/orig 2025-08-26T20:40:00.6282173Z * [new branch] gh/fduwjj/183/base -> origin/gh/fduwjj/183/base 2025-08-26T20:40:00.6282657Z * [new branch] gh/fduwjj/183/head -> origin/gh/fduwjj/183/head 2025-08-26T20:40:00.6283197Z * [new branch] gh/fduwjj/183/orig -> origin/gh/fduwjj/183/orig 2025-08-26T20:40:00.6283681Z * [new branch] gh/fduwjj/184/base -> origin/gh/fduwjj/184/base 2025-08-26T20:40:00.6284158Z * [new branch] gh/fduwjj/184/head -> origin/gh/fduwjj/184/head 2025-08-26T20:40:00.6284627Z * [new branch] gh/fduwjj/184/orig -> origin/gh/fduwjj/184/orig 2025-08-26T20:40:00.6285107Z * [new branch] gh/fduwjj/185/base -> origin/gh/fduwjj/185/base 2025-08-26T20:40:00.6285577Z * [new branch] gh/fduwjj/185/head -> origin/gh/fduwjj/185/head 2025-08-26T20:40:00.6286063Z * [new branch] gh/fduwjj/185/orig -> origin/gh/fduwjj/185/orig 2025-08-26T20:40:00.6286533Z * [new branch] gh/fduwjj/186/base -> origin/gh/fduwjj/186/base 2025-08-26T20:40:00.6287001Z * [new branch] gh/fduwjj/186/head -> origin/gh/fduwjj/186/head 2025-08-26T20:40:00.6287476Z * [new branch] gh/fduwjj/186/orig -> origin/gh/fduwjj/186/orig 2025-08-26T20:40:00.6287952Z * [new branch] gh/fduwjj/187/base -> origin/gh/fduwjj/187/base 2025-08-26T20:40:00.6288426Z * [new branch] gh/fduwjj/187/head -> origin/gh/fduwjj/187/head 2025-08-26T20:40:00.6288892Z * [new branch] gh/fduwjj/187/orig -> origin/gh/fduwjj/187/orig 2025-08-26T20:40:00.6289364Z * [new branch] gh/fduwjj/188/base -> origin/gh/fduwjj/188/base 2025-08-26T20:40:00.6289840Z * [new branch] gh/fduwjj/188/head -> origin/gh/fduwjj/188/head 2025-08-26T20:40:00.6290310Z * [new branch] gh/fduwjj/188/orig -> origin/gh/fduwjj/188/orig 2025-08-26T20:40:00.6290780Z * [new branch] gh/fduwjj/189/base -> origin/gh/fduwjj/189/base 2025-08-26T20:40:00.6291248Z * [new branch] gh/fduwjj/189/head -> origin/gh/fduwjj/189/head 2025-08-26T20:40:00.6730506Z * [new branch] gh/fduwjj/189/orig -> origin/gh/fduwjj/189/orig 2025-08-26T20:40:00.6731060Z * [new branch] gh/fduwjj/190/base -> origin/gh/fduwjj/190/base 2025-08-26T20:40:00.6731538Z * [new branch] gh/fduwjj/190/head -> origin/gh/fduwjj/190/head 2025-08-26T20:40:00.6732023Z * [new branch] gh/fduwjj/190/orig -> origin/gh/fduwjj/190/orig 2025-08-26T20:40:00.6732514Z * [new branch] gh/fduwjj/191/base -> origin/gh/fduwjj/191/base 2025-08-26T20:40:00.6733063Z * [new branch] gh/fduwjj/191/head -> origin/gh/fduwjj/191/head 2025-08-26T20:40:00.6733588Z * [new branch] gh/fduwjj/191/orig -> origin/gh/fduwjj/191/orig 2025-08-26T20:40:00.6734064Z * [new branch] gh/fegin/306/base -> origin/gh/fegin/306/base 2025-08-26T20:40:00.6734534Z * [new branch] gh/fegin/306/head -> origin/gh/fegin/306/head 2025-08-26T20:40:00.6735181Z * [new branch] gh/fegin/306/orig -> origin/gh/fegin/306/orig 2025-08-26T20:40:00.6735640Z * [new branch] gh/fegin/307/base -> origin/gh/fegin/307/base 2025-08-26T20:40:00.6736117Z * [new branch] gh/fegin/307/head -> origin/gh/fegin/307/head 2025-08-26T20:40:00.6736573Z * [new branch] gh/fegin/307/orig -> origin/gh/fegin/307/orig 2025-08-26T20:40:00.6737044Z * [new branch] gh/fffrog/124/base -> origin/gh/fffrog/124/base 2025-08-26T20:40:00.6737603Z * [new branch] gh/fffrog/124/head -> origin/gh/fffrog/124/head 2025-08-26T20:40:00.6738085Z * [new branch] gh/fffrog/124/orig -> origin/gh/fffrog/124/orig 2025-08-26T20:40:00.6738615Z * [new branch] gh/fffrog/128/base -> origin/gh/fffrog/128/base 2025-08-26T20:40:00.6739128Z * [new branch] gh/fffrog/128/head -> origin/gh/fffrog/128/head 2025-08-26T20:40:00.6739611Z * [new branch] gh/fffrog/128/orig -> origin/gh/fffrog/128/orig 2025-08-26T20:40:00.6740095Z * [new branch] gh/fffrog/129/base -> origin/gh/fffrog/129/base 2025-08-26T20:40:00.6740573Z * [new branch] gh/fffrog/129/head -> origin/gh/fffrog/129/head 2025-08-26T20:40:00.6741047Z * [new branch] gh/fffrog/129/orig -> origin/gh/fffrog/129/orig 2025-08-26T20:40:00.6741509Z * [new branch] gh/fffrog/130/base -> origin/gh/fffrog/130/base 2025-08-26T20:40:00.6741986Z * [new branch] gh/fffrog/130/head -> origin/gh/fffrog/130/head 2025-08-26T20:40:00.6742448Z * [new branch] gh/fffrog/130/orig -> origin/gh/fffrog/130/orig 2025-08-26T20:40:00.6742918Z * [new branch] gh/fffrog/131/base -> origin/gh/fffrog/131/base 2025-08-26T20:40:00.6743386Z * [new branch] gh/fffrog/131/head -> origin/gh/fffrog/131/head 2025-08-26T20:40:00.6743856Z * [new branch] gh/fffrog/131/orig -> origin/gh/fffrog/131/orig 2025-08-26T20:40:00.6744378Z * [new branch] gh/fffrog/132/base -> origin/gh/fffrog/132/base 2025-08-26T20:40:00.6744890Z * [new branch] gh/fffrog/132/head -> origin/gh/fffrog/132/head 2025-08-26T20:40:00.6745359Z * [new branch] gh/fffrog/132/orig -> origin/gh/fffrog/132/orig 2025-08-26T20:40:00.6745828Z * [new branch] gh/fffrog/133/base -> origin/gh/fffrog/133/base 2025-08-26T20:40:00.6746303Z * [new branch] gh/fffrog/133/head -> origin/gh/fffrog/133/head 2025-08-26T20:40:00.6746776Z * [new branch] gh/fffrog/133/orig -> origin/gh/fffrog/133/orig 2025-08-26T20:40:00.6747249Z * [new branch] gh/fffrog/134/base -> origin/gh/fffrog/134/base 2025-08-26T20:40:00.6747716Z * [new branch] gh/fffrog/134/head -> origin/gh/fffrog/134/head 2025-08-26T20:40:00.6748185Z * [new branch] gh/fffrog/134/orig -> origin/gh/fffrog/134/orig 2025-08-26T20:40:00.6748655Z * [new branch] gh/fffrog/135/base -> origin/gh/fffrog/135/base 2025-08-26T20:40:00.6749128Z * [new branch] gh/fffrog/135/head -> origin/gh/fffrog/135/head 2025-08-26T20:40:00.6749598Z * [new branch] gh/fffrog/135/orig -> origin/gh/fffrog/135/orig 2025-08-26T20:40:00.6750124Z * [new branch] gh/fffrog/136/base -> origin/gh/fffrog/136/base 2025-08-26T20:40:00.6750598Z * [new branch] gh/fffrog/136/head -> origin/gh/fffrog/136/head 2025-08-26T20:40:00.6751115Z * [new branch] gh/fffrog/136/orig -> origin/gh/fffrog/136/orig 2025-08-26T20:40:00.6751586Z * [new branch] gh/fffrog/137/base -> origin/gh/fffrog/137/base 2025-08-26T20:40:00.6752051Z * [new branch] gh/fffrog/137/head -> origin/gh/fffrog/137/head 2025-08-26T20:40:00.6752636Z * [new branch] gh/fffrog/137/orig -> origin/gh/fffrog/137/orig 2025-08-26T20:40:00.6753108Z * [new branch] gh/fffrog/138/base -> origin/gh/fffrog/138/base 2025-08-26T20:40:00.6753592Z * [new branch] gh/fffrog/138/head -> origin/gh/fffrog/138/head 2025-08-26T20:40:00.7175297Z * [new branch] gh/fffrog/138/orig -> origin/gh/fffrog/138/orig 2025-08-26T20:40:00.7175824Z * [new branch] gh/fffrog/139/base -> origin/gh/fffrog/139/base 2025-08-26T20:40:00.7176586Z * [new branch] gh/fffrog/139/head -> origin/gh/fffrog/139/head 2025-08-26T20:40:00.7177137Z * [new branch] gh/fffrog/139/orig -> origin/gh/fffrog/139/orig 2025-08-26T20:40:00.7177620Z * [new branch] gh/fffrog/140/base -> origin/gh/fffrog/140/base 2025-08-26T20:40:00.7178102Z * [new branch] gh/fffrog/140/head -> origin/gh/fffrog/140/head 2025-08-26T20:40:00.7178572Z * [new branch] gh/fffrog/140/orig -> origin/gh/fffrog/140/orig 2025-08-26T20:40:00.7179041Z * [new branch] gh/fffrog/141/base -> origin/gh/fffrog/141/base 2025-08-26T20:40:00.7179509Z * [new branch] gh/fffrog/141/head -> origin/gh/fffrog/141/head 2025-08-26T20:40:00.7179991Z * [new branch] gh/fffrog/141/orig -> origin/gh/fffrog/141/orig 2025-08-26T20:40:00.7180474Z * [new branch] gh/fffrog/142/base -> origin/gh/fffrog/142/base 2025-08-26T20:40:00.7180935Z * [new branch] gh/fffrog/142/head -> origin/gh/fffrog/142/head 2025-08-26T20:40:00.7181414Z * [new branch] gh/fffrog/142/orig -> origin/gh/fffrog/142/orig 2025-08-26T20:40:00.7181875Z * [new branch] gh/fffrog/143/base -> origin/gh/fffrog/143/base 2025-08-26T20:40:00.7182402Z * [new branch] gh/fffrog/143/head -> origin/gh/fffrog/143/head 2025-08-26T20:40:00.7182915Z * [new branch] gh/fffrog/143/orig -> origin/gh/fffrog/143/orig 2025-08-26T20:40:00.7183379Z * [new branch] gh/fffrog/144/base -> origin/gh/fffrog/144/base 2025-08-26T20:40:00.7183861Z * [new branch] gh/fffrog/144/head -> origin/gh/fffrog/144/head 2025-08-26T20:40:00.7184323Z * [new branch] gh/fffrog/144/orig -> origin/gh/fffrog/144/orig 2025-08-26T20:40:00.7184823Z * [new branch] gh/gmagogsfm/1/base -> origin/gh/gmagogsfm/1/base 2025-08-26T20:40:00.7185319Z * [new branch] gh/gmagogsfm/1/head -> origin/gh/gmagogsfm/1/head 2025-08-26T20:40:00.7185796Z * [new branch] gh/gmagogsfm/1/orig -> origin/gh/gmagogsfm/1/orig 2025-08-26T20:40:00.7186284Z * [new branch] gh/gmagogsfm/2/base -> origin/gh/gmagogsfm/2/base 2025-08-26T20:40:00.7186765Z * [new branch] gh/gmagogsfm/2/head -> origin/gh/gmagogsfm/2/head 2025-08-26T20:40:00.7187247Z * [new branch] gh/gmagogsfm/2/orig -> origin/gh/gmagogsfm/2/orig 2025-08-26T20:40:00.7187727Z * [new branch] gh/gmagogsfm/3/base -> origin/gh/gmagogsfm/3/base 2025-08-26T20:40:00.7188268Z * [new branch] gh/gmagogsfm/3/head -> origin/gh/gmagogsfm/3/head 2025-08-26T20:40:00.7188798Z * [new branch] gh/gmagogsfm/3/orig -> origin/gh/gmagogsfm/3/orig 2025-08-26T20:40:00.7189289Z * [new branch] gh/guangyey/130/base -> origin/gh/guangyey/130/base 2025-08-26T20:40:00.7189796Z * [new branch] gh/guangyey/130/head -> origin/gh/guangyey/130/head 2025-08-26T20:40:00.7190282Z * [new branch] gh/guangyey/130/orig -> origin/gh/guangyey/130/orig 2025-08-26T20:40:00.7190776Z * [new branch] gh/guangyey/133/base -> origin/gh/guangyey/133/base 2025-08-26T20:40:00.7191387Z * [new branch] gh/guangyey/133/head -> origin/gh/guangyey/133/head 2025-08-26T20:40:00.7191876Z * [new branch] gh/guangyey/133/orig -> origin/gh/guangyey/133/orig 2025-08-26T20:40:00.7192372Z * [new branch] gh/guangyey/134/base -> origin/gh/guangyey/134/base 2025-08-26T20:40:00.7192869Z * [new branch] gh/guangyey/134/head -> origin/gh/guangyey/134/head 2025-08-26T20:40:00.7193365Z * [new branch] gh/guangyey/134/orig -> origin/gh/guangyey/134/orig 2025-08-26T20:40:00.7193994Z * [new branch] gh/guangyey/135/base -> origin/gh/guangyey/135/base 2025-08-26T20:40:00.7194530Z * [new branch] gh/guangyey/135/head -> origin/gh/guangyey/135/head 2025-08-26T20:40:00.7195025Z * [new branch] gh/guangyey/135/orig -> origin/gh/guangyey/135/orig 2025-08-26T20:40:00.7195526Z * [new branch] gh/guangyey/139/base -> origin/gh/guangyey/139/base 2025-08-26T20:40:00.7196020Z * [new branch] gh/guangyey/139/head -> origin/gh/guangyey/139/head 2025-08-26T20:40:00.7196509Z * [new branch] gh/guangyey/139/orig -> origin/gh/guangyey/139/orig 2025-08-26T20:40:00.7196993Z * [new branch] gh/guangyey/140/base -> origin/gh/guangyey/140/base 2025-08-26T20:40:00.7197494Z * [new branch] gh/guangyey/140/head -> origin/gh/guangyey/140/head 2025-08-26T20:40:00.7197998Z * [new branch] gh/guangyey/140/orig -> origin/gh/guangyey/140/orig 2025-08-26T20:40:00.7198497Z * [new branch] gh/guangyey/142/base -> origin/gh/guangyey/142/base 2025-08-26T20:40:00.7615713Z * [new branch] gh/guangyey/142/head -> origin/gh/guangyey/142/head 2025-08-26T20:40:00.7616232Z * [new branch] gh/guangyey/142/orig -> origin/gh/guangyey/142/orig 2025-08-26T20:40:00.7616738Z * [new branch] gh/guangyey/145/base -> origin/gh/guangyey/145/base 2025-08-26T20:40:00.7617221Z * [new branch] gh/guangyey/145/head -> origin/gh/guangyey/145/head 2025-08-26T20:40:00.7617714Z * [new branch] gh/guangyey/145/orig -> origin/gh/guangyey/145/orig 2025-08-26T20:40:00.7618210Z * [new branch] gh/guangyey/153/base -> origin/gh/guangyey/153/base 2025-08-26T20:40:00.7618694Z * [new branch] gh/guangyey/153/head -> origin/gh/guangyey/153/head 2025-08-26T20:40:00.7619195Z * [new branch] gh/guangyey/153/orig -> origin/gh/guangyey/153/orig 2025-08-26T20:40:00.7619682Z * [new branch] gh/guangyey/158/base -> origin/gh/guangyey/158/base 2025-08-26T20:40:00.7620176Z * [new branch] gh/guangyey/158/head -> origin/gh/guangyey/158/head 2025-08-26T20:40:00.7620694Z * [new branch] gh/guangyey/158/orig -> origin/gh/guangyey/158/orig 2025-08-26T20:40:00.7621246Z * [new branch] gh/guangyey/159/base -> origin/gh/guangyey/159/base 2025-08-26T20:40:00.7621748Z * [new branch] gh/guangyey/159/head -> origin/gh/guangyey/159/head 2025-08-26T20:40:00.7622237Z * [new branch] gh/guangyey/159/orig -> origin/gh/guangyey/159/orig 2025-08-26T20:40:00.7622740Z * [new branch] gh/guangyey/163/base -> origin/gh/guangyey/163/base 2025-08-26T20:40:00.7623230Z * [new branch] gh/guangyey/163/head -> origin/gh/guangyey/163/head 2025-08-26T20:40:00.7623726Z * [new branch] gh/guangyey/163/orig -> origin/gh/guangyey/163/orig 2025-08-26T20:40:00.7624222Z * [new branch] gh/guangyey/165/base -> origin/gh/guangyey/165/base 2025-08-26T20:40:00.7624703Z * [new branch] gh/guangyey/165/head -> origin/gh/guangyey/165/head 2025-08-26T20:40:00.7625198Z * [new branch] gh/guangyey/165/orig -> origin/gh/guangyey/165/orig 2025-08-26T20:40:00.7625840Z * [new branch] gh/guangyey/168/base -> origin/gh/guangyey/168/base 2025-08-26T20:40:00.7626334Z * [new branch] gh/guangyey/168/head -> origin/gh/guangyey/168/head 2025-08-26T20:40:00.7626881Z * [new branch] gh/guangyey/168/orig -> origin/gh/guangyey/168/orig 2025-08-26T20:40:00.7627413Z * [new branch] gh/guangyey/169/base -> origin/gh/guangyey/169/base 2025-08-26T20:40:00.7627994Z * [new branch] gh/guangyey/169/head -> origin/gh/guangyey/169/head 2025-08-26T20:40:00.7628487Z * [new branch] gh/guangyey/169/orig -> origin/gh/guangyey/169/orig 2025-08-26T20:40:00.7628982Z * [new branch] gh/guangyey/170/base -> origin/gh/guangyey/170/base 2025-08-26T20:40:00.7629479Z * [new branch] gh/guangyey/170/head -> origin/gh/guangyey/170/head 2025-08-26T20:40:00.7629978Z * [new branch] gh/guangyey/170/orig -> origin/gh/guangyey/170/orig 2025-08-26T20:40:00.7630480Z * [new branch] gh/guangyey/171/base -> origin/gh/guangyey/171/base 2025-08-26T20:40:00.7630960Z * [new branch] gh/guangyey/171/head -> origin/gh/guangyey/171/head 2025-08-26T20:40:00.7631445Z * [new branch] gh/guangyey/171/orig -> origin/gh/guangyey/171/orig 2025-08-26T20:40:00.7631941Z * [new branch] gh/guangyey/173/base -> origin/gh/guangyey/173/base 2025-08-26T20:40:00.7632478Z * [new branch] gh/guangyey/173/head -> origin/gh/guangyey/173/head 2025-08-26T20:40:00.7633017Z * [new branch] gh/guangyey/173/orig -> origin/gh/guangyey/173/orig 2025-08-26T20:40:00.7633504Z * [new branch] gh/guangyey/174/base -> origin/gh/guangyey/174/base 2025-08-26T20:40:00.7633998Z * [new branch] gh/guangyey/174/head -> origin/gh/guangyey/174/head 2025-08-26T20:40:00.7634493Z * [new branch] gh/guangyey/174/orig -> origin/gh/guangyey/174/orig 2025-08-26T20:40:00.7634978Z * [new branch] gh/guangyey/175/base -> origin/gh/guangyey/175/base 2025-08-26T20:40:00.7635473Z * [new branch] gh/guangyey/175/head -> origin/gh/guangyey/175/head 2025-08-26T20:40:00.7635962Z * [new branch] gh/guangyey/175/orig -> origin/gh/guangyey/175/orig 2025-08-26T20:40:00.7636450Z * [new branch] gh/guangyey/176/base -> origin/gh/guangyey/176/base 2025-08-26T20:40:00.7636933Z * [new branch] gh/guangyey/176/head -> origin/gh/guangyey/176/head 2025-08-26T20:40:00.7637420Z * [new branch] gh/guangyey/176/orig -> origin/gh/guangyey/176/orig 2025-08-26T20:40:00.7637908Z * [new branch] gh/guangyey/177/base -> origin/gh/guangyey/177/base 2025-08-26T20:40:00.7638440Z * [new branch] gh/guangyey/177/head -> origin/gh/guangyey/177/head 2025-08-26T20:40:00.8052654Z * [new branch] gh/guangyey/177/orig -> origin/gh/guangyey/177/orig 2025-08-26T20:40:00.8053232Z * [new branch] gh/guangyey/178/base -> origin/gh/guangyey/178/base 2025-08-26T20:40:00.8053726Z * [new branch] gh/guangyey/178/head -> origin/gh/guangyey/178/head 2025-08-26T20:40:00.8054227Z * [new branch] gh/guangyey/178/orig -> origin/gh/guangyey/178/orig 2025-08-26T20:40:00.8054721Z * [new branch] gh/guangyey/179/base -> origin/gh/guangyey/179/base 2025-08-26T20:40:00.8055216Z * [new branch] gh/guangyey/179/head -> origin/gh/guangyey/179/head 2025-08-26T20:40:00.8055702Z * [new branch] gh/guangyey/179/orig -> origin/gh/guangyey/179/orig 2025-08-26T20:40:00.8056195Z * [new branch] gh/guangyey/180/base -> origin/gh/guangyey/180/base 2025-08-26T20:40:00.8056828Z * [new branch] gh/guangyey/180/head -> origin/gh/guangyey/180/head 2025-08-26T20:40:00.8057321Z * [new branch] gh/guangyey/180/orig -> origin/gh/guangyey/180/orig 2025-08-26T20:40:00.8057818Z * [new branch] gh/guangyey/181/base -> origin/gh/guangyey/181/base 2025-08-26T20:40:00.8058353Z * [new branch] gh/guangyey/181/head -> origin/gh/guangyey/181/head 2025-08-26T20:40:00.8058895Z * [new branch] gh/guangyey/181/orig -> origin/gh/guangyey/181/orig 2025-08-26T20:40:00.8059484Z * [new branch] gh/guangyey/182/base -> origin/gh/guangyey/182/base 2025-08-26T20:40:00.8059971Z * [new branch] gh/guangyey/182/head -> origin/gh/guangyey/182/head 2025-08-26T20:40:00.8060467Z * [new branch] gh/guangyey/182/orig -> origin/gh/guangyey/182/orig 2025-08-26T20:40:00.8060952Z * [new branch] gh/guangyey/183/base -> origin/gh/guangyey/183/base 2025-08-26T20:40:00.8061458Z * [new branch] gh/guangyey/183/head -> origin/gh/guangyey/183/head 2025-08-26T20:40:00.8061953Z * [new branch] gh/guangyey/183/orig -> origin/gh/guangyey/183/orig 2025-08-26T20:40:00.8062434Z * [new branch] gh/guangyey/184/base -> origin/gh/guangyey/184/base 2025-08-26T20:40:00.8062927Z * [new branch] gh/guangyey/184/head -> origin/gh/guangyey/184/head 2025-08-26T20:40:00.8063411Z * [new branch] gh/guangyey/184/orig -> origin/gh/guangyey/184/orig 2025-08-26T20:40:00.8063907Z * [new branch] gh/guangyey/185/base -> origin/gh/guangyey/185/base 2025-08-26T20:40:00.8064495Z * [new branch] gh/guangyey/185/head -> origin/gh/guangyey/185/head 2025-08-26T20:40:00.8064994Z * [new branch] gh/guangyey/185/orig -> origin/gh/guangyey/185/orig 2025-08-26T20:40:00.8065488Z * [new branch] gh/guangyey/186/base -> origin/gh/guangyey/186/base 2025-08-26T20:40:00.8065979Z * [new branch] gh/guangyey/186/head -> origin/gh/guangyey/186/head 2025-08-26T20:40:00.8066468Z * [new branch] gh/guangyey/186/orig -> origin/gh/guangyey/186/orig 2025-08-26T20:40:00.8066967Z * [new branch] gh/guangyey/187/base -> origin/gh/guangyey/187/base 2025-08-26T20:40:00.8067454Z * [new branch] gh/guangyey/187/head -> origin/gh/guangyey/187/head 2025-08-26T20:40:00.8067948Z * [new branch] gh/guangyey/187/orig -> origin/gh/guangyey/187/orig 2025-08-26T20:40:00.8068427Z * [new branch] gh/guangyey/188/base -> origin/gh/guangyey/188/base 2025-08-26T20:40:00.8068924Z * [new branch] gh/guangyey/188/head -> origin/gh/guangyey/188/head 2025-08-26T20:40:00.8069417Z * [new branch] gh/guangyey/188/orig -> origin/gh/guangyey/188/orig 2025-08-26T20:40:00.8069945Z * [new branch] gh/guangyey/189/base -> origin/gh/guangyey/189/base 2025-08-26T20:40:00.8070487Z * [new branch] gh/guangyey/189/head -> origin/gh/guangyey/189/head 2025-08-26T20:40:00.8070975Z * [new branch] gh/guangyey/189/orig -> origin/gh/guangyey/189/orig 2025-08-26T20:40:00.8071470Z * [new branch] gh/guangyey/190/base -> origin/gh/guangyey/190/base 2025-08-26T20:40:00.8071954Z * [new branch] gh/guangyey/190/head -> origin/gh/guangyey/190/head 2025-08-26T20:40:00.8072449Z * [new branch] gh/guangyey/190/orig -> origin/gh/guangyey/190/orig 2025-08-26T20:40:00.8072949Z * [new branch] gh/guangyey/191/base -> origin/gh/guangyey/191/base 2025-08-26T20:40:00.8073428Z * [new branch] gh/guangyey/191/head -> origin/gh/guangyey/191/head 2025-08-26T20:40:00.8073929Z * [new branch] gh/guangyey/191/orig -> origin/gh/guangyey/191/orig 2025-08-26T20:40:00.8075095Z * [new branch] gh/guangyey/79/base -> origin/gh/guangyey/79/base 2025-08-26T20:40:00.8075656Z * [new branch] gh/guangyey/79/head -> origin/gh/guangyey/79/head 2025-08-26T20:40:00.8076198Z * [new branch] gh/guangyey/79/orig -> origin/gh/guangyey/79/orig 2025-08-26T20:40:00.8076690Z * [new branch] gh/guangyey/89/base -> origin/gh/guangyey/89/base 2025-08-26T20:40:00.8464791Z * [new branch] gh/guangyey/89/head -> origin/gh/guangyey/89/head 2025-08-26T20:40:00.8465423Z * [new branch] gh/guangyey/89/orig -> origin/gh/guangyey/89/orig 2025-08-26T20:40:00.8465980Z * [new branch] gh/guilhermeleobas/107/base -> origin/gh/guilhermeleobas/107/base 2025-08-26T20:40:00.8466574Z * [new branch] gh/guilhermeleobas/107/head -> origin/gh/guilhermeleobas/107/head 2025-08-26T20:40:00.8467154Z * [new branch] gh/guilhermeleobas/107/orig -> origin/gh/guilhermeleobas/107/orig 2025-08-26T20:40:00.8467736Z * [new branch] gh/guilhermeleobas/108/base -> origin/gh/guilhermeleobas/108/base 2025-08-26T20:40:00.8468306Z * [new branch] gh/guilhermeleobas/108/head -> origin/gh/guilhermeleobas/108/head 2025-08-26T20:40:00.8468879Z * [new branch] gh/guilhermeleobas/108/orig -> origin/gh/guilhermeleobas/108/orig 2025-08-26T20:40:00.8469461Z * [new branch] gh/guilhermeleobas/124/base -> origin/gh/guilhermeleobas/124/base 2025-08-26T20:40:00.8470030Z * [new branch] gh/guilhermeleobas/124/head -> origin/gh/guilhermeleobas/124/head 2025-08-26T20:40:00.8470607Z * [new branch] gh/guilhermeleobas/124/orig -> origin/gh/guilhermeleobas/124/orig 2025-08-26T20:40:00.8471176Z * [new branch] gh/guilhermeleobas/147/base -> origin/gh/guilhermeleobas/147/base 2025-08-26T20:40:00.8471740Z * [new branch] gh/guilhermeleobas/147/head -> origin/gh/guilhermeleobas/147/head 2025-08-26T20:40:00.8472315Z * [new branch] gh/guilhermeleobas/147/orig -> origin/gh/guilhermeleobas/147/orig 2025-08-26T20:40:00.8472882Z * [new branch] gh/guilhermeleobas/150/base -> origin/gh/guilhermeleobas/150/base 2025-08-26T20:40:00.8473450Z * [new branch] gh/guilhermeleobas/150/head -> origin/gh/guilhermeleobas/150/head 2025-08-26T20:40:00.8474033Z * [new branch] gh/guilhermeleobas/150/orig -> origin/gh/guilhermeleobas/150/orig 2025-08-26T20:40:00.8474606Z * [new branch] gh/guilhermeleobas/163/base -> origin/gh/guilhermeleobas/163/base 2025-08-26T20:40:00.8475185Z * [new branch] gh/guilhermeleobas/163/head -> origin/gh/guilhermeleobas/163/head 2025-08-26T20:40:00.8475749Z * [new branch] gh/guilhermeleobas/163/orig -> origin/gh/guilhermeleobas/163/orig 2025-08-26T20:40:00.8476319Z * [new branch] gh/guilhermeleobas/164/base -> origin/gh/guilhermeleobas/164/base 2025-08-26T20:40:00.8476899Z * [new branch] gh/guilhermeleobas/164/head -> origin/gh/guilhermeleobas/164/head 2025-08-26T20:40:00.8477466Z * [new branch] gh/guilhermeleobas/164/orig -> origin/gh/guilhermeleobas/164/orig 2025-08-26T20:40:00.8478030Z * [new branch] gh/guilhermeleobas/165/base -> origin/gh/guilhermeleobas/165/base 2025-08-26T20:40:00.8478601Z * [new branch] gh/guilhermeleobas/165/head -> origin/gh/guilhermeleobas/165/head 2025-08-26T20:40:00.8479188Z * [new branch] gh/guilhermeleobas/165/orig -> origin/gh/guilhermeleobas/165/orig 2025-08-26T20:40:00.8479761Z * [new branch] gh/guilhermeleobas/166/base -> origin/gh/guilhermeleobas/166/base 2025-08-26T20:40:00.8480325Z * [new branch] gh/guilhermeleobas/166/head -> origin/gh/guilhermeleobas/166/head 2025-08-26T20:40:00.8480892Z * [new branch] gh/guilhermeleobas/166/orig -> origin/gh/guilhermeleobas/166/orig 2025-08-26T20:40:00.8481554Z * [new branch] gh/guilhermeleobas/167/base -> origin/gh/guilhermeleobas/167/base 2025-08-26T20:40:00.8482131Z * [new branch] gh/guilhermeleobas/167/head -> origin/gh/guilhermeleobas/167/head 2025-08-26T20:40:00.8482693Z * [new branch] gh/guilhermeleobas/167/orig -> origin/gh/guilhermeleobas/167/orig 2025-08-26T20:40:00.8483347Z * [new branch] gh/guilhermeleobas/168/base -> origin/gh/guilhermeleobas/168/base 2025-08-26T20:40:00.8483927Z * [new branch] gh/guilhermeleobas/168/head -> origin/gh/guilhermeleobas/168/head 2025-08-26T20:40:00.8484568Z * [new branch] gh/guilhermeleobas/168/orig -> origin/gh/guilhermeleobas/168/orig 2025-08-26T20:40:00.8485143Z * [new branch] gh/guilhermeleobas/169/base -> origin/gh/guilhermeleobas/169/base 2025-08-26T20:40:00.8485705Z * [new branch] gh/guilhermeleobas/169/head -> origin/gh/guilhermeleobas/169/head 2025-08-26T20:40:00.8486279Z * [new branch] gh/guilhermeleobas/169/orig -> origin/gh/guilhermeleobas/169/orig 2025-08-26T20:40:00.8487000Z * [new branch] gh/guilhermeleobas/170/base -> origin/gh/guilhermeleobas/170/base 2025-08-26T20:40:00.8487629Z * [new branch] gh/guilhermeleobas/170/head -> origin/gh/guilhermeleobas/170/head 2025-08-26T20:40:00.8488206Z * [new branch] gh/guilhermeleobas/170/orig -> origin/gh/guilhermeleobas/170/orig 2025-08-26T20:40:00.8488769Z * [new branch] gh/guilhermeleobas/171/base -> origin/gh/guilhermeleobas/171/base 2025-08-26T20:40:00.8489346Z * [new branch] gh/guilhermeleobas/171/head -> origin/gh/guilhermeleobas/171/head 2025-08-26T20:40:00.8886801Z * [new branch] gh/guilhermeleobas/171/orig -> origin/gh/guilhermeleobas/171/orig 2025-08-26T20:40:00.8887444Z * [new branch] gh/guilhermeleobas/173/base -> origin/gh/guilhermeleobas/173/base 2025-08-26T20:40:00.8888023Z * [new branch] gh/guilhermeleobas/173/head -> origin/gh/guilhermeleobas/173/head 2025-08-26T20:40:00.8888626Z * [new branch] gh/guilhermeleobas/173/orig -> origin/gh/guilhermeleobas/173/orig 2025-08-26T20:40:00.8889199Z * [new branch] gh/guilhermeleobas/183/base -> origin/gh/guilhermeleobas/183/base 2025-08-26T20:40:00.8889772Z * [new branch] gh/guilhermeleobas/183/head -> origin/gh/guilhermeleobas/183/head 2025-08-26T20:40:00.8890334Z * [new branch] gh/guilhermeleobas/183/orig -> origin/gh/guilhermeleobas/183/orig 2025-08-26T20:40:00.8890909Z * [new branch] gh/guilhermeleobas/184/base -> origin/gh/guilhermeleobas/184/base 2025-08-26T20:40:00.8891485Z * [new branch] gh/guilhermeleobas/184/head -> origin/gh/guilhermeleobas/184/head 2025-08-26T20:40:00.8892098Z * [new branch] gh/guilhermeleobas/184/orig -> origin/gh/guilhermeleobas/184/orig 2025-08-26T20:40:00.8892728Z * [new branch] gh/guilhermeleobas/185/base -> origin/gh/guilhermeleobas/185/base 2025-08-26T20:40:00.8893295Z * [new branch] gh/guilhermeleobas/185/head -> origin/gh/guilhermeleobas/185/head 2025-08-26T20:40:00.8893868Z * [new branch] gh/guilhermeleobas/185/orig -> origin/gh/guilhermeleobas/185/orig 2025-08-26T20:40:00.8894436Z * [new branch] gh/guilhermeleobas/192/base -> origin/gh/guilhermeleobas/192/base 2025-08-26T20:40:00.8894996Z * [new branch] gh/guilhermeleobas/192/head -> origin/gh/guilhermeleobas/192/head 2025-08-26T20:40:00.8895567Z * [new branch] gh/guilhermeleobas/192/orig -> origin/gh/guilhermeleobas/192/orig 2025-08-26T20:40:00.8896134Z * [new branch] gh/guilhermeleobas/193/base -> origin/gh/guilhermeleobas/193/base 2025-08-26T20:40:00.8896715Z * [new branch] gh/guilhermeleobas/193/head -> origin/gh/guilhermeleobas/193/head 2025-08-26T20:40:00.8897283Z * [new branch] gh/guilhermeleobas/193/orig -> origin/gh/guilhermeleobas/193/orig 2025-08-26T20:40:00.8898056Z * [new branch] gh/guilhermeleobas/194/base -> origin/gh/guilhermeleobas/194/base 2025-08-26T20:40:00.8898723Z * [new branch] gh/guilhermeleobas/194/head -> origin/gh/guilhermeleobas/194/head 2025-08-26T20:40:00.8899287Z * [new branch] gh/guilhermeleobas/194/orig -> origin/gh/guilhermeleobas/194/orig 2025-08-26T20:40:00.8899864Z * [new branch] gh/guilhermeleobas/203/base -> origin/gh/guilhermeleobas/203/base 2025-08-26T20:40:00.8901122Z * [new branch] gh/guilhermeleobas/203/head -> origin/gh/guilhermeleobas/203/head 2025-08-26T20:40:00.8901707Z * [new branch] gh/guilhermeleobas/203/orig -> origin/gh/guilhermeleobas/203/orig 2025-08-26T20:40:00.8902287Z * [new branch] gh/guilhermeleobas/204/base -> origin/gh/guilhermeleobas/204/base 2025-08-26T20:40:00.8902854Z * [new branch] gh/guilhermeleobas/204/head -> origin/gh/guilhermeleobas/204/head 2025-08-26T20:40:00.8903441Z * [new branch] gh/guilhermeleobas/204/orig -> origin/gh/guilhermeleobas/204/orig 2025-08-26T20:40:00.8904013Z * [new branch] gh/guilhermeleobas/205/base -> origin/gh/guilhermeleobas/205/base 2025-08-26T20:40:00.8904575Z * [new branch] gh/guilhermeleobas/205/head -> origin/gh/guilhermeleobas/205/head 2025-08-26T20:40:00.8905153Z * [new branch] gh/guilhermeleobas/205/orig -> origin/gh/guilhermeleobas/205/orig 2025-08-26T20:40:00.8905717Z * [new branch] gh/guilhermeleobas/206/base -> origin/gh/guilhermeleobas/206/base 2025-08-26T20:40:00.8906291Z * [new branch] gh/guilhermeleobas/206/head -> origin/gh/guilhermeleobas/206/head 2025-08-26T20:40:00.8906851Z * [new branch] gh/guilhermeleobas/206/orig -> origin/gh/guilhermeleobas/206/orig 2025-08-26T20:40:00.8907423Z * [new branch] gh/guilhermeleobas/209/base -> origin/gh/guilhermeleobas/209/base 2025-08-26T20:40:00.8908003Z * [new branch] gh/guilhermeleobas/209/head -> origin/gh/guilhermeleobas/209/head 2025-08-26T20:40:00.8908564Z * [new branch] gh/guilhermeleobas/209/orig -> origin/gh/guilhermeleobas/209/orig 2025-08-26T20:40:00.8909204Z * [new branch] gh/guilhermeleobas/210/base -> origin/gh/guilhermeleobas/210/base 2025-08-26T20:40:00.8909813Z * [new branch] gh/guilhermeleobas/210/head -> origin/gh/guilhermeleobas/210/head 2025-08-26T20:40:00.8910398Z * [new branch] gh/guilhermeleobas/210/orig -> origin/gh/guilhermeleobas/210/orig 2025-08-26T20:40:00.8910979Z * [new branch] gh/guilhermeleobas/211/base -> origin/gh/guilhermeleobas/211/base 2025-08-26T20:40:00.8911543Z * [new branch] gh/guilhermeleobas/211/head -> origin/gh/guilhermeleobas/211/head 2025-08-26T20:40:00.8912110Z * [new branch] gh/guilhermeleobas/211/orig -> origin/gh/guilhermeleobas/211/orig 2025-08-26T20:40:00.9294711Z * [new branch] gh/guilhermeleobas/213/base -> origin/gh/guilhermeleobas/213/base 2025-08-26T20:40:00.9295364Z * [new branch] gh/guilhermeleobas/213/head -> origin/gh/guilhermeleobas/213/head 2025-08-26T20:40:00.9295950Z * [new branch] gh/guilhermeleobas/213/orig -> origin/gh/guilhermeleobas/213/orig 2025-08-26T20:40:00.9296524Z * [new branch] gh/guilhermeleobas/214/base -> origin/gh/guilhermeleobas/214/base 2025-08-26T20:40:00.9297110Z * [new branch] gh/guilhermeleobas/214/head -> origin/gh/guilhermeleobas/214/head 2025-08-26T20:40:00.9297701Z * [new branch] gh/guilhermeleobas/214/orig -> origin/gh/guilhermeleobas/214/orig 2025-08-26T20:40:00.9298265Z * [new branch] gh/guilhermeleobas/215/base -> origin/gh/guilhermeleobas/215/base 2025-08-26T20:40:00.9298833Z * [new branch] gh/guilhermeleobas/215/head -> origin/gh/guilhermeleobas/215/head 2025-08-26T20:40:00.9299395Z * [new branch] gh/guilhermeleobas/215/orig -> origin/gh/guilhermeleobas/215/orig 2025-08-26T20:40:00.9300131Z * [new branch] gh/guilhermeleobas/216/base -> origin/gh/guilhermeleobas/216/base 2025-08-26T20:40:00.9300705Z * [new branch] gh/guilhermeleobas/216/head -> origin/gh/guilhermeleobas/216/head 2025-08-26T20:40:00.9301272Z * [new branch] gh/guilhermeleobas/216/orig -> origin/gh/guilhermeleobas/216/orig 2025-08-26T20:40:00.9301859Z * [new branch] gh/guilhermeleobas/217/base -> origin/gh/guilhermeleobas/217/base 2025-08-26T20:40:00.9302530Z * [new branch] gh/guilhermeleobas/217/head -> origin/gh/guilhermeleobas/217/head 2025-08-26T20:40:00.9303124Z * [new branch] gh/guilhermeleobas/217/orig -> origin/gh/guilhermeleobas/217/orig 2025-08-26T20:40:00.9303713Z * [new branch] gh/guilhermeleobas/218/base -> origin/gh/guilhermeleobas/218/base 2025-08-26T20:40:00.9304280Z * [new branch] gh/guilhermeleobas/218/head -> origin/gh/guilhermeleobas/218/head 2025-08-26T20:40:00.9304869Z * [new branch] gh/guilhermeleobas/218/orig -> origin/gh/guilhermeleobas/218/orig 2025-08-26T20:40:00.9305431Z * [new branch] gh/guilhermeleobas/219/base -> origin/gh/guilhermeleobas/219/base 2025-08-26T20:40:00.9305999Z * [new branch] gh/guilhermeleobas/219/head -> origin/gh/guilhermeleobas/219/head 2025-08-26T20:40:00.9306573Z * [new branch] gh/guilhermeleobas/219/orig -> origin/gh/guilhermeleobas/219/orig 2025-08-26T20:40:00.9307137Z * [new branch] gh/guilhermeleobas/220/base -> origin/gh/guilhermeleobas/220/base 2025-08-26T20:40:00.9307715Z * [new branch] gh/guilhermeleobas/220/head -> origin/gh/guilhermeleobas/220/head 2025-08-26T20:40:00.9308285Z * [new branch] gh/guilhermeleobas/220/orig -> origin/gh/guilhermeleobas/220/orig 2025-08-26T20:40:00.9308851Z * [new branch] gh/guilhermeleobas/221/base -> origin/gh/guilhermeleobas/221/base 2025-08-26T20:40:00.9309430Z * [new branch] gh/guilhermeleobas/221/head -> origin/gh/guilhermeleobas/221/head 2025-08-26T20:40:00.9309992Z * [new branch] gh/guilhermeleobas/221/orig -> origin/gh/guilhermeleobas/221/orig 2025-08-26T20:40:00.9310565Z * [new branch] gh/guilhermeleobas/222/base -> origin/gh/guilhermeleobas/222/base 2025-08-26T20:40:00.9311126Z * [new branch] gh/guilhermeleobas/222/head -> origin/gh/guilhermeleobas/222/head 2025-08-26T20:40:00.9311704Z * [new branch] gh/guilhermeleobas/222/orig -> origin/gh/guilhermeleobas/222/orig 2025-08-26T20:40:00.9312282Z * [new branch] gh/guilhermeleobas/223/base -> origin/gh/guilhermeleobas/223/base 2025-08-26T20:40:00.9312845Z * [new branch] gh/guilhermeleobas/223/head -> origin/gh/guilhermeleobas/223/head 2025-08-26T20:40:00.9313417Z * [new branch] gh/guilhermeleobas/223/orig -> origin/gh/guilhermeleobas/223/orig 2025-08-26T20:40:00.9313993Z * [new branch] gh/guilhermeleobas/224/base -> origin/gh/guilhermeleobas/224/base 2025-08-26T20:40:00.9314571Z * [new branch] gh/guilhermeleobas/224/head -> origin/gh/guilhermeleobas/224/head 2025-08-26T20:40:00.9315149Z * [new branch] gh/guilhermeleobas/224/orig -> origin/gh/guilhermeleobas/224/orig 2025-08-26T20:40:00.9315711Z * [new branch] gh/guilhermeleobas/225/base -> origin/gh/guilhermeleobas/225/base 2025-08-26T20:40:00.9316274Z * [new branch] gh/guilhermeleobas/225/head -> origin/gh/guilhermeleobas/225/head 2025-08-26T20:40:00.9316837Z * [new branch] gh/guilhermeleobas/225/orig -> origin/gh/guilhermeleobas/225/orig 2025-08-26T20:40:00.9317413Z * [new branch] gh/guilhermeleobas/226/base -> origin/gh/guilhermeleobas/226/base 2025-08-26T20:40:00.9317982Z * [new branch] gh/guilhermeleobas/226/head -> origin/gh/guilhermeleobas/226/head 2025-08-26T20:40:00.9328196Z * [new branch] gh/guilhermeleobas/226/orig -> origin/gh/guilhermeleobas/226/orig 2025-08-26T20:40:00.9328940Z * [new branch] gh/guilhermeleobas/227/base -> origin/gh/guilhermeleobas/227/base 2025-08-26T20:40:00.9713404Z * [new branch] gh/guilhermeleobas/227/head -> origin/gh/guilhermeleobas/227/head 2025-08-26T20:40:00.9714046Z * [new branch] gh/guilhermeleobas/227/orig -> origin/gh/guilhermeleobas/227/orig 2025-08-26T20:40:00.9714628Z * [new branch] gh/guilhermeleobas/228/base -> origin/gh/guilhermeleobas/228/base 2025-08-26T20:40:00.9715365Z * [new branch] gh/guilhermeleobas/228/head -> origin/gh/guilhermeleobas/228/head 2025-08-26T20:40:00.9716040Z * [new branch] gh/guilhermeleobas/228/orig -> origin/gh/guilhermeleobas/228/orig 2025-08-26T20:40:00.9716634Z * [new branch] gh/guilhermeleobas/229/base -> origin/gh/guilhermeleobas/229/base 2025-08-26T20:40:00.9717207Z * [new branch] gh/guilhermeleobas/229/head -> origin/gh/guilhermeleobas/229/head 2025-08-26T20:40:00.9717786Z * [new branch] gh/guilhermeleobas/229/orig -> origin/gh/guilhermeleobas/229/orig 2025-08-26T20:40:00.9718367Z * [new branch] gh/guilhermeleobas/230/base -> origin/gh/guilhermeleobas/230/base 2025-08-26T20:40:00.9718928Z * [new branch] gh/guilhermeleobas/230/head -> origin/gh/guilhermeleobas/230/head 2025-08-26T20:40:00.9719500Z * [new branch] gh/guilhermeleobas/230/orig -> origin/gh/guilhermeleobas/230/orig 2025-08-26T20:40:00.9720081Z * [new branch] gh/guilhermeleobas/231/base -> origin/gh/guilhermeleobas/231/base 2025-08-26T20:40:00.9720652Z * [new branch] gh/guilhermeleobas/231/head -> origin/gh/guilhermeleobas/231/head 2025-08-26T20:40:00.9721218Z * [new branch] gh/guilhermeleobas/231/orig -> origin/gh/guilhermeleobas/231/orig 2025-08-26T20:40:00.9721838Z * [new branch] gh/guilhermeleobas/232/base -> origin/gh/guilhermeleobas/232/base 2025-08-26T20:40:00.9722463Z * [new branch] gh/guilhermeleobas/232/head -> origin/gh/guilhermeleobas/232/head 2025-08-26T20:40:00.9723041Z * [new branch] gh/guilhermeleobas/232/orig -> origin/gh/guilhermeleobas/232/orig 2025-08-26T20:40:00.9723676Z * [new branch] gh/guilhermeleobas/233/base -> origin/gh/guilhermeleobas/233/base 2025-08-26T20:40:00.9724254Z * [new branch] gh/guilhermeleobas/233/head -> origin/gh/guilhermeleobas/233/head 2025-08-26T20:40:00.9724823Z * [new branch] gh/guilhermeleobas/233/orig -> origin/gh/guilhermeleobas/233/orig 2025-08-26T20:40:00.9725412Z * [new branch] gh/guilhermeleobas/234/base -> origin/gh/guilhermeleobas/234/base 2025-08-26T20:40:00.9725998Z * [new branch] gh/guilhermeleobas/234/head -> origin/gh/guilhermeleobas/234/head 2025-08-26T20:40:00.9726570Z * [new branch] gh/guilhermeleobas/234/orig -> origin/gh/guilhermeleobas/234/orig 2025-08-26T20:40:00.9727144Z * [new branch] gh/guilhermeleobas/235/base -> origin/gh/guilhermeleobas/235/base 2025-08-26T20:40:00.9727762Z * [new branch] gh/guilhermeleobas/235/head -> origin/gh/guilhermeleobas/235/head 2025-08-26T20:40:00.9728392Z * [new branch] gh/guilhermeleobas/235/orig -> origin/gh/guilhermeleobas/235/orig 2025-08-26T20:40:00.9728973Z * [new branch] gh/guilhermeleobas/236/base -> origin/gh/guilhermeleobas/236/base 2025-08-26T20:40:00.9729540Z * [new branch] gh/guilhermeleobas/236/head -> origin/gh/guilhermeleobas/236/head 2025-08-26T20:40:00.9730126Z * [new branch] gh/guilhermeleobas/236/orig -> origin/gh/guilhermeleobas/236/orig 2025-08-26T20:40:00.9730700Z * [new branch] gh/guilhermeleobas/237/base -> origin/gh/guilhermeleobas/237/base 2025-08-26T20:40:00.9731279Z * [new branch] gh/guilhermeleobas/237/head -> origin/gh/guilhermeleobas/237/head 2025-08-26T20:40:00.9731957Z * [new branch] gh/guilhermeleobas/237/orig -> origin/gh/guilhermeleobas/237/orig 2025-08-26T20:40:00.9732536Z * [new branch] gh/guilhermeleobas/238/base -> origin/gh/guilhermeleobas/238/base 2025-08-26T20:40:00.9733122Z * [new branch] gh/guilhermeleobas/238/head -> origin/gh/guilhermeleobas/238/head 2025-08-26T20:40:00.9733744Z * [new branch] gh/guilhermeleobas/238/orig -> origin/gh/guilhermeleobas/238/orig 2025-08-26T20:40:00.9734383Z * [new branch] gh/guilhermeleobas/239/base -> origin/gh/guilhermeleobas/239/base 2025-08-26T20:40:00.9735063Z * [new branch] gh/guilhermeleobas/239/head -> origin/gh/guilhermeleobas/239/head 2025-08-26T20:40:00.9735634Z * [new branch] gh/guilhermeleobas/239/orig -> origin/gh/guilhermeleobas/239/orig 2025-08-26T20:40:00.9736219Z * [new branch] gh/guilhermeleobas/73/base -> origin/gh/guilhermeleobas/73/base 2025-08-26T20:40:00.9736785Z * [new branch] gh/guilhermeleobas/73/head -> origin/gh/guilhermeleobas/73/head 2025-08-26T20:40:00.9737361Z * [new branch] gh/guilhermeleobas/73/orig -> origin/gh/guilhermeleobas/73/orig 2025-08-26T20:40:00.9737923Z * [new branch] gh/henrylhtsang/103/base -> origin/gh/henrylhtsang/103/base 2025-08-26T20:40:00.9738470Z * [new branch] gh/henrylhtsang/103/head -> origin/gh/henrylhtsang/103/head 2025-08-26T20:40:01.0153566Z * [new branch] gh/henrylhtsang/103/orig -> origin/gh/henrylhtsang/103/orig 2025-08-26T20:40:01.0154214Z * [new branch] gh/henrylhtsang/132/base -> origin/gh/henrylhtsang/132/base 2025-08-26T20:40:01.0154775Z * [new branch] gh/henrylhtsang/132/head -> origin/gh/henrylhtsang/132/head 2025-08-26T20:40:01.0155318Z * [new branch] gh/henrylhtsang/132/orig -> origin/gh/henrylhtsang/132/orig 2025-08-26T20:40:01.0155855Z * [new branch] gh/henrylhtsang/133/base -> origin/gh/henrylhtsang/133/base 2025-08-26T20:40:01.0156403Z * [new branch] gh/henrylhtsang/133/head -> origin/gh/henrylhtsang/133/head 2025-08-26T20:40:01.0156934Z * [new branch] gh/henrylhtsang/133/orig -> origin/gh/henrylhtsang/133/orig 2025-08-26T20:40:01.0157470Z * [new branch] gh/henrylhtsang/134/base -> origin/gh/henrylhtsang/134/base 2025-08-26T20:40:01.0157997Z * [new branch] gh/henrylhtsang/134/head -> origin/gh/henrylhtsang/134/head 2025-08-26T20:40:01.0158539Z * [new branch] gh/henrylhtsang/134/orig -> origin/gh/henrylhtsang/134/orig 2025-08-26T20:40:01.0159078Z * [new branch] gh/henrylhtsang/135/base -> origin/gh/henrylhtsang/135/base 2025-08-26T20:40:01.0159668Z * [new branch] gh/henrylhtsang/135/head -> origin/gh/henrylhtsang/135/head 2025-08-26T20:40:01.0160266Z * [new branch] gh/henrylhtsang/135/orig -> origin/gh/henrylhtsang/135/orig 2025-08-26T20:40:01.0160809Z * [new branch] gh/henrylhtsang/136/base -> origin/gh/henrylhtsang/136/base 2025-08-26T20:40:01.0161346Z * [new branch] gh/henrylhtsang/136/head -> origin/gh/henrylhtsang/136/head 2025-08-26T20:40:01.0161885Z * [new branch] gh/henrylhtsang/136/orig -> origin/gh/henrylhtsang/136/orig 2025-08-26T20:40:01.0162419Z * [new branch] gh/henrylhtsang/137/base -> origin/gh/henrylhtsang/137/base 2025-08-26T20:40:01.0162955Z * [new branch] gh/henrylhtsang/137/head -> origin/gh/henrylhtsang/137/head 2025-08-26T20:40:01.0163569Z * [new branch] gh/henrylhtsang/137/orig -> origin/gh/henrylhtsang/137/orig 2025-08-26T20:40:01.0164097Z * [new branch] gh/henrylhtsang/138/base -> origin/gh/henrylhtsang/138/base 2025-08-26T20:40:01.0164644Z * [new branch] gh/henrylhtsang/138/head -> origin/gh/henrylhtsang/138/head 2025-08-26T20:40:01.0165174Z * [new branch] gh/henrylhtsang/138/orig -> origin/gh/henrylhtsang/138/orig 2025-08-26T20:40:01.0165981Z * [new branch] gh/henrylhtsang/139/base -> origin/gh/henrylhtsang/139/base 2025-08-26T20:40:01.0166540Z * [new branch] gh/henrylhtsang/139/head -> origin/gh/henrylhtsang/139/head 2025-08-26T20:40:01.0167074Z * [new branch] gh/henrylhtsang/139/orig -> origin/gh/henrylhtsang/139/orig 2025-08-26T20:40:01.0167616Z * [new branch] gh/henrylhtsang/140/base -> origin/gh/henrylhtsang/140/base 2025-08-26T20:40:01.0168255Z * [new branch] gh/henrylhtsang/140/head -> origin/gh/henrylhtsang/140/head 2025-08-26T20:40:01.0168814Z * [new branch] gh/henrylhtsang/140/orig -> origin/gh/henrylhtsang/140/orig 2025-08-26T20:40:01.0169359Z * [new branch] gh/henrylhtsang/141/base -> origin/gh/henrylhtsang/141/base 2025-08-26T20:40:01.0169891Z * [new branch] gh/henrylhtsang/141/head -> origin/gh/henrylhtsang/141/head 2025-08-26T20:40:01.0170450Z * [new branch] gh/henrylhtsang/141/orig -> origin/gh/henrylhtsang/141/orig 2025-08-26T20:40:01.0170984Z * [new branch] gh/henrylhtsang/142/base -> origin/gh/henrylhtsang/142/base 2025-08-26T20:40:01.0171584Z * [new branch] gh/henrylhtsang/142/head -> origin/gh/henrylhtsang/142/head 2025-08-26T20:40:01.0172167Z * [new branch] gh/henrylhtsang/142/orig -> origin/gh/henrylhtsang/142/orig 2025-08-26T20:40:01.0172728Z * [new branch] gh/henrylhtsang/143/base -> origin/gh/henrylhtsang/143/base 2025-08-26T20:40:01.0173280Z * [new branch] gh/henrylhtsang/143/head -> origin/gh/henrylhtsang/143/head 2025-08-26T20:40:01.0173814Z * [new branch] gh/henrylhtsang/143/orig -> origin/gh/henrylhtsang/143/orig 2025-08-26T20:40:01.0174357Z * [new branch] gh/henrylhtsang/144/base -> origin/gh/henrylhtsang/144/base 2025-08-26T20:40:01.0174899Z * [new branch] gh/henrylhtsang/144/head -> origin/gh/henrylhtsang/144/head 2025-08-26T20:40:01.0175446Z * [new branch] gh/henrylhtsang/144/orig -> origin/gh/henrylhtsang/144/orig 2025-08-26T20:40:01.0175990Z * [new branch] gh/henrylhtsang/145/base -> origin/gh/henrylhtsang/145/base 2025-08-26T20:40:01.0176526Z * [new branch] gh/henrylhtsang/145/head -> origin/gh/henrylhtsang/145/head 2025-08-26T20:40:01.0177070Z * [new branch] gh/henrylhtsang/145/orig -> origin/gh/henrylhtsang/145/orig 2025-08-26T20:40:01.0177656Z * [new branch] gh/henrylhtsang/146/base -> origin/gh/henrylhtsang/146/base 2025-08-26T20:40:01.0178255Z * [new branch] gh/henrylhtsang/146/head -> origin/gh/henrylhtsang/146/head 2025-08-26T20:40:01.0618969Z * [new branch] gh/henrylhtsang/146/orig -> origin/gh/henrylhtsang/146/orig 2025-08-26T20:40:01.0619574Z * [new branch] gh/henrylhtsang/147/base -> origin/gh/henrylhtsang/147/base 2025-08-26T20:40:01.0620203Z * [new branch] gh/henrylhtsang/147/head -> origin/gh/henrylhtsang/147/head 2025-08-26T20:40:01.0620794Z * [new branch] gh/henrylhtsang/147/orig -> origin/gh/henrylhtsang/147/orig 2025-08-26T20:40:01.0621375Z * [new branch] gh/henrylhtsang/148/base -> origin/gh/henrylhtsang/148/base 2025-08-26T20:40:01.0621914Z * [new branch] gh/henrylhtsang/148/head -> origin/gh/henrylhtsang/148/head 2025-08-26T20:40:01.0622455Z * [new branch] gh/henrylhtsang/148/orig -> origin/gh/henrylhtsang/148/orig 2025-08-26T20:40:01.0622995Z * [new branch] gh/henrylhtsang/149/base -> origin/gh/henrylhtsang/149/base 2025-08-26T20:40:01.0623539Z * [new branch] gh/henrylhtsang/149/head -> origin/gh/henrylhtsang/149/head 2025-08-26T20:40:01.0624073Z * [new branch] gh/henrylhtsang/149/orig -> origin/gh/henrylhtsang/149/orig 2025-08-26T20:40:01.0624767Z * [new branch] gh/huydhn/1/next -> origin/gh/huydhn/1/next 2025-08-26T20:40:01.0625233Z * [new branch] gh/huydhn/2/next -> origin/gh/huydhn/2/next 2025-08-26T20:40:01.0625701Z * [new branch] gh/huydhn/3/next -> origin/gh/huydhn/3/next 2025-08-26T20:40:01.0626167Z * [new branch] gh/huydhn/4/next -> origin/gh/huydhn/4/next 2025-08-26T20:40:01.0626679Z * [new branch] gh/huydhn/5/next -> origin/gh/huydhn/5/next 2025-08-26T20:40:01.0627339Z * [new branch] gh/huydhn/6/head -> origin/gh/huydhn/6/head 2025-08-26T20:40:01.0627803Z * [new branch] gh/huydhn/6/next -> origin/gh/huydhn/6/next 2025-08-26T20:40:01.0628273Z * [new branch] gh/huydhn/6/orig -> origin/gh/huydhn/6/orig 2025-08-26T20:40:01.0628724Z * [new branch] gh/int3/97/base -> origin/gh/int3/97/base 2025-08-26T20:40:01.0629196Z * [new branch] gh/int3/97/head -> origin/gh/int3/97/head 2025-08-26T20:40:01.0629673Z * [new branch] gh/isuruf/101/base -> origin/gh/isuruf/101/base 2025-08-26T20:40:01.0630143Z * [new branch] gh/isuruf/101/head -> origin/gh/isuruf/101/head 2025-08-26T20:40:01.0630624Z * [new branch] gh/isuruf/116/base -> origin/gh/isuruf/116/base 2025-08-26T20:40:01.0631094Z * [new branch] gh/isuruf/116/head -> origin/gh/isuruf/116/head 2025-08-26T20:40:01.0631575Z * [new branch] gh/isuruf/116/orig -> origin/gh/isuruf/116/orig 2025-08-26T20:40:01.0632058Z * [new branch] gh/isuruf/141/base -> origin/gh/isuruf/141/base 2025-08-26T20:40:01.0632522Z * [new branch] gh/isuruf/141/head -> origin/gh/isuruf/141/head 2025-08-26T20:40:01.0633081Z * [new branch] gh/isuruf/141/orig -> origin/gh/isuruf/141/orig 2025-08-26T20:40:01.0633605Z * [new branch] gh/isuruf/142/base -> origin/gh/isuruf/142/base 2025-08-26T20:40:01.0634084Z * [new branch] gh/isuruf/142/head -> origin/gh/isuruf/142/head 2025-08-26T20:40:01.0634561Z * [new branch] gh/isuruf/142/orig -> origin/gh/isuruf/142/orig 2025-08-26T20:40:01.0635028Z * [new branch] gh/isuruf/143/base -> origin/gh/isuruf/143/base 2025-08-26T20:40:01.0635503Z * [new branch] gh/isuruf/143/head -> origin/gh/isuruf/143/head 2025-08-26T20:40:01.0635971Z * [new branch] gh/isuruf/143/orig -> origin/gh/isuruf/143/orig 2025-08-26T20:40:01.0636452Z * [new branch] gh/isuruf/81/base -> origin/gh/isuruf/81/base 2025-08-26T20:40:01.0636916Z * [new branch] gh/isuruf/81/head -> origin/gh/isuruf/81/head 2025-08-26T20:40:01.0637396Z * [new branch] gh/isuruf/81/orig -> origin/gh/isuruf/81/orig 2025-08-26T20:40:01.0637887Z * [new branch] gh/jamesjwu/140/base -> origin/gh/jamesjwu/140/base 2025-08-26T20:40:01.0638379Z * [new branch] gh/jamesjwu/140/head -> origin/gh/jamesjwu/140/head 2025-08-26T20:40:01.0638884Z * [new branch] gh/jamesjwu/140/orig -> origin/gh/jamesjwu/140/orig 2025-08-26T20:40:01.0639371Z * [new branch] gh/jamesjwu/150/base -> origin/gh/jamesjwu/150/base 2025-08-26T20:40:01.0639866Z * [new branch] gh/jamesjwu/150/head -> origin/gh/jamesjwu/150/head 2025-08-26T20:40:01.0640372Z * [new branch] gh/jamesjwu/150/orig -> origin/gh/jamesjwu/150/orig 2025-08-26T20:40:01.0640860Z * [new branch] gh/jamesjwu/154/base -> origin/gh/jamesjwu/154/base 2025-08-26T20:40:01.0641354Z * [new branch] gh/jamesjwu/154/head -> origin/gh/jamesjwu/154/head 2025-08-26T20:40:01.0641952Z * [new branch] gh/jamesjwu/154/orig -> origin/gh/jamesjwu/154/orig 2025-08-26T20:40:01.0642457Z * [new branch] gh/jamesjwu/155/base -> origin/gh/jamesjwu/155/base 2025-08-26T20:40:01.1079124Z * [new branch] gh/jamesjwu/155/head -> origin/gh/jamesjwu/155/head 2025-08-26T20:40:01.1079672Z * [new branch] gh/jamesjwu/155/orig -> origin/gh/jamesjwu/155/orig 2025-08-26T20:40:01.1080175Z * [new branch] gh/jamesjwu/159/base -> origin/gh/jamesjwu/159/base 2025-08-26T20:40:01.1080828Z * [new branch] gh/jamesjwu/159/head -> origin/gh/jamesjwu/159/head 2025-08-26T20:40:01.1081321Z * [new branch] gh/jamesjwu/159/orig -> origin/gh/jamesjwu/159/orig 2025-08-26T20:40:01.1081833Z * [new branch] gh/jamesjwu/163/base -> origin/gh/jamesjwu/163/base 2025-08-26T20:40:01.1082327Z * [new branch] gh/jamesjwu/163/head -> origin/gh/jamesjwu/163/head 2025-08-26T20:40:01.1082825Z * [new branch] gh/jamesjwu/163/orig -> origin/gh/jamesjwu/163/orig 2025-08-26T20:40:01.1083500Z * [new branch] gh/jamesjwu/171/base -> origin/gh/jamesjwu/171/base 2025-08-26T20:40:01.1084055Z * [new branch] gh/jamesjwu/171/head -> origin/gh/jamesjwu/171/head 2025-08-26T20:40:01.1084541Z * [new branch] gh/jamesjwu/171/orig -> origin/gh/jamesjwu/171/orig 2025-08-26T20:40:01.1085040Z * [new branch] gh/jamesjwu/175/base -> origin/gh/jamesjwu/175/base 2025-08-26T20:40:01.1085534Z * [new branch] gh/jamesjwu/175/head -> origin/gh/jamesjwu/175/head 2025-08-26T20:40:01.1086031Z * [new branch] gh/jamesjwu/175/orig -> origin/gh/jamesjwu/175/orig 2025-08-26T20:40:01.1086523Z * [new branch] gh/jamesjwu/176/base -> origin/gh/jamesjwu/176/base 2025-08-26T20:40:01.1087008Z * [new branch] gh/jamesjwu/176/head -> origin/gh/jamesjwu/176/head 2025-08-26T20:40:01.1087510Z * [new branch] gh/jamesjwu/176/orig -> origin/gh/jamesjwu/176/orig 2025-08-26T20:40:01.1087992Z * [new branch] gh/jamesjwu/180/base -> origin/gh/jamesjwu/180/base 2025-08-26T20:40:01.1088495Z * [new branch] gh/jamesjwu/180/head -> origin/gh/jamesjwu/180/head 2025-08-26T20:40:01.1088983Z * [new branch] gh/jamesjwu/180/orig -> origin/gh/jamesjwu/180/orig 2025-08-26T20:40:01.1089541Z * [new branch] gh/jamesjwu/181/base -> origin/gh/jamesjwu/181/base 2025-08-26T20:40:01.1090076Z * [new branch] gh/jamesjwu/181/head -> origin/gh/jamesjwu/181/head 2025-08-26T20:40:01.1090565Z * [new branch] gh/jamesjwu/181/orig -> origin/gh/jamesjwu/181/orig 2025-08-26T20:40:01.1091054Z * [new branch] gh/jamesjwu/182/base -> origin/gh/jamesjwu/182/base 2025-08-26T20:40:01.1091536Z * [new branch] gh/jamesjwu/182/head -> origin/gh/jamesjwu/182/head 2025-08-26T20:40:01.1092038Z * [new branch] gh/jamesjwu/182/orig -> origin/gh/jamesjwu/182/orig 2025-08-26T20:40:01.1092523Z * [new branch] gh/jamesjwu/183/base -> origin/gh/jamesjwu/183/base 2025-08-26T20:40:01.1093029Z * [new branch] gh/jamesjwu/183/head -> origin/gh/jamesjwu/183/head 2025-08-26T20:40:01.1093512Z * [new branch] gh/jamesjwu/183/orig -> origin/gh/jamesjwu/183/orig 2025-08-26T20:40:01.1094013Z * [new branch] gh/jamesjwu/184/base -> origin/gh/jamesjwu/184/base 2025-08-26T20:40:01.1094508Z * [new branch] gh/jamesjwu/184/head -> origin/gh/jamesjwu/184/head 2025-08-26T20:40:01.1094986Z * [new branch] gh/jamesjwu/184/orig -> origin/gh/jamesjwu/184/orig 2025-08-26T20:40:01.1095519Z * [new branch] gh/jamesjwu/185/base -> origin/gh/jamesjwu/185/base 2025-08-26T20:40:01.1096172Z * [new branch] gh/jamesjwu/185/head -> origin/gh/jamesjwu/185/head 2025-08-26T20:40:01.1096666Z * [new branch] gh/jamesjwu/185/orig -> origin/gh/jamesjwu/185/orig 2025-08-26T20:40:01.1097157Z * [new branch] gh/jamesjwu/52/base -> origin/gh/jamesjwu/52/base 2025-08-26T20:40:01.1097637Z * [new branch] gh/jamesjwu/52/head -> origin/gh/jamesjwu/52/head 2025-08-26T20:40:01.1098131Z * [new branch] gh/jamesjwu/53/base -> origin/gh/jamesjwu/53/base 2025-08-26T20:40:01.1098685Z * [new branch] gh/jamesjwu/53/head -> origin/gh/jamesjwu/53/head 2025-08-26T20:40:01.1099181Z * [new branch] gh/jamesjwu/54/base -> origin/gh/jamesjwu/54/base 2025-08-26T20:40:01.1099676Z * [new branch] gh/jamesjwu/54/head -> origin/gh/jamesjwu/54/head 2025-08-26T20:40:01.1100153Z * [new branch] gh/jamesjwu/55/base -> origin/gh/jamesjwu/55/base 2025-08-26T20:40:01.1100642Z * [new branch] gh/jamesjwu/55/head -> origin/gh/jamesjwu/55/head 2025-08-26T20:40:01.1101126Z * [new branch] gh/jamesjwu/56/base -> origin/gh/jamesjwu/56/base 2025-08-26T20:40:01.1101666Z * [new branch] gh/jamesjwu/56/head -> origin/gh/jamesjwu/56/head 2025-08-26T20:40:01.1102190Z * [new branch] gh/jamesjwu/57/base -> origin/gh/jamesjwu/57/base 2025-08-26T20:40:01.1102675Z * [new branch] gh/jamesjwu/57/head -> origin/gh/jamesjwu/57/head 2025-08-26T20:40:01.1531034Z * [new branch] gh/jamesjwu/58/base -> origin/gh/jamesjwu/58/base 2025-08-26T20:40:01.1531586Z * [new branch] gh/jamesjwu/58/head -> origin/gh/jamesjwu/58/head 2025-08-26T20:40:01.1532085Z * [new branch] gh/jamesjwu/59/base -> origin/gh/jamesjwu/59/base 2025-08-26T20:40:01.1532577Z * [new branch] gh/jamesjwu/59/head -> origin/gh/jamesjwu/59/head 2025-08-26T20:40:01.1533073Z * [new branch] gh/jamesjwu/60/base -> origin/gh/jamesjwu/60/base 2025-08-26T20:40:01.1533551Z * [new branch] gh/jamesjwu/60/head -> origin/gh/jamesjwu/60/head 2025-08-26T20:40:01.1534025Z * [new branch] gh/jamesjwu/61/base -> origin/gh/jamesjwu/61/base 2025-08-26T20:40:01.1534504Z * [new branch] gh/jamesjwu/61/head -> origin/gh/jamesjwu/61/head 2025-08-26T20:40:01.1534985Z * [new branch] gh/jamesjwu/62/base -> origin/gh/jamesjwu/62/base 2025-08-26T20:40:01.1535464Z * [new branch] gh/jamesjwu/62/head -> origin/gh/jamesjwu/62/head 2025-08-26T20:40:01.1535945Z * [new branch] gh/jamesjwu/63/base -> origin/gh/jamesjwu/63/base 2025-08-26T20:40:01.1536415Z * [new branch] gh/jamesjwu/63/head -> origin/gh/jamesjwu/63/head 2025-08-26T20:40:01.1536904Z * [new branch] gh/jamesjwu/64/base -> origin/gh/jamesjwu/64/base 2025-08-26T20:40:01.1537385Z * [new branch] gh/jamesjwu/64/head -> origin/gh/jamesjwu/64/head 2025-08-26T20:40:01.1537861Z * [new branch] gh/jamesjwu/65/base -> origin/gh/jamesjwu/65/base 2025-08-26T20:40:01.1538350Z * [new branch] gh/jamesjwu/65/head -> origin/gh/jamesjwu/65/head 2025-08-26T20:40:01.1538827Z * [new branch] gh/janeyx99/165/base -> origin/gh/janeyx99/165/base 2025-08-26T20:40:01.1539327Z * [new branch] gh/janeyx99/165/head -> origin/gh/janeyx99/165/head 2025-08-26T20:40:01.1539809Z * [new branch] gh/janeyx99/165/orig -> origin/gh/janeyx99/165/orig 2025-08-26T20:40:01.1540302Z * [new branch] gh/janeyx99/201/base -> origin/gh/janeyx99/201/base 2025-08-26T20:40:01.1540796Z * [new branch] gh/janeyx99/201/head -> origin/gh/janeyx99/201/head 2025-08-26T20:40:01.1541450Z * [new branch] gh/janeyx99/201/orig -> origin/gh/janeyx99/201/orig 2025-08-26T20:40:01.1541939Z * [new branch] gh/janeyx99/225/base -> origin/gh/janeyx99/225/base 2025-08-26T20:40:01.1542416Z * [new branch] gh/janeyx99/225/head -> origin/gh/janeyx99/225/head 2025-08-26T20:40:01.1542908Z * [new branch] gh/janeyx99/225/orig -> origin/gh/janeyx99/225/orig 2025-08-26T20:40:01.1543403Z * [new branch] gh/janeyx99/282/base -> origin/gh/janeyx99/282/base 2025-08-26T20:40:01.1543992Z * [new branch] gh/janeyx99/282/head -> origin/gh/janeyx99/282/head 2025-08-26T20:40:01.1544480Z * [new branch] gh/janeyx99/282/orig -> origin/gh/janeyx99/282/orig 2025-08-26T20:40:01.1544959Z * [new branch] gh/janeyx99/283/base -> origin/gh/janeyx99/283/base 2025-08-26T20:40:01.1545451Z * [new branch] gh/janeyx99/283/head -> origin/gh/janeyx99/283/head 2025-08-26T20:40:01.1545945Z * [new branch] gh/janeyx99/283/orig -> origin/gh/janeyx99/283/orig 2025-08-26T20:40:01.1546422Z * [new branch] gh/janeyx99/284/base -> origin/gh/janeyx99/284/base 2025-08-26T20:40:01.1546907Z * [new branch] gh/janeyx99/284/head -> origin/gh/janeyx99/284/head 2025-08-26T20:40:01.1547384Z * [new branch] gh/janeyx99/284/orig -> origin/gh/janeyx99/284/orig 2025-08-26T20:40:01.1547866Z * [new branch] gh/janeyx99/285/base -> origin/gh/janeyx99/285/base 2025-08-26T20:40:01.1548356Z * [new branch] gh/janeyx99/285/head -> origin/gh/janeyx99/285/head 2025-08-26T20:40:01.1548833Z * [new branch] gh/janeyx99/285/orig -> origin/gh/janeyx99/285/orig 2025-08-26T20:40:01.1549315Z * [new branch] gh/janeyx99/286/base -> origin/gh/janeyx99/286/base 2025-08-26T20:40:01.1549801Z * [new branch] gh/janeyx99/286/head -> origin/gh/janeyx99/286/head 2025-08-26T20:40:01.1550300Z * [new branch] gh/janeyx99/286/orig -> origin/gh/janeyx99/286/orig 2025-08-26T20:40:01.1550784Z * [new branch] gh/janeyx99/287/base -> origin/gh/janeyx99/287/base 2025-08-26T20:40:01.1551271Z * [new branch] gh/janeyx99/287/head -> origin/gh/janeyx99/287/head 2025-08-26T20:40:01.1551757Z * [new branch] gh/janeyx99/287/orig -> origin/gh/janeyx99/287/orig 2025-08-26T20:40:01.1552240Z * [new branch] gh/janeyx99/288/base -> origin/gh/janeyx99/288/base 2025-08-26T20:40:01.1552731Z * [new branch] gh/janeyx99/288/head -> origin/gh/janeyx99/288/head 2025-08-26T20:40:01.1553209Z * [new branch] gh/janeyx99/288/orig -> origin/gh/janeyx99/288/orig 2025-08-26T20:40:01.1992962Z * [new branch] gh/janeyx99/289/base -> origin/gh/janeyx99/289/base 2025-08-26T20:40:01.1993545Z * [new branch] gh/janeyx99/289/head -> origin/gh/janeyx99/289/head 2025-08-26T20:40:01.1994034Z * [new branch] gh/janeyx99/289/orig -> origin/gh/janeyx99/289/orig 2025-08-26T20:40:01.1994538Z * [new branch] gh/janeyx99/290/base -> origin/gh/janeyx99/290/base 2025-08-26T20:40:01.1995026Z * [new branch] gh/janeyx99/290/head -> origin/gh/janeyx99/290/head 2025-08-26T20:40:01.1995516Z * [new branch] gh/janeyx99/290/orig -> origin/gh/janeyx99/290/orig 2025-08-26T20:40:01.1996012Z * [new branch] gh/janeyx99/291/base -> origin/gh/janeyx99/291/base 2025-08-26T20:40:01.1996492Z * [new branch] gh/janeyx99/291/head -> origin/gh/janeyx99/291/head 2025-08-26T20:40:01.1996977Z * [new branch] gh/janeyx99/291/orig -> origin/gh/janeyx99/291/orig 2025-08-26T20:40:01.1997485Z * [new branch] gh/janeyx99/292/base -> origin/gh/janeyx99/292/base 2025-08-26T20:40:01.1998151Z * [new branch] gh/janeyx99/292/head -> origin/gh/janeyx99/292/head 2025-08-26T20:40:01.1998661Z * [new branch] gh/janeyx99/292/orig -> origin/gh/janeyx99/292/orig 2025-08-26T20:40:01.1999149Z * [new branch] gh/janeyx99/293/base -> origin/gh/janeyx99/293/base 2025-08-26T20:40:01.1999642Z * [new branch] gh/janeyx99/293/head -> origin/gh/janeyx99/293/head 2025-08-26T20:40:01.2000131Z * [new branch] gh/janeyx99/293/orig -> origin/gh/janeyx99/293/orig 2025-08-26T20:40:01.2000728Z * [new branch] gh/janeyx99/294/base -> origin/gh/janeyx99/294/base 2025-08-26T20:40:01.2001221Z * [new branch] gh/janeyx99/294/head -> origin/gh/janeyx99/294/head 2025-08-26T20:40:01.2001703Z * [new branch] gh/janeyx99/294/orig -> origin/gh/janeyx99/294/orig 2025-08-26T20:40:01.2002194Z * [new branch] gh/janeyx99/295/base -> origin/gh/janeyx99/295/base 2025-08-26T20:40:01.2002678Z * [new branch] gh/janeyx99/295/head -> origin/gh/janeyx99/295/head 2025-08-26T20:40:01.2003263Z * [new branch] gh/janeyx99/295/orig -> origin/gh/janeyx99/295/orig 2025-08-26T20:40:01.2003773Z * [new branch] gh/janeyx99/296/base -> origin/gh/janeyx99/296/base 2025-08-26T20:40:01.2004257Z * [new branch] gh/janeyx99/296/head -> origin/gh/janeyx99/296/head 2025-08-26T20:40:01.2004756Z * [new branch] gh/janeyx99/296/orig -> origin/gh/janeyx99/296/orig 2025-08-26T20:40:01.2005246Z * [new branch] gh/janeyx99/297/base -> origin/gh/janeyx99/297/base 2025-08-26T20:40:01.2005746Z * [new branch] gh/janeyx99/297/head -> origin/gh/janeyx99/297/head 2025-08-26T20:40:01.2006236Z * [new branch] gh/janeyx99/297/orig -> origin/gh/janeyx99/297/orig 2025-08-26T20:40:01.2006723Z * [new branch] gh/janeyx99/298/base -> origin/gh/janeyx99/298/base 2025-08-26T20:40:01.2007212Z * [new branch] gh/janeyx99/298/head -> origin/gh/janeyx99/298/head 2025-08-26T20:40:01.2007686Z * [new branch] gh/janeyx99/298/orig -> origin/gh/janeyx99/298/orig 2025-08-26T20:40:01.2008178Z * [new branch] gh/janeyx99/299/base -> origin/gh/janeyx99/299/base 2025-08-26T20:40:01.2008662Z * [new branch] gh/janeyx99/299/head -> origin/gh/janeyx99/299/head 2025-08-26T20:40:01.2009144Z * [new branch] gh/janeyx99/299/orig -> origin/gh/janeyx99/299/orig 2025-08-26T20:40:01.2009624Z * [new branch] gh/janeyx99/300/base -> origin/gh/janeyx99/300/base 2025-08-26T20:40:01.2010099Z * [new branch] gh/janeyx99/300/head -> origin/gh/janeyx99/300/head 2025-08-26T20:40:01.2010589Z * [new branch] gh/janeyx99/300/orig -> origin/gh/janeyx99/300/orig 2025-08-26T20:40:01.2011073Z * [new branch] gh/janeyx99/301/base -> origin/gh/janeyx99/301/base 2025-08-26T20:40:01.2011555Z * [new branch] gh/janeyx99/301/head -> origin/gh/janeyx99/301/head 2025-08-26T20:40:01.2012034Z * [new branch] gh/janeyx99/301/orig -> origin/gh/janeyx99/301/orig 2025-08-26T20:40:01.2012512Z * [new branch] gh/janeyx99/88/base -> origin/gh/janeyx99/88/base 2025-08-26T20:40:01.2012996Z * [new branch] gh/janeyx99/88/head -> origin/gh/janeyx99/88/head 2025-08-26T20:40:01.2013475Z * [new branch] gh/janeyx99/88/orig -> origin/gh/janeyx99/88/orig 2025-08-26T20:40:01.2013962Z * [new branch] gh/jansel/360/base -> origin/gh/jansel/360/base 2025-08-26T20:40:01.2014443Z * [new branch] gh/jansel/360/head -> origin/gh/jansel/360/head 2025-08-26T20:40:01.2014913Z * [new branch] gh/jansel/451/base -> origin/gh/jansel/451/base 2025-08-26T20:40:01.2015510Z * [new branch] gh/jansel/451/head -> origin/gh/jansel/451/head 2025-08-26T20:40:01.2015991Z * [new branch] gh/jansel/451/orig -> origin/gh/jansel/451/orig 2025-08-26T20:40:01.2453080Z * [new branch] gh/jansel/462/base -> origin/gh/jansel/462/base 2025-08-26T20:40:01.2453644Z * [new branch] gh/jansel/462/head -> origin/gh/jansel/462/head 2025-08-26T20:40:01.2454124Z * [new branch] gh/jansel/462/orig -> origin/gh/jansel/462/orig 2025-08-26T20:40:01.2454796Z * [new branch] gh/jansel/531/base -> origin/gh/jansel/531/base 2025-08-26T20:40:01.2455278Z * [new branch] gh/jansel/531/head -> origin/gh/jansel/531/head 2025-08-26T20:40:01.2455748Z * [new branch] gh/jansel/531/orig -> origin/gh/jansel/531/orig 2025-08-26T20:40:01.2456241Z * [new branch] gh/jansel/534/base -> origin/gh/jansel/534/base 2025-08-26T20:40:01.2456714Z * [new branch] gh/jansel/534/head -> origin/gh/jansel/534/head 2025-08-26T20:40:01.2457190Z * [new branch] gh/jansel/534/orig -> origin/gh/jansel/534/orig 2025-08-26T20:40:01.2457698Z * [new branch] gh/jbschlosser/208/head -> origin/gh/jbschlosser/208/head 2025-08-26T20:40:01.2458231Z * [new branch] gh/jbschlosser/239/base -> origin/gh/jbschlosser/239/base 2025-08-26T20:40:01.2458770Z * [new branch] gh/jbschlosser/239/head -> origin/gh/jbschlosser/239/head 2025-08-26T20:40:01.2459293Z * [new branch] gh/jbschlosser/239/orig -> origin/gh/jbschlosser/239/orig 2025-08-26T20:40:01.2459815Z * [new branch] gh/jbschlosser/247/base -> origin/gh/jbschlosser/247/base 2025-08-26T20:40:01.2460334Z * [new branch] gh/jbschlosser/247/head -> origin/gh/jbschlosser/247/head 2025-08-26T20:40:01.2460949Z * [new branch] gh/jbschlosser/247/orig -> origin/gh/jbschlosser/247/orig 2025-08-26T20:40:01.2461476Z * [new branch] gh/jbschlosser/248/base -> origin/gh/jbschlosser/248/base 2025-08-26T20:40:01.2461991Z * [new branch] gh/jbschlosser/248/head -> origin/gh/jbschlosser/248/head 2025-08-26T20:40:01.2462518Z * [new branch] gh/jbschlosser/248/orig -> origin/gh/jbschlosser/248/orig 2025-08-26T20:40:01.2463039Z * [new branch] gh/jbschlosser/250/base -> origin/gh/jbschlosser/250/base 2025-08-26T20:40:01.2463576Z * [new branch] gh/jbschlosser/250/head -> origin/gh/jbschlosser/250/head 2025-08-26T20:40:01.2464152Z * [new branch] gh/jbschlosser/250/orig -> origin/gh/jbschlosser/250/orig 2025-08-26T20:40:01.2464682Z * [new branch] gh/jiayisunx/57/base -> origin/gh/jiayisunx/57/base 2025-08-26T20:40:01.2465183Z * [new branch] gh/jiayisunx/57/head -> origin/gh/jiayisunx/57/head 2025-08-26T20:40:01.2465685Z * [new branch] gh/jiayisunx/57/orig -> origin/gh/jiayisunx/57/orig 2025-08-26T20:40:01.2466188Z * [new branch] gh/jiayisunx/59/base -> origin/gh/jiayisunx/59/base 2025-08-26T20:40:01.2466681Z * [new branch] gh/jiayisunx/59/head -> origin/gh/jiayisunx/59/head 2025-08-26T20:40:01.2467164Z * [new branch] gh/jiayisunx/59/orig -> origin/gh/jiayisunx/59/orig 2025-08-26T20:40:01.2467664Z * [new branch] gh/jiayisunx/61/base -> origin/gh/jiayisunx/61/base 2025-08-26T20:40:01.2468149Z * [new branch] gh/jiayisunx/61/head -> origin/gh/jiayisunx/61/head 2025-08-26T20:40:01.2468643Z * [new branch] gh/jiayisunx/61/orig -> origin/gh/jiayisunx/61/orig 2025-08-26T20:40:01.2469139Z * [new branch] gh/jiayisunx/64/base -> origin/gh/jiayisunx/64/base 2025-08-26T20:40:01.2469742Z * [new branch] gh/jiayisunx/64/head -> origin/gh/jiayisunx/64/head 2025-08-26T20:40:01.2470240Z * [new branch] gh/jiayisunx/64/orig -> origin/gh/jiayisunx/64/orig 2025-08-26T20:40:01.2470732Z * [new branch] gh/jiayisunx/65/base -> origin/gh/jiayisunx/65/base 2025-08-26T20:40:01.2471226Z * [new branch] gh/jiayisunx/65/head -> origin/gh/jiayisunx/65/head 2025-08-26T20:40:01.2471794Z * [new branch] gh/jiayisunx/65/orig -> origin/gh/jiayisunx/65/orig 2025-08-26T20:40:01.2472397Z * [new branch] gh/jiayisunx/66/base -> origin/gh/jiayisunx/66/base 2025-08-26T20:40:01.2472906Z * [new branch] gh/jiayisunx/66/head -> origin/gh/jiayisunx/66/head 2025-08-26T20:40:01.2473394Z * [new branch] gh/jiayisunx/66/orig -> origin/gh/jiayisunx/66/orig 2025-08-26T20:40:01.2473892Z * [new branch] gh/jiayisunx/67/base -> origin/gh/jiayisunx/67/base 2025-08-26T20:40:01.2474446Z * [new branch] gh/jiayisunx/67/head -> origin/gh/jiayisunx/67/head 2025-08-26T20:40:01.2474945Z * [new branch] gh/jiayisunx/67/orig -> origin/gh/jiayisunx/67/orig 2025-08-26T20:40:01.2475537Z * [new branch] gh/jiayisunx/68/base -> origin/gh/jiayisunx/68/base 2025-08-26T20:40:01.2476080Z * [new branch] gh/jiayisunx/68/head -> origin/gh/jiayisunx/68/head 2025-08-26T20:40:01.2476578Z * [new branch] gh/jiayisunx/68/orig -> origin/gh/jiayisunx/68/orig 2025-08-26T20:40:01.2918818Z * [new branch] gh/jiayisunx/69/base -> origin/gh/jiayisunx/69/base 2025-08-26T20:40:01.2919371Z * [new branch] gh/jiayisunx/69/head -> origin/gh/jiayisunx/69/head 2025-08-26T20:40:01.2919892Z * [new branch] gh/jiayisunx/69/orig -> origin/gh/jiayisunx/69/orig 2025-08-26T20:40:01.2920387Z * [new branch] gh/jiayisunx/70/base -> origin/gh/jiayisunx/70/base 2025-08-26T20:40:01.2920949Z * [new branch] gh/jiayisunx/70/head -> origin/gh/jiayisunx/70/head 2025-08-26T20:40:01.2921489Z * [new branch] gh/jiayisunx/70/orig -> origin/gh/jiayisunx/70/orig 2025-08-26T20:40:01.2922092Z * [new branch] gh/jjwu@meta.com/1/base -> origin/gh/jjwu@meta.com/1/base 2025-08-26T20:40:01.2922653Z * [new branch] gh/jjwu@meta.com/1/head -> origin/gh/jjwu@meta.com/1/head 2025-08-26T20:40:01.2923312Z * [new branch] gh/justinchuby/111/base -> origin/gh/justinchuby/111/base 2025-08-26T20:40:01.2923928Z * [new branch] gh/justinchuby/111/head -> origin/gh/justinchuby/111/head 2025-08-26T20:40:01.2924487Z * [new branch] gh/justinchuby/111/orig -> origin/gh/justinchuby/111/orig 2025-08-26T20:40:01.2925100Z * [new branch] gh/justinchuby/112/base -> origin/gh/justinchuby/112/base 2025-08-26T20:40:01.2925698Z * [new branch] gh/justinchuby/112/head -> origin/gh/justinchuby/112/head 2025-08-26T20:40:01.2926304Z * [new branch] gh/justinchuby/112/orig -> origin/gh/justinchuby/112/orig 2025-08-26T20:40:01.2926928Z * [new branch] gh/justinchuby/113/base -> origin/gh/justinchuby/113/base 2025-08-26T20:40:01.2927551Z * [new branch] gh/justinchuby/113/head -> origin/gh/justinchuby/113/head 2025-08-26T20:40:01.2928139Z * [new branch] gh/justinchuby/113/orig -> origin/gh/justinchuby/113/orig 2025-08-26T20:40:01.2928741Z * [new branch] gh/justinchuby/114/base -> origin/gh/justinchuby/114/base 2025-08-26T20:40:01.2929342Z * [new branch] gh/justinchuby/114/head -> origin/gh/justinchuby/114/head 2025-08-26T20:40:01.2929915Z * [new branch] gh/justinchuby/114/orig -> origin/gh/justinchuby/114/orig 2025-08-26T20:40:01.2930518Z * [new branch] gh/karthickai/1/base -> origin/gh/karthickai/1/base 2025-08-26T20:40:01.2931276Z * [new branch] gh/karthickai/1/head -> origin/gh/karthickai/1/head 2025-08-26T20:40:01.2931840Z * [new branch] gh/karthickai/1/orig -> origin/gh/karthickai/1/orig 2025-08-26T20:40:01.2932422Z * [new branch] gh/karthickai/2/base -> origin/gh/karthickai/2/base 2025-08-26T20:40:01.2932970Z * [new branch] gh/karthickai/2/head -> origin/gh/karthickai/2/head 2025-08-26T20:40:01.2933659Z * [new branch] gh/karthickai/2/orig -> origin/gh/karthickai/2/orig 2025-08-26T20:40:01.2934236Z * [new branch] gh/kurtamohler/32/base -> origin/gh/kurtamohler/32/base 2025-08-26T20:40:01.2934865Z * [new branch] gh/kurtamohler/32/head -> origin/gh/kurtamohler/32/head 2025-08-26T20:40:01.2935469Z * [new branch] gh/kurtamohler/32/orig -> origin/gh/kurtamohler/32/orig 2025-08-26T20:40:01.2936048Z * [new branch] gh/kurtamohler/33/base -> origin/gh/kurtamohler/33/base 2025-08-26T20:40:01.2936648Z * [new branch] gh/kurtamohler/33/head -> origin/gh/kurtamohler/33/head 2025-08-26T20:40:01.2937211Z * [new branch] gh/kurtamohler/33/orig -> origin/gh/kurtamohler/33/orig 2025-08-26T20:40:01.2937818Z * [new branch] gh/kurtamohler/34/base -> origin/gh/kurtamohler/34/base 2025-08-26T20:40:01.2938371Z * [new branch] gh/kurtamohler/34/head -> origin/gh/kurtamohler/34/head 2025-08-26T20:40:01.2938984Z * [new branch] gh/kurtamohler/34/orig -> origin/gh/kurtamohler/34/orig 2025-08-26T20:40:01.2939556Z * [new branch] gh/kurtamohler/41/base -> origin/gh/kurtamohler/41/base 2025-08-26T20:40:01.2940168Z * [new branch] gh/kurtamohler/41/head -> origin/gh/kurtamohler/41/head 2025-08-26T20:40:01.2940731Z * [new branch] gh/kurtamohler/41/orig -> origin/gh/kurtamohler/41/orig 2025-08-26T20:40:01.2941328Z * [new branch] gh/kurtamohler/42/base -> origin/gh/kurtamohler/42/base 2025-08-26T20:40:01.2941895Z * [new branch] gh/kurtamohler/42/head -> origin/gh/kurtamohler/42/head 2025-08-26T20:40:01.2942492Z * [new branch] gh/kurtamohler/42/orig -> origin/gh/kurtamohler/42/orig 2025-08-26T20:40:01.2943057Z * [new branch] gh/kurtamohler/43/base -> origin/gh/kurtamohler/43/base 2025-08-26T20:40:01.2943669Z * [new branch] gh/kurtamohler/43/head -> origin/gh/kurtamohler/43/head 2025-08-26T20:40:01.2944224Z * [new branch] gh/kurtamohler/43/orig -> origin/gh/kurtamohler/43/orig 2025-08-26T20:40:01.2944831Z * [new branch] gh/kurtamohler/44/base -> origin/gh/kurtamohler/44/base 2025-08-26T20:40:01.2945419Z * [new branch] gh/kurtamohler/44/head -> origin/gh/kurtamohler/44/head 2025-08-26T20:40:01.3394858Z * [new branch] gh/kurtamohler/44/orig -> origin/gh/kurtamohler/44/orig 2025-08-26T20:40:01.3395439Z * [new branch] gh/kurtamohler/45/base -> origin/gh/kurtamohler/45/base 2025-08-26T20:40:01.3396027Z * [new branch] gh/kurtamohler/45/head -> origin/gh/kurtamohler/45/head 2025-08-26T20:40:01.3396618Z * [new branch] gh/kurtamohler/45/orig -> origin/gh/kurtamohler/45/orig 2025-08-26T20:40:01.3397139Z * [new branch] gh/kurtamohler/46/base -> origin/gh/kurtamohler/46/base 2025-08-26T20:40:01.3397702Z * [new branch] gh/kurtamohler/46/head -> origin/gh/kurtamohler/46/head 2025-08-26T20:40:01.3398215Z * [new branch] gh/kurtamohler/46/orig -> origin/gh/kurtamohler/46/orig 2025-08-26T20:40:01.3398725Z * [new branch] gh/kurtamohler/47/base -> origin/gh/kurtamohler/47/base 2025-08-26T20:40:01.3399237Z * [new branch] gh/kurtamohler/47/head -> origin/gh/kurtamohler/47/head 2025-08-26T20:40:01.3399905Z * [new branch] gh/kurtamohler/47/orig -> origin/gh/kurtamohler/47/orig 2025-08-26T20:40:01.3400430Z * [new branch] gh/kurtamohler/48/base -> origin/gh/kurtamohler/48/base 2025-08-26T20:40:01.3400950Z * [new branch] gh/kurtamohler/48/head -> origin/gh/kurtamohler/48/head 2025-08-26T20:40:01.3401457Z * [new branch] gh/kurtamohler/48/orig -> origin/gh/kurtamohler/48/orig 2025-08-26T20:40:01.3401964Z * [new branch] gh/kwen2501/130/base -> origin/gh/kwen2501/130/base 2025-08-26T20:40:01.3402601Z * [new branch] gh/kwen2501/130/head -> origin/gh/kwen2501/130/head 2025-08-26T20:40:01.3403278Z * [new branch] gh/kwen2501/130/orig -> origin/gh/kwen2501/130/orig 2025-08-26T20:40:01.3403820Z * [new branch] gh/kwen2501/142/base -> origin/gh/kwen2501/142/base 2025-08-26T20:40:01.3404304Z * [new branch] gh/kwen2501/142/head -> origin/gh/kwen2501/142/head 2025-08-26T20:40:01.3404793Z * [new branch] gh/kwen2501/142/orig -> origin/gh/kwen2501/142/orig 2025-08-26T20:40:01.3405275Z * [new branch] gh/kwen2501/15/base -> origin/gh/kwen2501/15/base 2025-08-26T20:40:01.3405757Z * [new branch] gh/kwen2501/15/head -> origin/gh/kwen2501/15/head 2025-08-26T20:40:01.3406233Z * [new branch] gh/kwen2501/156/base -> origin/gh/kwen2501/156/base 2025-08-26T20:40:01.3406725Z * [new branch] gh/kwen2501/156/head -> origin/gh/kwen2501/156/head 2025-08-26T20:40:01.3407207Z * [new branch] gh/kwen2501/156/orig -> origin/gh/kwen2501/156/orig 2025-08-26T20:40:01.3407683Z * [new branch] gh/kwen2501/170/base -> origin/gh/kwen2501/170/base 2025-08-26T20:40:01.3408165Z * [new branch] gh/kwen2501/170/head -> origin/gh/kwen2501/170/head 2025-08-26T20:40:01.3408641Z * [new branch] gh/kwen2501/186/base -> origin/gh/kwen2501/186/base 2025-08-26T20:40:01.3409127Z * [new branch] gh/kwen2501/186/head -> origin/gh/kwen2501/186/head 2025-08-26T20:40:01.3409608Z * [new branch] gh/kwen2501/186/orig -> origin/gh/kwen2501/186/orig 2025-08-26T20:40:01.3410082Z * [new branch] gh/kwen2501/187/base -> origin/gh/kwen2501/187/base 2025-08-26T20:40:01.3410560Z * [new branch] gh/kwen2501/187/head -> origin/gh/kwen2501/187/head 2025-08-26T20:40:01.3411041Z * [new branch] gh/kwen2501/187/orig -> origin/gh/kwen2501/187/orig 2025-08-26T20:40:01.3411523Z * [new branch] gh/kwen2501/188/base -> origin/gh/kwen2501/188/base 2025-08-26T20:40:01.3412019Z * [new branch] gh/kwen2501/188/head -> origin/gh/kwen2501/188/head 2025-08-26T20:40:01.3412493Z * [new branch] gh/kwen2501/188/orig -> origin/gh/kwen2501/188/orig 2025-08-26T20:40:01.3412979Z * [new branch] gh/kwen2501/194/base -> origin/gh/kwen2501/194/base 2025-08-26T20:40:01.3413459Z * [new branch] gh/kwen2501/194/head -> origin/gh/kwen2501/194/head 2025-08-26T20:40:01.3413948Z * [new branch] gh/kwen2501/194/orig -> origin/gh/kwen2501/194/orig 2025-08-26T20:40:01.3414435Z * [new branch] gh/kwen2501/199/base -> origin/gh/kwen2501/199/base 2025-08-26T20:40:01.3414906Z * [new branch] gh/kwen2501/199/head -> origin/gh/kwen2501/199/head 2025-08-26T20:40:01.3415389Z * [new branch] gh/kwen2501/199/orig -> origin/gh/kwen2501/199/orig 2025-08-26T20:40:01.3415863Z * [new branch] gh/kwen2501/200/base -> origin/gh/kwen2501/200/base 2025-08-26T20:40:01.3416340Z * [new branch] gh/kwen2501/200/head -> origin/gh/kwen2501/200/head 2025-08-26T20:40:01.3417472Z * [new branch] gh/kwen2501/200/orig -> origin/gh/kwen2501/200/orig 2025-08-26T20:40:01.3417954Z * [new branch] gh/kwen2501/201/base -> origin/gh/kwen2501/201/base 2025-08-26T20:40:01.3418432Z * [new branch] gh/kwen2501/201/head -> origin/gh/kwen2501/201/head 2025-08-26T20:40:01.3851480Z * [new branch] gh/kwen2501/201/orig -> origin/gh/kwen2501/201/orig 2025-08-26T20:40:01.3852082Z * [new branch] gh/kwen2501/202/base -> origin/gh/kwen2501/202/base 2025-08-26T20:40:01.3852851Z * [new branch] gh/kwen2501/202/head -> origin/gh/kwen2501/202/head 2025-08-26T20:40:01.3853369Z * [new branch] gh/kwen2501/202/orig -> origin/gh/kwen2501/202/orig 2025-08-26T20:40:01.3853862Z * [new branch] gh/kwen2501/203/base -> origin/gh/kwen2501/203/base 2025-08-26T20:40:01.3854336Z * [new branch] gh/kwen2501/203/head -> origin/gh/kwen2501/203/head 2025-08-26T20:40:01.3854842Z * [new branch] gh/kwen2501/203/orig -> origin/gh/kwen2501/203/orig 2025-08-26T20:40:01.3855332Z * [new branch] gh/kwen2501/204/base -> origin/gh/kwen2501/204/base 2025-08-26T20:40:01.3855811Z * [new branch] gh/kwen2501/204/head -> origin/gh/kwen2501/204/head 2025-08-26T20:40:01.3856297Z * [new branch] gh/kwen2501/204/orig -> origin/gh/kwen2501/204/orig 2025-08-26T20:40:01.3856772Z * [new branch] gh/kwen2501/205/base -> origin/gh/kwen2501/205/base 2025-08-26T20:40:01.3857256Z * [new branch] gh/kwen2501/205/head -> origin/gh/kwen2501/205/head 2025-08-26T20:40:01.3857738Z * [new branch] gh/kwen2501/205/orig -> origin/gh/kwen2501/205/orig 2025-08-26T20:40:01.3858261Z * [new branch] gh/kwen2501/206/base -> origin/gh/kwen2501/206/base 2025-08-26T20:40:01.3858798Z * [new branch] gh/kwen2501/206/head -> origin/gh/kwen2501/206/head 2025-08-26T20:40:01.3859327Z * [new branch] gh/kwen2501/206/orig -> origin/gh/kwen2501/206/orig 2025-08-26T20:40:01.3859808Z * [new branch] gh/kwen2501/207/base -> origin/gh/kwen2501/207/base 2025-08-26T20:40:01.3860286Z * [new branch] gh/kwen2501/207/head -> origin/gh/kwen2501/207/head 2025-08-26T20:40:01.3860760Z * [new branch] gh/kwen2501/207/orig -> origin/gh/kwen2501/207/orig 2025-08-26T20:40:01.3861237Z * [new branch] gh/kwen2501/208/base -> origin/gh/kwen2501/208/base 2025-08-26T20:40:01.3861723Z * [new branch] gh/kwen2501/208/head -> origin/gh/kwen2501/208/head 2025-08-26T20:40:01.3862209Z * [new branch] gh/kwen2501/208/orig -> origin/gh/kwen2501/208/orig 2025-08-26T20:40:01.3862679Z * [new branch] gh/kwen2501/209/base -> origin/gh/kwen2501/209/base 2025-08-26T20:40:01.3863167Z * [new branch] gh/kwen2501/209/head -> origin/gh/kwen2501/209/head 2025-08-26T20:40:01.3863652Z * [new branch] gh/kwen2501/209/orig -> origin/gh/kwen2501/209/orig 2025-08-26T20:40:01.3864176Z * [new branch] gh/kwen2501/210/base -> origin/gh/kwen2501/210/base 2025-08-26T20:40:01.3864714Z * [new branch] gh/kwen2501/210/head -> origin/gh/kwen2501/210/head 2025-08-26T20:40:01.3865244Z * [new branch] gh/kwen2501/210/orig -> origin/gh/kwen2501/210/orig 2025-08-26T20:40:01.3865736Z * [new branch] gh/kwen2501/211/base -> origin/gh/kwen2501/211/base 2025-08-26T20:40:01.3866216Z * [new branch] gh/kwen2501/211/head -> origin/gh/kwen2501/211/head 2025-08-26T20:40:01.3866695Z * [new branch] gh/kwen2501/212/base -> origin/gh/kwen2501/212/base 2025-08-26T20:40:01.3867179Z * [new branch] gh/kwen2501/212/head -> origin/gh/kwen2501/212/head 2025-08-26T20:40:01.3867771Z * [new branch] gh/kwen2501/212/orig -> origin/gh/kwen2501/212/orig 2025-08-26T20:40:01.3868264Z * [new branch] gh/kwen2501/213/base -> origin/gh/kwen2501/213/base 2025-08-26T20:40:01.3868758Z * [new branch] gh/kwen2501/213/head -> origin/gh/kwen2501/213/head 2025-08-26T20:40:01.3869241Z * [new branch] gh/kwen2501/213/orig -> origin/gh/kwen2501/213/orig 2025-08-26T20:40:01.3869736Z * [new branch] gh/kwen2501/214/base -> origin/gh/kwen2501/214/base 2025-08-26T20:40:01.3870342Z * [new branch] gh/kwen2501/214/head -> origin/gh/kwen2501/214/head 2025-08-26T20:40:01.3870893Z * [new branch] gh/kwen2501/214/orig -> origin/gh/kwen2501/214/orig 2025-08-26T20:40:01.3871435Z * [new branch] gh/kwen2501/215/base -> origin/gh/kwen2501/215/base 2025-08-26T20:40:01.3871916Z * [new branch] gh/kwen2501/215/head -> origin/gh/kwen2501/215/head 2025-08-26T20:40:01.3872407Z * [new branch] gh/kwen2501/215/orig -> origin/gh/kwen2501/215/orig 2025-08-26T20:40:01.3872882Z * [new branch] gh/kwen2501/216/base -> origin/gh/kwen2501/216/base 2025-08-26T20:40:01.3873383Z * [new branch] gh/kwen2501/216/head -> origin/gh/kwen2501/216/head 2025-08-26T20:40:01.3873852Z * [new branch] gh/kwen2501/216/orig -> origin/gh/kwen2501/216/orig 2025-08-26T20:40:01.3874331Z * [new branch] gh/kwen2501/217/base -> origin/gh/kwen2501/217/base 2025-08-26T20:40:01.3874815Z * [new branch] gh/kwen2501/217/head -> origin/gh/kwen2501/217/head 2025-08-26T20:40:01.4300298Z * [new branch] gh/kwen2501/217/orig -> origin/gh/kwen2501/217/orig 2025-08-26T20:40:01.4300842Z * [new branch] gh/kwen2501/218/base -> origin/gh/kwen2501/218/base 2025-08-26T20:40:01.4301343Z * [new branch] gh/kwen2501/218/head -> origin/gh/kwen2501/218/head 2025-08-26T20:40:01.4301858Z * [new branch] gh/kwen2501/218/orig -> origin/gh/kwen2501/218/orig 2025-08-26T20:40:01.4302423Z * [new branch] gh/laithsakka/156/base -> origin/gh/laithsakka/156/base 2025-08-26T20:40:01.4302994Z * [new branch] gh/laithsakka/156/head -> origin/gh/laithsakka/156/head 2025-08-26T20:40:01.4303520Z * [new branch] gh/laithsakka/156/orig -> origin/gh/laithsakka/156/orig 2025-08-26T20:40:01.4304040Z * [new branch] gh/laithsakka/160/base -> origin/gh/laithsakka/160/base 2025-08-26T20:40:01.4304551Z * [new branch] gh/laithsakka/160/head -> origin/gh/laithsakka/160/head 2025-08-26T20:40:01.4305068Z * [new branch] gh/laithsakka/160/orig -> origin/gh/laithsakka/160/orig 2025-08-26T20:40:01.4305574Z * [new branch] gh/laithsakka/178/base -> origin/gh/laithsakka/178/base 2025-08-26T20:40:01.4306090Z * [new branch] gh/laithsakka/178/head -> origin/gh/laithsakka/178/head 2025-08-26T20:40:01.4306598Z * [new branch] gh/laithsakka/178/orig -> origin/gh/laithsakka/178/orig 2025-08-26T20:40:01.4307106Z * [new branch] gh/laithsakka/191/base -> origin/gh/laithsakka/191/base 2025-08-26T20:40:01.4307621Z * [new branch] gh/laithsakka/191/head -> origin/gh/laithsakka/191/head 2025-08-26T20:40:01.4308173Z * [new branch] gh/laithsakka/191/orig -> origin/gh/laithsakka/191/orig 2025-08-26T20:40:01.4308738Z * [new branch] gh/laithsakka/237/base -> origin/gh/laithsakka/237/base 2025-08-26T20:40:01.4309244Z * [new branch] gh/laithsakka/237/head -> origin/gh/laithsakka/237/head 2025-08-26T20:40:01.4309753Z * [new branch] gh/laithsakka/237/orig -> origin/gh/laithsakka/237/orig 2025-08-26T20:40:01.4310263Z * [new branch] gh/laithsakka/238/base -> origin/gh/laithsakka/238/base 2025-08-26T20:40:01.4310944Z * [new branch] gh/laithsakka/238/head -> origin/gh/laithsakka/238/head 2025-08-26T20:40:01.4311476Z * [new branch] gh/laithsakka/238/orig -> origin/gh/laithsakka/238/orig 2025-08-26T20:40:01.4311983Z * [new branch] gh/laithsakka/248/base -> origin/gh/laithsakka/248/base 2025-08-26T20:40:01.4312577Z * [new branch] gh/laithsakka/248/head -> origin/gh/laithsakka/248/head 2025-08-26T20:40:01.4313876Z * [new branch] gh/laithsakka/248/orig -> origin/gh/laithsakka/248/orig 2025-08-26T20:40:01.4314459Z * [new branch] gh/laithsakka/249/base -> origin/gh/laithsakka/249/base 2025-08-26T20:40:01.4314985Z * [new branch] gh/laithsakka/249/head -> origin/gh/laithsakka/249/head 2025-08-26T20:40:01.4315491Z * [new branch] gh/laithsakka/249/orig -> origin/gh/laithsakka/249/orig 2025-08-26T20:40:01.4316017Z * [new branch] gh/laithsakka/250/base -> origin/gh/laithsakka/250/base 2025-08-26T20:40:01.4316530Z * [new branch] gh/laithsakka/250/head -> origin/gh/laithsakka/250/head 2025-08-26T20:40:01.4317036Z * [new branch] gh/laithsakka/250/orig -> origin/gh/laithsakka/250/orig 2025-08-26T20:40:01.4317615Z * [new branch] gh/laithsakka/251/base -> origin/gh/laithsakka/251/base 2025-08-26T20:40:01.4318126Z * [new branch] gh/laithsakka/251/head -> origin/gh/laithsakka/251/head 2025-08-26T20:40:01.4318649Z * [new branch] gh/laithsakka/251/orig -> origin/gh/laithsakka/251/orig 2025-08-26T20:40:01.4319175Z * [new branch] gh/laithsakka/252/base -> origin/gh/laithsakka/252/base 2025-08-26T20:40:01.4319761Z * [new branch] gh/laithsakka/252/head -> origin/gh/laithsakka/252/head 2025-08-26T20:40:01.4320291Z * [new branch] gh/laithsakka/252/orig -> origin/gh/laithsakka/252/orig 2025-08-26T20:40:01.4320797Z * [new branch] gh/laithsakka/253/base -> origin/gh/laithsakka/253/base 2025-08-26T20:40:01.4321308Z * [new branch] gh/laithsakka/253/head -> origin/gh/laithsakka/253/head 2025-08-26T20:40:01.4321821Z * [new branch] gh/laithsakka/253/orig -> origin/gh/laithsakka/253/orig 2025-08-26T20:40:01.4322327Z * [new branch] gh/laithsakka/254/base -> origin/gh/laithsakka/254/base 2025-08-26T20:40:01.4322847Z * [new branch] gh/laithsakka/254/head -> origin/gh/laithsakka/254/head 2025-08-26T20:40:01.4323427Z * [new branch] gh/laithsakka/254/orig -> origin/gh/laithsakka/254/orig 2025-08-26T20:40:01.4324038Z * [new branch] gh/laithsakka/255/base -> origin/gh/laithsakka/255/base 2025-08-26T20:40:01.4324556Z * [new branch] gh/laithsakka/255/head -> origin/gh/laithsakka/255/head 2025-08-26T20:40:01.4747404Z * [new branch] gh/laithsakka/255/orig -> origin/gh/laithsakka/255/orig 2025-08-26T20:40:01.4747980Z * [new branch] gh/laithsakka/256/base -> origin/gh/laithsakka/256/base 2025-08-26T20:40:01.4748496Z * [new branch] gh/laithsakka/256/head -> origin/gh/laithsakka/256/head 2025-08-26T20:40:01.4749024Z * [new branch] gh/laithsakka/256/orig -> origin/gh/laithsakka/256/orig 2025-08-26T20:40:01.4749663Z * [new branch] gh/laithsakka/257/base -> origin/gh/laithsakka/257/base 2025-08-26T20:40:01.4750241Z * [new branch] gh/laithsakka/257/head -> origin/gh/laithsakka/257/head 2025-08-26T20:40:01.4750765Z * [new branch] gh/laithsakka/257/orig -> origin/gh/laithsakka/257/orig 2025-08-26T20:40:01.4751270Z * [new branch] gh/laithsakka/258/base -> origin/gh/laithsakka/258/base 2025-08-26T20:40:01.4751791Z * [new branch] gh/laithsakka/258/head -> origin/gh/laithsakka/258/head 2025-08-26T20:40:01.4752483Z * [new branch] gh/laithsakka/258/orig -> origin/gh/laithsakka/258/orig 2025-08-26T20:40:01.4752991Z * [new branch] gh/laithsakka/259/base -> origin/gh/laithsakka/259/base 2025-08-26T20:40:01.4753506Z * [new branch] gh/laithsakka/259/head -> origin/gh/laithsakka/259/head 2025-08-26T20:40:01.4754013Z * [new branch] gh/laithsakka/259/orig -> origin/gh/laithsakka/259/orig 2025-08-26T20:40:01.4754529Z * [new branch] gh/laithsakka/260/base -> origin/gh/laithsakka/260/base 2025-08-26T20:40:01.4755144Z * [new branch] gh/laithsakka/260/head -> origin/gh/laithsakka/260/head 2025-08-26T20:40:01.4755758Z * [new branch] gh/laithsakka/260/orig -> origin/gh/laithsakka/260/orig 2025-08-26T20:40:01.4756277Z * [new branch] gh/laithsakka/261/base -> origin/gh/laithsakka/261/base 2025-08-26T20:40:01.4756787Z * [new branch] gh/laithsakka/261/head -> origin/gh/laithsakka/261/head 2025-08-26T20:40:01.4757306Z * [new branch] gh/laithsakka/261/orig -> origin/gh/laithsakka/261/orig 2025-08-26T20:40:01.4757816Z * [new branch] gh/laithsakka/262/base -> origin/gh/laithsakka/262/base 2025-08-26T20:40:01.4758338Z * [new branch] gh/laithsakka/262/head -> origin/gh/laithsakka/262/head 2025-08-26T20:40:01.4758851Z * [new branch] gh/laithsakka/262/orig -> origin/gh/laithsakka/262/orig 2025-08-26T20:40:01.4759386Z * [new branch] gh/laithsakka/263/base -> origin/gh/laithsakka/263/base 2025-08-26T20:40:01.4759984Z * [new branch] gh/laithsakka/263/head -> origin/gh/laithsakka/263/head 2025-08-26T20:40:01.4760497Z * [new branch] gh/laithsakka/263/orig -> origin/gh/laithsakka/263/orig 2025-08-26T20:40:01.4761053Z * [new branch] gh/laithsakka/28/base -> origin/gh/laithsakka/28/base 2025-08-26T20:40:01.4761579Z * [new branch] gh/laithsakka/29/base -> origin/gh/laithsakka/29/base 2025-08-26T20:40:01.4762133Z * [new branch] gh/laithsakka/30/base -> origin/gh/laithsakka/30/base 2025-08-26T20:40:01.4762642Z * [new branch] gh/laithsakka/30/head -> origin/gh/laithsakka/30/head 2025-08-26T20:40:01.4763211Z * [new branch] gh/laithsakka/31/base -> origin/gh/laithsakka/31/base 2025-08-26T20:40:01.4763728Z * [new branch] gh/laithsakka/31/head -> origin/gh/laithsakka/31/head 2025-08-26T20:40:01.4764242Z * [new branch] gh/laithsakka/32/base -> origin/gh/laithsakka/32/base 2025-08-26T20:40:01.4764743Z * [new branch] gh/laithsakka/32/head -> origin/gh/laithsakka/32/head 2025-08-26T20:40:01.4765271Z * [new branch] gh/lucaskabela/1/base -> origin/gh/lucaskabela/1/base 2025-08-26T20:40:01.4765785Z * [new branch] gh/lucaskabela/1/head -> origin/gh/lucaskabela/1/head 2025-08-26T20:40:01.4766307Z * [new branch] gh/lucaskabela/10/base -> origin/gh/lucaskabela/10/base 2025-08-26T20:40:01.4766830Z * [new branch] gh/lucaskabela/10/head -> origin/gh/lucaskabela/10/head 2025-08-26T20:40:01.4767391Z * [new branch] gh/lucaskabela/10/orig -> origin/gh/lucaskabela/10/orig 2025-08-26T20:40:01.4767965Z * [new branch] gh/lucaskabela/11/base -> origin/gh/lucaskabela/11/base 2025-08-26T20:40:01.4768482Z * [new branch] gh/lucaskabela/11/head -> origin/gh/lucaskabela/11/head 2025-08-26T20:40:01.4769005Z * [new branch] gh/lucaskabela/11/orig -> origin/gh/lucaskabela/11/orig 2025-08-26T20:40:01.4769594Z * [new branch] gh/lucaskabela/12/base -> origin/gh/lucaskabela/12/base 2025-08-26T20:40:01.4770102Z * [new branch] gh/lucaskabela/12/head -> origin/gh/lucaskabela/12/head 2025-08-26T20:40:01.4770757Z * [new branch] gh/lucaskabela/12/orig -> origin/gh/lucaskabela/12/orig 2025-08-26T20:40:01.4771288Z * [new branch] gh/lucaskabela/13/base -> origin/gh/lucaskabela/13/base 2025-08-26T20:40:01.4771807Z * [new branch] gh/lucaskabela/13/head -> origin/gh/lucaskabela/13/head 2025-08-26T20:40:01.5205422Z * [new branch] gh/lucaskabela/13/orig -> origin/gh/lucaskabela/13/orig 2025-08-26T20:40:01.5205998Z * [new branch] gh/lucaskabela/14/base -> origin/gh/lucaskabela/14/base 2025-08-26T20:40:01.5206726Z * [new branch] gh/lucaskabela/14/head -> origin/gh/lucaskabela/14/head 2025-08-26T20:40:01.5207264Z * [new branch] gh/lucaskabela/14/orig -> origin/gh/lucaskabela/14/orig 2025-08-26T20:40:01.5207831Z * [new branch] gh/lucaskabela/15/base -> origin/gh/lucaskabela/15/base 2025-08-26T20:40:01.5208403Z * [new branch] gh/lucaskabela/15/head -> origin/gh/lucaskabela/15/head 2025-08-26T20:40:01.5208935Z * [new branch] gh/lucaskabela/15/orig -> origin/gh/lucaskabela/15/orig 2025-08-26T20:40:01.5209457Z * [new branch] gh/lucaskabela/16/base -> origin/gh/lucaskabela/16/base 2025-08-26T20:40:01.5209960Z * [new branch] gh/lucaskabela/16/head -> origin/gh/lucaskabela/16/head 2025-08-26T20:40:01.5210479Z * [new branch] gh/lucaskabela/16/orig -> origin/gh/lucaskabela/16/orig 2025-08-26T20:40:01.5211004Z * [new branch] gh/lucaskabela/17/base -> origin/gh/lucaskabela/17/base 2025-08-26T20:40:01.5211514Z * [new branch] gh/lucaskabela/17/head -> origin/gh/lucaskabela/17/head 2025-08-26T20:40:01.5212031Z * [new branch] gh/lucaskabela/17/orig -> origin/gh/lucaskabela/17/orig 2025-08-26T20:40:01.5212541Z * [new branch] gh/lucaskabela/2/base -> origin/gh/lucaskabela/2/base 2025-08-26T20:40:01.5213064Z * [new branch] gh/lucaskabela/2/head -> origin/gh/lucaskabela/2/head 2025-08-26T20:40:01.5213630Z * [new branch] gh/lucaskabela/2/orig -> origin/gh/lucaskabela/2/orig 2025-08-26T20:40:01.5214185Z * [new branch] gh/lucaskabela/3/base -> origin/gh/lucaskabela/3/base 2025-08-26T20:40:01.5214693Z * [new branch] gh/lucaskabela/3/head -> origin/gh/lucaskabela/3/head 2025-08-26T20:40:01.5215196Z * [new branch] gh/lucaskabela/3/orig -> origin/gh/lucaskabela/3/orig 2025-08-26T20:40:01.5215706Z * [new branch] gh/lucaskabela/4/base -> origin/gh/lucaskabela/4/base 2025-08-26T20:40:01.5216218Z * [new branch] gh/lucaskabela/4/head -> origin/gh/lucaskabela/4/head 2025-08-26T20:40:01.5216723Z * [new branch] gh/lucaskabela/4/orig -> origin/gh/lucaskabela/4/orig 2025-08-26T20:40:01.5217235Z * [new branch] gh/lucaskabela/5/base -> origin/gh/lucaskabela/5/base 2025-08-26T20:40:01.5217739Z * [new branch] gh/lucaskabela/5/head -> origin/gh/lucaskabela/5/head 2025-08-26T20:40:01.5218252Z * [new branch] gh/lucaskabela/5/orig -> origin/gh/lucaskabela/5/orig 2025-08-26T20:40:01.5218759Z * [new branch] gh/lucaskabela/6/base -> origin/gh/lucaskabela/6/base 2025-08-26T20:40:01.5219302Z * [new branch] gh/lucaskabela/6/head -> origin/gh/lucaskabela/6/head 2025-08-26T20:40:01.5219878Z * [new branch] gh/lucaskabela/6/orig -> origin/gh/lucaskabela/6/orig 2025-08-26T20:40:01.5220379Z * [new branch] gh/lucaskabela/7/base -> origin/gh/lucaskabela/7/base 2025-08-26T20:40:01.5220885Z * [new branch] gh/lucaskabela/7/head -> origin/gh/lucaskabela/7/head 2025-08-26T20:40:01.5221415Z * [new branch] gh/lucaskabela/7/orig -> origin/gh/lucaskabela/7/orig 2025-08-26T20:40:01.5222106Z * [new branch] gh/lucaskabela/8/base -> origin/gh/lucaskabela/8/base 2025-08-26T20:40:01.5222629Z * [new branch] gh/lucaskabela/8/head -> origin/gh/lucaskabela/8/head 2025-08-26T20:40:01.5223130Z * [new branch] gh/lucaskabela/8/orig -> origin/gh/lucaskabela/8/orig 2025-08-26T20:40:01.5223647Z * [new branch] gh/lucaskabela/9/base -> origin/gh/lucaskabela/9/base 2025-08-26T20:40:01.5224152Z * [new branch] gh/lucaskabela/9/head -> origin/gh/lucaskabela/9/head 2025-08-26T20:40:01.5224810Z * [new branch] gh/lucaskabela/9/orig -> origin/gh/lucaskabela/9/orig 2025-08-26T20:40:01.5225349Z * [new branch] gh/lw/1/base -> origin/gh/lw/1/base 2025-08-26T20:40:01.5225790Z * [new branch] gh/lw/1/head -> origin/gh/lw/1/head 2025-08-26T20:40:01.5226227Z * [new branch] gh/lw/1/orig -> origin/gh/lw/1/orig 2025-08-26T20:40:01.5226653Z * [new branch] gh/lw/2/base -> origin/gh/lw/2/base 2025-08-26T20:40:01.5227080Z * [new branch] gh/lw/2/head -> origin/gh/lw/2/head 2025-08-26T20:40:01.5227520Z * [new branch] gh/lw/2/orig -> origin/gh/lw/2/orig 2025-08-26T20:40:01.5227940Z * [new branch] gh/lw/3/base -> origin/gh/lw/3/base 2025-08-26T20:40:01.5228366Z * [new branch] gh/lw/3/head -> origin/gh/lw/3/head 2025-08-26T20:40:01.5228789Z * [new branch] gh/lw/3/orig -> origin/gh/lw/3/orig 2025-08-26T20:40:01.5229249Z * [new branch] gh/malfet/14/base -> origin/gh/malfet/14/base 2025-08-26T20:40:01.5671082Z * [new branch] gh/malfet/330/base -> origin/gh/malfet/330/base 2025-08-26T20:40:01.5671636Z * [new branch] gh/malfet/330/head -> origin/gh/malfet/330/head 2025-08-26T20:40:01.5672160Z * [new branch] gh/malfet/330/orig -> origin/gh/malfet/330/orig 2025-08-26T20:40:01.5672636Z * [new branch] gh/malfet/396/base -> origin/gh/malfet/396/base 2025-08-26T20:40:01.5673129Z * [new branch] gh/malfet/396/head -> origin/gh/malfet/396/head 2025-08-26T20:40:01.5673609Z * [new branch] gh/malfet/396/orig -> origin/gh/malfet/396/orig 2025-08-26T20:40:01.5674071Z * [new branch] gh/malfet/397/base -> origin/gh/malfet/397/base 2025-08-26T20:40:01.5674559Z * [new branch] gh/malfet/397/head -> origin/gh/malfet/397/head 2025-08-26T20:40:01.5675020Z * [new branch] gh/malfet/397/orig -> origin/gh/malfet/397/orig 2025-08-26T20:40:01.5675495Z * [new branch] gh/malfet/398/base -> origin/gh/malfet/398/base 2025-08-26T20:40:01.5675968Z * [new branch] gh/malfet/398/head -> origin/gh/malfet/398/head 2025-08-26T20:40:01.5676443Z * [new branch] gh/malfet/398/orig -> origin/gh/malfet/398/orig 2025-08-26T20:40:01.5676917Z * [new branch] gh/malfet/399/base -> origin/gh/malfet/399/base 2025-08-26T20:40:01.5677387Z * [new branch] gh/malfet/399/head -> origin/gh/malfet/399/head 2025-08-26T20:40:01.5677860Z * [new branch] gh/malfet/399/orig -> origin/gh/malfet/399/orig 2025-08-26T20:40:01.5678331Z * [new branch] gh/malfet/414/base -> origin/gh/malfet/414/base 2025-08-26T20:40:01.5678813Z * [new branch] gh/malfet/414/head -> origin/gh/malfet/414/head 2025-08-26T20:40:01.5679291Z * [new branch] gh/malfet/414/orig -> origin/gh/malfet/414/orig 2025-08-26T20:40:01.5679759Z * [new branch] gh/malfet/417/base -> origin/gh/malfet/417/base 2025-08-26T20:40:01.5680230Z * [new branch] gh/malfet/417/head -> origin/gh/malfet/417/head 2025-08-26T20:40:01.5680868Z * [new branch] gh/malfet/417/orig -> origin/gh/malfet/417/orig 2025-08-26T20:40:01.5681342Z * [new branch] gh/malfet/418/base -> origin/gh/malfet/418/base 2025-08-26T20:40:01.5681908Z * [new branch] gh/malfet/418/head -> origin/gh/malfet/418/head 2025-08-26T20:40:01.5682386Z * [new branch] gh/malfet/418/orig -> origin/gh/malfet/418/orig 2025-08-26T20:40:01.5682865Z * [new branch] gh/malfet/456/base -> origin/gh/malfet/456/base 2025-08-26T20:40:01.5683558Z * [new branch] gh/malfet/456/head -> origin/gh/malfet/456/head 2025-08-26T20:40:01.5684046Z * [new branch] gh/malfet/456/orig -> origin/gh/malfet/456/orig 2025-08-26T20:40:01.5684537Z * [new branch] gh/malfet/457/base -> origin/gh/malfet/457/base 2025-08-26T20:40:01.5685014Z * [new branch] gh/malfet/457/head -> origin/gh/malfet/457/head 2025-08-26T20:40:01.5685503Z * [new branch] gh/malfet/457/orig -> origin/gh/malfet/457/orig 2025-08-26T20:40:01.5685972Z * [new branch] gh/malfet/459/base -> origin/gh/malfet/459/base 2025-08-26T20:40:01.5686445Z * [new branch] gh/malfet/459/head -> origin/gh/malfet/459/head 2025-08-26T20:40:01.5686914Z * [new branch] gh/malfet/459/orig -> origin/gh/malfet/459/orig 2025-08-26T20:40:01.5687395Z * [new branch] gh/malfet/460/base -> origin/gh/malfet/460/base 2025-08-26T20:40:01.5687871Z * [new branch] gh/malfet/460/head -> origin/gh/malfet/460/head 2025-08-26T20:40:01.5688341Z * [new branch] gh/malfet/460/orig -> origin/gh/malfet/460/orig 2025-08-26T20:40:01.5688817Z * [new branch] gh/malfet/461/base -> origin/gh/malfet/461/base 2025-08-26T20:40:01.5689281Z * [new branch] gh/malfet/461/head -> origin/gh/malfet/461/head 2025-08-26T20:40:01.5689766Z * [new branch] gh/malfet/461/orig -> origin/gh/malfet/461/orig 2025-08-26T20:40:01.5690238Z * [new branch] gh/malfet/462/base -> origin/gh/malfet/462/base 2025-08-26T20:40:01.5690804Z * [new branch] gh/malfet/462/head -> origin/gh/malfet/462/head 2025-08-26T20:40:01.5691340Z * [new branch] gh/malfet/462/orig -> origin/gh/malfet/462/orig 2025-08-26T20:40:01.5691808Z * [new branch] gh/malfet/463/base -> origin/gh/malfet/463/base 2025-08-26T20:40:01.5692295Z * [new branch] gh/malfet/463/head -> origin/gh/malfet/463/head 2025-08-26T20:40:01.5692786Z * [new branch] gh/malfet/463/orig -> origin/gh/malfet/463/orig 2025-08-26T20:40:01.5693255Z * [new branch] gh/malfet/464/base -> origin/gh/malfet/464/base 2025-08-26T20:40:01.5693743Z * [new branch] gh/malfet/464/head -> origin/gh/malfet/464/head 2025-08-26T20:40:01.5694207Z * [new branch] gh/malfet/464/orig -> origin/gh/malfet/464/orig 2025-08-26T20:40:01.6111817Z * [new branch] gh/malfet/465/base -> origin/gh/malfet/465/base 2025-08-26T20:40:01.6112618Z * [new branch] gh/malfet/465/head -> origin/gh/malfet/465/head 2025-08-26T20:40:01.6113435Z * [new branch] gh/malfet/465/orig -> origin/gh/malfet/465/orig 2025-08-26T20:40:01.6114215Z * [new branch] gh/malfet/466/base -> origin/gh/malfet/466/base 2025-08-26T20:40:01.6115007Z * [new branch] gh/malfet/466/head -> origin/gh/malfet/466/head 2025-08-26T20:40:01.6115770Z * [new branch] gh/malfet/466/orig -> origin/gh/malfet/466/orig 2025-08-26T20:40:01.6116545Z * [new branch] gh/malfet/467/base -> origin/gh/malfet/467/base 2025-08-26T20:40:01.6117703Z * [new branch] gh/malfet/467/head -> origin/gh/malfet/467/head 2025-08-26T20:40:01.6118482Z * [new branch] gh/malfet/467/orig -> origin/gh/malfet/467/orig 2025-08-26T20:40:01.6119238Z * [new branch] gh/malfet/468/base -> origin/gh/malfet/468/base 2025-08-26T20:40:01.6120078Z * [new branch] gh/malfet/468/head -> origin/gh/malfet/468/head 2025-08-26T20:40:01.6121123Z * [new branch] gh/malfet/468/orig -> origin/gh/malfet/468/orig 2025-08-26T20:40:01.6122095Z * [new branch] gh/malfet/469/base -> origin/gh/malfet/469/base 2025-08-26T20:40:01.6122888Z * [new branch] gh/malfet/469/head -> origin/gh/malfet/469/head 2025-08-26T20:40:01.6123749Z * [new branch] gh/malfet/469/orig -> origin/gh/malfet/469/orig 2025-08-26T20:40:01.6124518Z * [new branch] gh/malfet/470/base -> origin/gh/malfet/470/base 2025-08-26T20:40:01.6125303Z * [new branch] gh/malfet/470/head -> origin/gh/malfet/470/head 2025-08-26T20:40:01.6126145Z * [new branch] gh/malfet/470/orig -> origin/gh/malfet/470/orig 2025-08-26T20:40:01.6126911Z * [new branch] gh/malfet/471/base -> origin/gh/malfet/471/base 2025-08-26T20:40:01.6127655Z * [new branch] gh/malfet/471/head -> origin/gh/malfet/471/head 2025-08-26T20:40:01.6128460Z * [new branch] gh/malfet/471/orig -> origin/gh/malfet/471/orig 2025-08-26T20:40:01.6129272Z * [new branch] gh/malfet/472/base -> origin/gh/malfet/472/base 2025-08-26T20:40:01.6130115Z * [new branch] gh/malfet/472/head -> origin/gh/malfet/472/head 2025-08-26T20:40:01.6130898Z * [new branch] gh/malfet/472/orig -> origin/gh/malfet/472/orig 2025-08-26T20:40:01.6131690Z * [new branch] gh/malfet/473/base -> origin/gh/malfet/473/base 2025-08-26T20:40:01.6132614Z * [new branch] gh/malfet/473/head -> origin/gh/malfet/473/head 2025-08-26T20:40:01.6133614Z * [new branch] gh/malfet/473/orig -> origin/gh/malfet/473/orig 2025-08-26T20:40:01.6134526Z * [new branch] gh/malfet/474/base -> origin/gh/malfet/474/base 2025-08-26T20:40:01.6135454Z * [new branch] gh/malfet/474/head -> origin/gh/malfet/474/head 2025-08-26T20:40:01.6136377Z * [new branch] gh/malfet/474/orig -> origin/gh/malfet/474/orig 2025-08-26T20:40:01.6137349Z * [new branch] gh/malfet/475/base -> origin/gh/malfet/475/base 2025-08-26T20:40:01.6138229Z * [new branch] gh/malfet/475/head -> origin/gh/malfet/475/head 2025-08-26T20:40:01.6139177Z * [new branch] gh/malfet/475/orig -> origin/gh/malfet/475/orig 2025-08-26T20:40:01.6140123Z * [new branch] gh/malfet/476/base -> origin/gh/malfet/476/base 2025-08-26T20:40:01.6141029Z * [new branch] gh/malfet/476/head -> origin/gh/malfet/476/head 2025-08-26T20:40:01.6141937Z * [new branch] gh/malfet/476/orig -> origin/gh/malfet/476/orig 2025-08-26T20:40:01.6142865Z * [new branch] gh/malfet/477/base -> origin/gh/malfet/477/base 2025-08-26T20:40:01.6143781Z * [new branch] gh/malfet/477/head -> origin/gh/malfet/477/head 2025-08-26T20:40:01.6144725Z * [new branch] gh/malfet/477/orig -> origin/gh/malfet/477/orig 2025-08-26T20:40:01.6145686Z * [new branch] gh/malfet/478/base -> origin/gh/malfet/478/base 2025-08-26T20:40:01.6146615Z * [new branch] gh/malfet/478/head -> origin/gh/malfet/478/head 2025-08-26T20:40:01.6147569Z * [new branch] gh/malfet/478/orig -> origin/gh/malfet/478/orig 2025-08-26T20:40:01.6148870Z * [new branch] gh/malfet/479/base -> origin/gh/malfet/479/base 2025-08-26T20:40:01.6149951Z * [new branch] gh/malfet/479/head -> origin/gh/malfet/479/head 2025-08-26T20:40:01.6150850Z * [new branch] gh/malfet/479/orig -> origin/gh/malfet/479/orig 2025-08-26T20:40:01.6151783Z * [new branch] gh/malfet/480/base -> origin/gh/malfet/480/base 2025-08-26T20:40:01.6152677Z * [new branch] gh/malfet/480/head -> origin/gh/malfet/480/head 2025-08-26T20:40:01.7122073Z * [new branch] gh/malfet/480/orig -> origin/gh/malfet/480/orig 2025-08-26T20:40:01.7122625Z * [new branch] gh/malfet/481/base -> origin/gh/malfet/481/base 2025-08-26T20:40:01.7123201Z * [new branch] gh/malfet/481/head -> origin/gh/malfet/481/head 2025-08-26T20:40:01.7123679Z * [new branch] gh/malfet/481/orig -> origin/gh/malfet/481/orig 2025-08-26T20:40:01.7124175Z * [new branch] gh/malfet/482/base -> origin/gh/malfet/482/base 2025-08-26T20:40:01.7124637Z * [new branch] gh/malfet/482/head -> origin/gh/malfet/482/head 2025-08-26T20:40:01.7125117Z * [new branch] gh/malfet/482/orig -> origin/gh/malfet/482/orig 2025-08-26T20:40:01.7125598Z * [new branch] gh/malfet/483/base -> origin/gh/malfet/483/base 2025-08-26T20:40:01.7126063Z * [new branch] gh/malfet/483/head -> origin/gh/malfet/483/head 2025-08-26T20:40:01.7126554Z * [new branch] gh/malfet/483/orig -> origin/gh/malfet/483/orig 2025-08-26T20:40:01.7127029Z * [new branch] gh/malfet/484/base -> origin/gh/malfet/484/base 2025-08-26T20:40:01.7127545Z * [new branch] gh/malfet/484/head -> origin/gh/malfet/484/head 2025-08-26T20:40:01.7128068Z * [new branch] gh/malfet/484/orig -> origin/gh/malfet/484/orig 2025-08-26T20:40:01.7128543Z * [new branch] gh/malfet/485/base -> origin/gh/malfet/485/base 2025-08-26T20:40:01.7129021Z * [new branch] gh/malfet/485/head -> origin/gh/malfet/485/head 2025-08-26T20:40:01.7129487Z * [new branch] gh/malfet/485/orig -> origin/gh/malfet/485/orig 2025-08-26T20:40:01.7129970Z * [new branch] gh/malfet/486/base -> origin/gh/malfet/486/base 2025-08-26T20:40:01.7130442Z * [new branch] gh/malfet/486/head -> origin/gh/malfet/486/head 2025-08-26T20:40:01.7130908Z * [new branch] gh/malfet/486/orig -> origin/gh/malfet/486/orig 2025-08-26T20:40:01.7131389Z * [new branch] gh/malfet/487/base -> origin/gh/malfet/487/base 2025-08-26T20:40:01.7131862Z * [new branch] gh/malfet/487/head -> origin/gh/malfet/487/head 2025-08-26T20:40:01.7132340Z * [new branch] gh/malfet/487/orig -> origin/gh/malfet/487/orig 2025-08-26T20:40:01.7132828Z * [new branch] gh/malfet/488/base -> origin/gh/malfet/488/base 2025-08-26T20:40:01.7133345Z * [new branch] gh/malfet/488/head -> origin/gh/malfet/488/head 2025-08-26T20:40:01.7133869Z * [new branch] gh/malfet/488/orig -> origin/gh/malfet/488/orig 2025-08-26T20:40:01.7134340Z * [new branch] gh/malfet/489/base -> origin/gh/malfet/489/base 2025-08-26T20:40:01.7134812Z * [new branch] gh/malfet/489/head -> origin/gh/malfet/489/head 2025-08-26T20:40:01.7135293Z * [new branch] gh/malfet/489/orig -> origin/gh/malfet/489/orig 2025-08-26T20:40:01.7135767Z * [new branch] gh/malfet/490/base -> origin/gh/malfet/490/base 2025-08-26T20:40:01.7136242Z * [new branch] gh/malfet/490/head -> origin/gh/malfet/490/head 2025-08-26T20:40:01.7136716Z * [new branch] gh/malfet/490/orig -> origin/gh/malfet/490/orig 2025-08-26T20:40:01.7137334Z * [new branch] gh/malfet/491/base -> origin/gh/malfet/491/base 2025-08-26T20:40:01.7137842Z * [new branch] gh/malfet/491/head -> origin/gh/malfet/491/head 2025-08-26T20:40:01.7138305Z * [new branch] gh/malfet/491/orig -> origin/gh/malfet/491/orig 2025-08-26T20:40:01.7138825Z * [new branch] gh/malfet/492/base -> origin/gh/malfet/492/base 2025-08-26T20:40:01.7139336Z * [new branch] gh/malfet/492/head -> origin/gh/malfet/492/head 2025-08-26T20:40:01.7139901Z * [new branch] gh/malfet/492/orig -> origin/gh/malfet/492/orig 2025-08-26T20:40:01.7140381Z * [new branch] gh/malfet/493/base -> origin/gh/malfet/493/base 2025-08-26T20:40:01.7140847Z * [new branch] gh/malfet/493/head -> origin/gh/malfet/493/head 2025-08-26T20:40:01.7141333Z * [new branch] gh/malfet/493/orig -> origin/gh/malfet/493/orig 2025-08-26T20:40:01.7141803Z * [new branch] gh/malfet/494/base -> origin/gh/malfet/494/base 2025-08-26T20:40:01.7142270Z * [new branch] gh/malfet/494/head -> origin/gh/malfet/494/head 2025-08-26T20:40:01.7142735Z * [new branch] gh/malfet/494/orig -> origin/gh/malfet/494/orig 2025-08-26T20:40:01.7143234Z * [new branch] gh/malfet/495/base -> origin/gh/malfet/495/base 2025-08-26T20:40:01.7143701Z * [new branch] gh/malfet/495/head -> origin/gh/malfet/495/head 2025-08-26T20:40:01.7144170Z * [new branch] gh/malfet/495/orig -> origin/gh/malfet/495/orig 2025-08-26T20:40:01.7144692Z * [new branch] gh/malfet/496/base -> origin/gh/malfet/496/base 2025-08-26T20:40:01.7145206Z * [new branch] gh/malfet/496/head -> origin/gh/malfet/496/head 2025-08-26T20:40:01.7593047Z * [new branch] gh/malfet/496/orig -> origin/gh/malfet/496/orig 2025-08-26T20:40:01.7593606Z * [new branch] gh/malfet/497/base -> origin/gh/malfet/497/base 2025-08-26T20:40:01.7594092Z * [new branch] gh/malfet/497/head -> origin/gh/malfet/497/head 2025-08-26T20:40:01.7594572Z * [new branch] gh/malfet/497/orig -> origin/gh/malfet/497/orig 2025-08-26T20:40:01.7595042Z * [new branch] gh/malfet/498/base -> origin/gh/malfet/498/base 2025-08-26T20:40:01.7595542Z * [new branch] gh/malfet/498/head -> origin/gh/malfet/498/head 2025-08-26T20:40:01.7596017Z * [new branch] gh/malfet/498/orig -> origin/gh/malfet/498/orig 2025-08-26T20:40:01.7596484Z * [new branch] gh/malfet/499/base -> origin/gh/malfet/499/base 2025-08-26T20:40:01.7596959Z * [new branch] gh/malfet/499/head -> origin/gh/malfet/499/head 2025-08-26T20:40:01.7597442Z * [new branch] gh/malfet/499/orig -> origin/gh/malfet/499/orig 2025-08-26T20:40:01.7597916Z * [new branch] gh/malfet/500/base -> origin/gh/malfet/500/base 2025-08-26T20:40:01.7598387Z * [new branch] gh/malfet/500/head -> origin/gh/malfet/500/head 2025-08-26T20:40:01.7598860Z * [new branch] gh/malfet/500/orig -> origin/gh/malfet/500/orig 2025-08-26T20:40:01.7599337Z * [new branch] gh/malfet/64/base -> origin/gh/malfet/64/base 2025-08-26T20:40:01.7599829Z * [new branch] gh/malfet/64/head -> origin/gh/malfet/64/head 2025-08-26T20:40:01.7600350Z * [new branch] gh/manuelcandales/10/base -> origin/gh/manuelcandales/10/base 2025-08-26T20:40:01.7600915Z * [new branch] gh/manuelcandales/10/head -> origin/gh/manuelcandales/10/head 2025-08-26T20:40:01.7601470Z * [new branch] gh/manuelcandales/10/orig -> origin/gh/manuelcandales/10/orig 2025-08-26T20:40:01.7602210Z * [new branch] gh/manuelcandales/11/base -> origin/gh/manuelcandales/11/base 2025-08-26T20:40:01.7602752Z * [new branch] gh/manuelcandales/11/head -> origin/gh/manuelcandales/11/head 2025-08-26T20:40:01.7603382Z * [new branch] gh/manuelcandales/11/orig -> origin/gh/manuelcandales/11/orig 2025-08-26T20:40:01.7603949Z * [new branch] gh/manuelcandales/9/base -> origin/gh/manuelcandales/9/base 2025-08-26T20:40:01.7604499Z * [new branch] gh/manuelcandales/9/head -> origin/gh/manuelcandales/9/head 2025-08-26T20:40:01.7605162Z * [new branch] gh/manuelcandales/9/orig -> origin/gh/manuelcandales/9/orig 2025-08-26T20:40:01.7605669Z * [new branch] gh/markkm/1/base -> origin/gh/markkm/1/base 2025-08-26T20:40:01.7606176Z * [new branch] gh/masnesral/204/base -> origin/gh/masnesral/204/base 2025-08-26T20:40:01.7606694Z * [new branch] gh/masnesral/204/head -> origin/gh/masnesral/204/head 2025-08-26T20:40:01.7607204Z * [new branch] gh/masnesral/204/orig -> origin/gh/masnesral/204/orig 2025-08-26T20:40:01.7607720Z * [new branch] gh/masnesral/232/base -> origin/gh/masnesral/232/base 2025-08-26T20:40:01.7608221Z * [new branch] gh/masnesral/232/head -> origin/gh/masnesral/232/head 2025-08-26T20:40:01.7608724Z * [new branch] gh/masnesral/232/orig -> origin/gh/masnesral/232/orig 2025-08-26T20:40:01.7609218Z * [new branch] gh/masnesral/233/base -> origin/gh/masnesral/233/base 2025-08-26T20:40:01.7609789Z * [new branch] gh/masnesral/233/head -> origin/gh/masnesral/233/head 2025-08-26T20:40:01.7610351Z * [new branch] gh/masnesral/233/orig -> origin/gh/masnesral/233/orig 2025-08-26T20:40:01.7610852Z * [new branch] gh/masnesral/234/base -> origin/gh/masnesral/234/base 2025-08-26T20:40:01.7611361Z * [new branch] gh/masnesral/234/head -> origin/gh/masnesral/234/head 2025-08-26T20:40:01.7611853Z * [new branch] gh/masnesral/234/orig -> origin/gh/masnesral/234/orig 2025-08-26T20:40:01.7612350Z * [new branch] gh/masnesral/235/base -> origin/gh/masnesral/235/base 2025-08-26T20:40:01.7612855Z * [new branch] gh/masnesral/235/head -> origin/gh/masnesral/235/head 2025-08-26T20:40:01.7613352Z * [new branch] gh/masnesral/235/orig -> origin/gh/masnesral/235/orig 2025-08-26T20:40:01.7613854Z * [new branch] gh/masnesral/236/base -> origin/gh/masnesral/236/base 2025-08-26T20:40:01.7614345Z * [new branch] gh/masnesral/236/head -> origin/gh/masnesral/236/head 2025-08-26T20:40:01.7614845Z * [new branch] gh/masnesral/236/orig -> origin/gh/masnesral/236/orig 2025-08-26T20:40:01.7615348Z * [new branch] gh/masnesral/34/base -> origin/gh/masnesral/34/base 2025-08-26T20:40:01.7615853Z * [new branch] gh/mhorowitz/0/base -> origin/gh/mhorowitz/0/base 2025-08-26T20:40:01.7616345Z * [new branch] gh/mhorowitz/0/head -> origin/gh/mhorowitz/0/head 2025-08-26T20:40:01.8064772Z * [new branch] gh/mhorowitz/1/base -> origin/gh/mhorowitz/1/base 2025-08-26T20:40:01.8065332Z * [new branch] gh/mhorowitz/1/head -> origin/gh/mhorowitz/1/head 2025-08-26T20:40:01.8065838Z * [new branch] gh/mhorowitz/2/base -> origin/gh/mhorowitz/2/base 2025-08-26T20:40:01.8066350Z * [new branch] gh/mhorowitz/2/head -> origin/gh/mhorowitz/2/head 2025-08-26T20:40:01.8066841Z * [new branch] gh/mhorowitz/3/base -> origin/gh/mhorowitz/3/base 2025-08-26T20:40:01.8067329Z * [new branch] gh/mhorowitz/3/head -> origin/gh/mhorowitz/3/head 2025-08-26T20:40:01.8068004Z * [new branch] gh/mhorowitz/4/base -> origin/gh/mhorowitz/4/base 2025-08-26T20:40:01.8068509Z * [new branch] gh/mhorowitz/4/head -> origin/gh/mhorowitz/4/head 2025-08-26T20:40:01.8068992Z * [new branch] gh/mhorowitz/5/base -> origin/gh/mhorowitz/5/base 2025-08-26T20:40:01.8069489Z * [new branch] gh/mhorowitz/5/head -> origin/gh/mhorowitz/5/head 2025-08-26T20:40:01.8069977Z * [new branch] gh/mhorowitz/6/base -> origin/gh/mhorowitz/6/base 2025-08-26T20:40:01.8070568Z * [new branch] gh/mhorowitz/6/head -> origin/gh/mhorowitz/6/head 2025-08-26T20:40:01.8071141Z * [new branch] gh/mikaylagawarecki/234/base -> origin/gh/mikaylagawarecki/234/base 2025-08-26T20:40:01.8071753Z * [new branch] gh/mikaylagawarecki/234/head -> origin/gh/mikaylagawarecki/234/head 2025-08-26T20:40:01.8072362Z * [new branch] gh/mikaylagawarecki/235/base -> origin/gh/mikaylagawarecki/235/base 2025-08-26T20:40:01.8072962Z * [new branch] gh/mikaylagawarecki/235/head -> origin/gh/mikaylagawarecki/235/head 2025-08-26T20:40:01.8073551Z * [new branch] gh/mikaylagawarecki/236/base -> origin/gh/mikaylagawarecki/236/base 2025-08-26T20:40:01.8074148Z * [new branch] gh/mikaylagawarecki/236/head -> origin/gh/mikaylagawarecki/236/head 2025-08-26T20:40:01.8074735Z * [new branch] gh/mikaylagawarecki/237/base -> origin/gh/mikaylagawarecki/237/base 2025-08-26T20:40:01.8075335Z * [new branch] gh/mikaylagawarecki/237/head -> origin/gh/mikaylagawarecki/237/head 2025-08-26T20:40:01.8075921Z * [new branch] gh/mikaylagawarecki/238/base -> origin/gh/mikaylagawarecki/238/base 2025-08-26T20:40:01.8076518Z * [new branch] gh/mikaylagawarecki/238/head -> origin/gh/mikaylagawarecki/238/head 2025-08-26T20:40:01.8077112Z * [new branch] gh/mikaylagawarecki/317/base -> origin/gh/mikaylagawarecki/317/base 2025-08-26T20:40:01.8077702Z * [new branch] gh/mikaylagawarecki/317/head -> origin/gh/mikaylagawarecki/317/head 2025-08-26T20:40:01.8078295Z * [new branch] gh/mikaylagawarecki/317/orig -> origin/gh/mikaylagawarecki/317/orig 2025-08-26T20:40:01.8078879Z * [new branch] gh/mikaylagawarecki/320/base -> origin/gh/mikaylagawarecki/320/base 2025-08-26T20:40:01.8079472Z * [new branch] gh/mikaylagawarecki/320/head -> origin/gh/mikaylagawarecki/320/head 2025-08-26T20:40:01.8080066Z * [new branch] gh/mikaylagawarecki/320/orig -> origin/gh/mikaylagawarecki/320/orig 2025-08-26T20:40:01.8080658Z * [new branch] gh/mikaylagawarecki/329/base -> origin/gh/mikaylagawarecki/329/base 2025-08-26T20:40:01.8081252Z * [new branch] gh/mikaylagawarecki/329/head -> origin/gh/mikaylagawarecki/329/head 2025-08-26T20:40:01.8081839Z * [new branch] gh/mikaylagawarecki/329/orig -> origin/gh/mikaylagawarecki/329/orig 2025-08-26T20:40:01.8082444Z * [new branch] gh/mikaylagawarecki/330/base -> origin/gh/mikaylagawarecki/330/base 2025-08-26T20:40:01.8083096Z * [new branch] gh/mikaylagawarecki/330/head -> origin/gh/mikaylagawarecki/330/head 2025-08-26T20:40:01.8083708Z * [new branch] gh/mikaylagawarecki/330/orig -> origin/gh/mikaylagawarecki/330/orig 2025-08-26T20:40:01.8084304Z * [new branch] gh/mikaylagawarecki/331/base -> origin/gh/mikaylagawarecki/331/base 2025-08-26T20:40:01.8084890Z * [new branch] gh/mikaylagawarecki/331/head -> origin/gh/mikaylagawarecki/331/head 2025-08-26T20:40:01.8085491Z * [new branch] gh/mikaylagawarecki/331/orig -> origin/gh/mikaylagawarecki/331/orig 2025-08-26T20:40:01.8086073Z * [new branch] gh/mikaylagawarecki/332/base -> origin/gh/mikaylagawarecki/332/base 2025-08-26T20:40:01.8086662Z * [new branch] gh/mikaylagawarecki/332/head -> origin/gh/mikaylagawarecki/332/head 2025-08-26T20:40:01.8087356Z * [new branch] gh/mikaylagawarecki/332/orig -> origin/gh/mikaylagawarecki/332/orig 2025-08-26T20:40:01.8087940Z * [new branch] gh/mikaylagawarecki/333/base -> origin/gh/mikaylagawarecki/333/base 2025-08-26T20:40:01.8097232Z * [new branch] gh/mikaylagawarecki/333/head -> origin/gh/mikaylagawarecki/333/head 2025-08-26T20:40:01.8097952Z * [new branch] gh/mikaylagawarecki/333/orig -> origin/gh/mikaylagawarecki/333/orig 2025-08-26T20:40:01.8098582Z * [new branch] gh/mikaylagawarecki/334/base -> origin/gh/mikaylagawarecki/334/base 2025-08-26T20:40:01.8518544Z * [new branch] gh/mikaylagawarecki/334/head -> origin/gh/mikaylagawarecki/334/head 2025-08-26T20:40:01.8519189Z * [new branch] gh/mikaylagawarecki/334/orig -> origin/gh/mikaylagawarecki/334/orig 2025-08-26T20:40:01.8519795Z * [new branch] gh/mikaylagawarecki/335/base -> origin/gh/mikaylagawarecki/335/base 2025-08-26T20:40:01.8520402Z * [new branch] gh/mikaylagawarecki/335/head -> origin/gh/mikaylagawarecki/335/head 2025-08-26T20:40:01.8521004Z * [new branch] gh/mikaylagawarecki/335/orig -> origin/gh/mikaylagawarecki/335/orig 2025-08-26T20:40:01.8521598Z * [new branch] gh/mikaylagawarecki/336/base -> origin/gh/mikaylagawarecki/336/base 2025-08-26T20:40:01.8522203Z * [new branch] gh/mikaylagawarecki/336/head -> origin/gh/mikaylagawarecki/336/head 2025-08-26T20:40:01.8522805Z * [new branch] gh/mikaylagawarecki/336/orig -> origin/gh/mikaylagawarecki/336/orig 2025-08-26T20:40:01.8523453Z * [new branch] gh/mikaylagawarecki/337/base -> origin/gh/mikaylagawarecki/337/base 2025-08-26T20:40:01.8524059Z * [new branch] gh/mikaylagawarecki/337/head -> origin/gh/mikaylagawarecki/337/head 2025-08-26T20:40:01.8524657Z * [new branch] gh/mikaylagawarecki/337/orig -> origin/gh/mikaylagawarecki/337/orig 2025-08-26T20:40:01.8525204Z * [new branch] gh/mlazos/1/base -> origin/gh/mlazos/1/base 2025-08-26T20:40:01.8525696Z * [new branch] gh/mlazos/1/head -> origin/gh/mlazos/1/head 2025-08-26T20:40:01.8526157Z * [new branch] gh/mlazos/1/orig -> origin/gh/mlazos/1/orig 2025-08-26T20:40:01.8526634Z * [new branch] gh/mlazos/10/base -> origin/gh/mlazos/10/base 2025-08-26T20:40:01.8527100Z * [new branch] gh/mlazos/10/head -> origin/gh/mlazos/10/head 2025-08-26T20:40:01.8527577Z * [new branch] gh/mlazos/10/orig -> origin/gh/mlazos/10/orig 2025-08-26T20:40:01.8528064Z * [new branch] gh/mlazos/11/base -> origin/gh/mlazos/11/base 2025-08-26T20:40:01.8528535Z * [new branch] gh/mlazos/11/head -> origin/gh/mlazos/11/head 2025-08-26T20:40:01.8528997Z * [new branch] gh/mlazos/11/orig -> origin/gh/mlazos/11/orig 2025-08-26T20:40:01.8529467Z * [new branch] gh/mlazos/12/base -> origin/gh/mlazos/12/base 2025-08-26T20:40:01.8529936Z * [new branch] gh/mlazos/12/head -> origin/gh/mlazos/12/head 2025-08-26T20:40:01.8530402Z * [new branch] gh/mlazos/12/orig -> origin/gh/mlazos/12/orig 2025-08-26T20:40:01.8530871Z * [new branch] gh/mlazos/13/base -> origin/gh/mlazos/13/base 2025-08-26T20:40:01.8531334Z * [new branch] gh/mlazos/13/head -> origin/gh/mlazos/13/head 2025-08-26T20:40:01.8531797Z * [new branch] gh/mlazos/13/orig -> origin/gh/mlazos/13/orig 2025-08-26T20:40:01.8532265Z * [new branch] gh/mlazos/14/base -> origin/gh/mlazos/14/base 2025-08-26T20:40:01.8532723Z * [new branch] gh/mlazos/14/head -> origin/gh/mlazos/14/head 2025-08-26T20:40:01.8533188Z * [new branch] gh/mlazos/14/orig -> origin/gh/mlazos/14/orig 2025-08-26T20:40:01.8533775Z * [new branch] gh/mlazos/15/base -> origin/gh/mlazos/15/base 2025-08-26T20:40:01.8534245Z * [new branch] gh/mlazos/15/head -> origin/gh/mlazos/15/head 2025-08-26T20:40:01.8534715Z * [new branch] gh/mlazos/15/orig -> origin/gh/mlazos/15/orig 2025-08-26T20:40:01.8535179Z * [new branch] gh/mlazos/16/base -> origin/gh/mlazos/16/base 2025-08-26T20:40:01.8535656Z * [new branch] gh/mlazos/16/head -> origin/gh/mlazos/16/head 2025-08-26T20:40:01.8536218Z * [new branch] gh/mlazos/16/orig -> origin/gh/mlazos/16/orig 2025-08-26T20:40:01.8536681Z * [new branch] gh/mlazos/17/base -> origin/gh/mlazos/17/base 2025-08-26T20:40:01.8537169Z * [new branch] gh/mlazos/17/head -> origin/gh/mlazos/17/head 2025-08-26T20:40:01.8537633Z * [new branch] gh/mlazos/17/orig -> origin/gh/mlazos/17/orig 2025-08-26T20:40:01.8538119Z * [new branch] gh/mlazos/2/base -> origin/gh/mlazos/2/base 2025-08-26T20:40:01.8538586Z * [new branch] gh/mlazos/2/head -> origin/gh/mlazos/2/head 2025-08-26T20:40:01.8539046Z * [new branch] gh/mlazos/2/orig -> origin/gh/mlazos/2/orig 2025-08-26T20:40:01.8539516Z * [new branch] gh/mlazos/3/base -> origin/gh/mlazos/3/base 2025-08-26T20:40:01.8539972Z * [new branch] gh/mlazos/3/head -> origin/gh/mlazos/3/head 2025-08-26T20:40:01.8540451Z * [new branch] gh/mlazos/3/orig -> origin/gh/mlazos/3/orig 2025-08-26T20:40:01.8540903Z * [new branch] gh/mlazos/4/base -> origin/gh/mlazos/4/base 2025-08-26T20:40:01.8541373Z * [new branch] gh/mlazos/4/head -> origin/gh/mlazos/4/head 2025-08-26T20:40:01.9018668Z * [new branch] gh/mlazos/4/orig -> origin/gh/mlazos/4/orig 2025-08-26T20:40:01.9019195Z * [new branch] gh/mlazos/5/base -> origin/gh/mlazos/5/base 2025-08-26T20:40:01.9019732Z * [new branch] gh/mlazos/5/head -> origin/gh/mlazos/5/head 2025-08-26T20:40:01.9020240Z * [new branch] gh/mlazos/5/orig -> origin/gh/mlazos/5/orig 2025-08-26T20:40:01.9020719Z * [new branch] gh/mlazos/6/base -> origin/gh/mlazos/6/base 2025-08-26T20:40:01.9021180Z * [new branch] gh/mlazos/6/head -> origin/gh/mlazos/6/head 2025-08-26T20:40:01.9021657Z * [new branch] gh/mlazos/6/orig -> origin/gh/mlazos/6/orig 2025-08-26T20:40:01.9022120Z * [new branch] gh/mlazos/7/base -> origin/gh/mlazos/7/base 2025-08-26T20:40:01.9022576Z * [new branch] gh/mlazos/7/head -> origin/gh/mlazos/7/head 2025-08-26T20:40:01.9023042Z * [new branch] gh/mlazos/7/orig -> origin/gh/mlazos/7/orig 2025-08-26T20:40:01.9023506Z * [new branch] gh/mlazos/8/base -> origin/gh/mlazos/8/base 2025-08-26T20:40:01.9023959Z * [new branch] gh/mlazos/8/head -> origin/gh/mlazos/8/head 2025-08-26T20:40:01.9024429Z * [new branch] gh/mlazos/8/orig -> origin/gh/mlazos/8/orig 2025-08-26T20:40:01.9024876Z * [new branch] gh/mlazos/9/base -> origin/gh/mlazos/9/base 2025-08-26T20:40:01.9025353Z * [new branch] gh/mlazos/9/head -> origin/gh/mlazos/9/head 2025-08-26T20:40:01.9025831Z * [new branch] gh/mlazos/9/orig -> origin/gh/mlazos/9/orig 2025-08-26T20:40:01.9026294Z * [new branch] gh/mrmiywj/1/base -> origin/gh/mrmiywj/1/base 2025-08-26T20:40:01.9026783Z * [new branch] gh/mrmiywj/1/head -> origin/gh/mrmiywj/1/head 2025-08-26T20:40:01.9027272Z * [new branch] gh/muchulee8/62/base -> origin/gh/muchulee8/62/base 2025-08-26T20:40:01.9027935Z * [new branch] gh/muchulee8/62/head -> origin/gh/muchulee8/62/head 2025-08-26T20:40:01.9028432Z * [new branch] gh/muchulee8/62/orig -> origin/gh/muchulee8/62/orig 2025-08-26T20:40:01.9028921Z * [new branch] gh/muchulee8/63/base -> origin/gh/muchulee8/63/base 2025-08-26T20:40:01.9029427Z * [new branch] gh/muchulee8/63/head -> origin/gh/muchulee8/63/head 2025-08-26T20:40:01.9029922Z * [new branch] gh/muchulee8/63/orig -> origin/gh/muchulee8/63/orig 2025-08-26T20:40:01.9030512Z * [new branch] gh/muchulee8/64/base -> origin/gh/muchulee8/64/base 2025-08-26T20:40:01.9031015Z * [new branch] gh/muchulee8/64/head -> origin/gh/muchulee8/64/head 2025-08-26T20:40:01.9031506Z * [new branch] gh/muchulee8/64/orig -> origin/gh/muchulee8/64/orig 2025-08-26T20:40:01.9032011Z * [new branch] gh/muchulee8/65/base -> origin/gh/muchulee8/65/base 2025-08-26T20:40:01.9032513Z * [new branch] gh/muchulee8/65/head -> origin/gh/muchulee8/65/head 2025-08-26T20:40:01.9033024Z * [new branch] gh/muchulee8/65/orig -> origin/gh/muchulee8/65/orig 2025-08-26T20:40:01.9033562Z * [new branch] gh/naveenthangudu/1/base -> origin/gh/naveenthangudu/1/base 2025-08-26T20:40:01.9034118Z * [new branch] gh/naveenthangudu/1/head -> origin/gh/naveenthangudu/1/head 2025-08-26T20:40:01.9034678Z * [new branch] gh/naveenthangudu/1/orig -> origin/gh/naveenthangudu/1/orig 2025-08-26T20:40:01.9035225Z * [new branch] gh/naveenthangudu/2/base -> origin/gh/naveenthangudu/2/base 2025-08-26T20:40:01.9035847Z * [new branch] gh/naveenthangudu/2/head -> origin/gh/naveenthangudu/2/head 2025-08-26T20:40:01.9036441Z * [new branch] gh/naveenthangudu/2/orig -> origin/gh/naveenthangudu/2/orig 2025-08-26T20:40:01.9037006Z * [new branch] gh/naveenthangudu/3/base -> origin/gh/naveenthangudu/3/base 2025-08-26T20:40:01.9037574Z * [new branch] gh/naveenthangudu/3/head -> origin/gh/naveenthangudu/3/head 2025-08-26T20:40:01.9038121Z * [new branch] gh/naveenthangudu/3/orig -> origin/gh/naveenthangudu/3/orig 2025-08-26T20:40:01.9038685Z * [new branch] gh/naveenthangudu/4/base -> origin/gh/naveenthangudu/4/base 2025-08-26T20:40:01.9039225Z * [new branch] gh/naveenthangudu/4/head -> origin/gh/naveenthangudu/4/head 2025-08-26T20:40:01.9039790Z * [new branch] gh/naveenthangudu/4/orig -> origin/gh/naveenthangudu/4/orig 2025-08-26T20:40:01.9040345Z * [new branch] gh/naveenthangudu/5/base -> origin/gh/naveenthangudu/5/base 2025-08-26T20:40:01.9040893Z * [new branch] gh/naveenthangudu/5/head -> origin/gh/naveenthangudu/5/head 2025-08-26T20:40:01.9041449Z * [new branch] gh/naveenthangudu/5/orig -> origin/gh/naveenthangudu/5/orig 2025-08-26T20:40:01.9041991Z * [new branch] gh/naveenthangudu/6/base -> origin/gh/naveenthangudu/6/base 2025-08-26T20:40:01.9042544Z * [new branch] gh/naveenthangudu/6/head -> origin/gh/naveenthangudu/6/head 2025-08-26T20:40:01.9476505Z * [new branch] gh/naveenthangudu/6/orig -> origin/gh/naveenthangudu/6/orig 2025-08-26T20:40:01.9477063Z * [new branch] gh/oulgen/35/base -> origin/gh/oulgen/35/base 2025-08-26T20:40:01.9477591Z * [new branch] gh/oulgen/35/head -> origin/gh/oulgen/35/head 2025-08-26T20:40:01.9478091Z * [new branch] gh/oulgen/35/orig -> origin/gh/oulgen/35/orig 2025-08-26T20:40:01.9478564Z * [new branch] gh/oulgen/44/base -> origin/gh/oulgen/44/base 2025-08-26T20:40:01.9479036Z * [new branch] gh/oulgen/44/head -> origin/gh/oulgen/44/head 2025-08-26T20:40:01.9479678Z * [new branch] gh/oulgen/44/orig -> origin/gh/oulgen/44/orig 2025-08-26T20:40:01.9480148Z * [new branch] gh/oulgen/45/base -> origin/gh/oulgen/45/base 2025-08-26T20:40:01.9480622Z * [new branch] gh/oulgen/45/head -> origin/gh/oulgen/45/head 2025-08-26T20:40:01.9481087Z * [new branch] gh/oulgen/45/orig -> origin/gh/oulgen/45/orig 2025-08-26T20:40:01.9481566Z * [new branch] gh/oulgen/46/base -> origin/gh/oulgen/46/base 2025-08-26T20:40:01.9482120Z * [new branch] gh/oulgen/46/head -> origin/gh/oulgen/46/head 2025-08-26T20:40:01.9482601Z * [new branch] gh/oulgen/46/orig -> origin/gh/oulgen/46/orig 2025-08-26T20:40:01.9483134Z * [new branch] gh/oulgen/47/base -> origin/gh/oulgen/47/base 2025-08-26T20:40:01.9483598Z * [new branch] gh/oulgen/47/head -> origin/gh/oulgen/47/head 2025-08-26T20:40:01.9484094Z * [new branch] gh/oulgen/47/orig -> origin/gh/oulgen/47/orig 2025-08-26T20:40:01.9484555Z * [new branch] gh/pearu/108/base -> origin/gh/pearu/108/base 2025-08-26T20:40:01.9485045Z * [new branch] gh/pearu/108/head -> origin/gh/pearu/108/head 2025-08-26T20:40:01.9485506Z * [new branch] gh/pearu/108/orig -> origin/gh/pearu/108/orig 2025-08-26T20:40:01.9485982Z * [new branch] gh/pearu/56/base -> origin/gh/pearu/56/base 2025-08-26T20:40:01.9486448Z * [new branch] gh/pearu/56/head -> origin/gh/pearu/56/head 2025-08-26T20:40:01.9486909Z * [new branch] gh/pearu/56/orig -> origin/gh/pearu/56/orig 2025-08-26T20:40:01.9487381Z * [new branch] gh/pearu/97/base -> origin/gh/pearu/97/base 2025-08-26T20:40:01.9487831Z * [new branch] gh/pearu/97/head -> origin/gh/pearu/97/head 2025-08-26T20:40:01.9488296Z * [new branch] gh/pearu/97/orig -> origin/gh/pearu/97/orig 2025-08-26T20:40:01.9488773Z * [new branch] gh/qqaatw/29/base -> origin/gh/qqaatw/29/base 2025-08-26T20:40:01.9489236Z * [new branch] gh/qqaatw/29/head -> origin/gh/qqaatw/29/head 2025-08-26T20:40:01.9489726Z * [new branch] gh/qqaatw/29/orig -> origin/gh/qqaatw/29/orig 2025-08-26T20:40:01.9490287Z * [new branch] gh/raymo/cleanup-dynamo-logging -> origin/gh/raymo/cleanup-dynamo-logging 2025-08-26T20:40:01.9490900Z * [new branch] gh/raymo/refresh-script -> origin/gh/raymo/refresh-script 2025-08-26T20:40:01.9491404Z * [new branch] gh/rec/141/base -> origin/gh/rec/141/base 2025-08-26T20:40:01.9491852Z * [new branch] gh/rec/141/head -> origin/gh/rec/141/head 2025-08-26T20:40:01.9492299Z * [new branch] gh/rec/153/base -> origin/gh/rec/153/base 2025-08-26T20:40:01.9492745Z * [new branch] gh/rec/153/head -> origin/gh/rec/153/head 2025-08-26T20:40:01.9493198Z * [new branch] gh/rec/153/orig -> origin/gh/rec/153/orig 2025-08-26T20:40:01.9493653Z * [new branch] gh/rec/154/base -> origin/gh/rec/154/base 2025-08-26T20:40:01.9494091Z * [new branch] gh/rec/154/head -> origin/gh/rec/154/head 2025-08-26T20:40:01.9494548Z * [new branch] gh/rec/154/orig -> origin/gh/rec/154/orig 2025-08-26T20:40:01.9494992Z * [new branch] gh/rec/156/base -> origin/gh/rec/156/base 2025-08-26T20:40:01.9495440Z * [new branch] gh/rec/156/head -> origin/gh/rec/156/head 2025-08-26T20:40:01.9495881Z * [new branch] gh/rec/156/orig -> origin/gh/rec/156/orig 2025-08-26T20:40:01.9496333Z * [new branch] gh/rec/158/base -> origin/gh/rec/158/base 2025-08-26T20:40:01.9497400Z * [new branch] gh/rec/158/head -> origin/gh/rec/158/head 2025-08-26T20:40:01.9497853Z * [new branch] gh/rec/158/orig -> origin/gh/rec/158/orig 2025-08-26T20:40:01.9498310Z * [new branch] gh/rec/159/base -> origin/gh/rec/159/base 2025-08-26T20:40:01.9498756Z * [new branch] gh/rec/159/head -> origin/gh/rec/159/head 2025-08-26T20:40:01.9499220Z * [new branch] gh/rec/160/base -> origin/gh/rec/160/base 2025-08-26T20:40:01.9499769Z * [new branch] gh/rec/160/head -> origin/gh/rec/160/head 2025-08-26T20:40:01.9972584Z * [new branch] gh/rec/160/orig -> origin/gh/rec/160/orig 2025-08-26T20:40:01.9973084Z * [new branch] gh/rec/161/base -> origin/gh/rec/161/base 2025-08-26T20:40:01.9973531Z * [new branch] gh/rec/161/head -> origin/gh/rec/161/head 2025-08-26T20:40:01.9973997Z * [new branch] gh/rec/161/orig -> origin/gh/rec/161/orig 2025-08-26T20:40:01.9974467Z * [new branch] gh/rec/162/base -> origin/gh/rec/162/base 2025-08-26T20:40:01.9974912Z * [new branch] gh/rec/162/head -> origin/gh/rec/162/head 2025-08-26T20:40:01.9975359Z * [new branch] gh/rec/162/orig -> origin/gh/rec/162/orig 2025-08-26T20:40:01.9975796Z * [new branch] gh/rec/163/base -> origin/gh/rec/163/base 2025-08-26T20:40:01.9976249Z * [new branch] gh/rec/163/head -> origin/gh/rec/163/head 2025-08-26T20:40:01.9976704Z * [new branch] gh/rec/163/orig -> origin/gh/rec/163/orig 2025-08-26T20:40:01.9977161Z * [new branch] gh/rec/164/base -> origin/gh/rec/164/base 2025-08-26T20:40:01.9977607Z * [new branch] gh/rec/164/head -> origin/gh/rec/164/head 2025-08-26T20:40:01.9978049Z * [new branch] gh/rec/164/orig -> origin/gh/rec/164/orig 2025-08-26T20:40:01.9978492Z * [new branch] gh/rec/165/base -> origin/gh/rec/165/base 2025-08-26T20:40:01.9978932Z * [new branch] gh/rec/165/head -> origin/gh/rec/165/head 2025-08-26T20:40:01.9979368Z * [new branch] gh/rec/165/orig -> origin/gh/rec/165/orig 2025-08-26T20:40:01.9979880Z * [new branch] gh/robert-hardwick/1/base -> origin/gh/robert-hardwick/1/base 2025-08-26T20:40:01.9980436Z * [new branch] gh/robert-hardwick/1/head -> origin/gh/robert-hardwick/1/head 2025-08-26T20:40:01.9980997Z * [new branch] gh/robert-hardwick/1/orig -> origin/gh/robert-hardwick/1/orig 2025-08-26T20:40:01.9981541Z * [new branch] gh/robert-hardwick/2/base -> origin/gh/robert-hardwick/2/base 2025-08-26T20:40:01.9982076Z * [new branch] gh/robert-hardwick/2/head -> origin/gh/robert-hardwick/2/head 2025-08-26T20:40:01.9982632Z * [new branch] gh/robert-hardwick/2/orig -> origin/gh/robert-hardwick/2/orig 2025-08-26T20:40:01.9983166Z * [new branch] gh/robert-hardwick/3/base -> origin/gh/robert-hardwick/3/base 2025-08-26T20:40:01.9983710Z * [new branch] gh/robert-hardwick/3/head -> origin/gh/robert-hardwick/3/head 2025-08-26T20:40:01.9984252Z * [new branch] gh/robert-hardwick/3/orig -> origin/gh/robert-hardwick/3/orig 2025-08-26T20:40:01.9984787Z * [new branch] gh/robert-hardwick/4/base -> origin/gh/robert-hardwick/4/base 2025-08-26T20:40:01.9985337Z * [new branch] gh/robert-hardwick/4/head -> origin/gh/robert-hardwick/4/head 2025-08-26T20:40:01.9985867Z * [new branch] gh/robert-hardwick/4/orig -> origin/gh/robert-hardwick/4/orig 2025-08-26T20:40:01.9986376Z * [new branch] gh/rtimpe/1/base -> origin/gh/rtimpe/1/base 2025-08-26T20:40:01.9986997Z * [new branch] gh/rtimpe/1/head -> origin/gh/rtimpe/1/head 2025-08-26T20:40:01.9987468Z * [new branch] gh/rtimpe/10/base -> origin/gh/rtimpe/10/base 2025-08-26T20:40:01.9987962Z * [new branch] gh/rtimpe/10/head -> origin/gh/rtimpe/10/head 2025-08-26T20:40:01.9988428Z * [new branch] gh/rtimpe/10/orig -> origin/gh/rtimpe/10/orig 2025-08-26T20:40:01.9988916Z * [new branch] gh/rtimpe/11/base -> origin/gh/rtimpe/11/base 2025-08-26T20:40:01.9989472Z * [new branch] gh/rtimpe/11/head -> origin/gh/rtimpe/11/head 2025-08-26T20:40:01.9989945Z * [new branch] gh/rtimpe/11/orig -> origin/gh/rtimpe/11/orig 2025-08-26T20:40:01.9990411Z * [new branch] gh/rtimpe/12/base -> origin/gh/rtimpe/12/base 2025-08-26T20:40:01.9990885Z * [new branch] gh/rtimpe/12/head -> origin/gh/rtimpe/12/head 2025-08-26T20:40:01.9991378Z * [new branch] gh/rtimpe/12/orig -> origin/gh/rtimpe/12/orig 2025-08-26T20:40:01.9991843Z * [new branch] gh/rtimpe/13/base -> origin/gh/rtimpe/13/base 2025-08-26T20:40:01.9992332Z * [new branch] gh/rtimpe/13/head -> origin/gh/rtimpe/13/head 2025-08-26T20:40:01.9992793Z * [new branch] gh/rtimpe/13/orig -> origin/gh/rtimpe/13/orig 2025-08-26T20:40:01.9993262Z * [new branch] gh/rtimpe/14/base -> origin/gh/rtimpe/14/base 2025-08-26T20:40:01.9993722Z * [new branch] gh/rtimpe/14/head -> origin/gh/rtimpe/14/head 2025-08-26T20:40:01.9994195Z * [new branch] gh/rtimpe/14/orig -> origin/gh/rtimpe/14/orig 2025-08-26T20:40:01.9994669Z * [new branch] gh/rtimpe/2/base -> origin/gh/rtimpe/2/base 2025-08-26T20:40:01.9995122Z * [new branch] gh/rtimpe/2/head -> origin/gh/rtimpe/2/head 2025-08-26T20:40:01.9995597Z * [new branch] gh/rtimpe/3/base -> origin/gh/rtimpe/3/base 2025-08-26T20:40:02.0528650Z * [new branch] gh/rtimpe/3/head -> origin/gh/rtimpe/3/head 2025-08-26T20:40:02.0529140Z * [new branch] gh/rtimpe/4/base -> origin/gh/rtimpe/4/base 2025-08-26T20:40:02.0529602Z * [new branch] gh/rtimpe/4/head -> origin/gh/rtimpe/4/head 2025-08-26T20:40:02.0530054Z * [new branch] gh/rtimpe/6/base -> origin/gh/rtimpe/6/base 2025-08-26T20:40:02.0530530Z * [new branch] gh/rtimpe/6/head -> origin/gh/rtimpe/6/head 2025-08-26T20:40:02.0530981Z * [new branch] gh/rtimpe/6/orig -> origin/gh/rtimpe/6/orig 2025-08-26T20:40:02.0531440Z * [new branch] gh/rtimpe/7/base -> origin/gh/rtimpe/7/base 2025-08-26T20:40:02.0531901Z * [new branch] gh/rtimpe/7/head -> origin/gh/rtimpe/7/head 2025-08-26T20:40:02.0532374Z * [new branch] gh/rtimpe/7/orig -> origin/gh/rtimpe/7/orig 2025-08-26T20:40:02.0532835Z * [new branch] gh/rtimpe/8/base -> origin/gh/rtimpe/8/base 2025-08-26T20:40:02.0533290Z * [new branch] gh/rtimpe/8/head -> origin/gh/rtimpe/8/head 2025-08-26T20:40:02.0533745Z * [new branch] gh/rtimpe/8/orig -> origin/gh/rtimpe/8/orig 2025-08-26T20:40:02.0534213Z * [new branch] gh/rtimpe/9/base -> origin/gh/rtimpe/9/base 2025-08-26T20:40:02.0534671Z * [new branch] gh/rtimpe/9/head -> origin/gh/rtimpe/9/head 2025-08-26T20:40:02.0535133Z * [new branch] gh/rtimpe/9/orig -> origin/gh/rtimpe/9/orig 2025-08-26T20:40:02.0535625Z * [new branch] gh/ruisizhang123/1/base -> origin/gh/ruisizhang123/1/base 2025-08-26T20:40:02.0536163Z * [new branch] gh/ruisizhang123/1/head -> origin/gh/ruisizhang123/1/head 2025-08-26T20:40:02.0536849Z * [new branch] gh/ruisizhang123/1/orig -> origin/gh/ruisizhang123/1/orig 2025-08-26T20:40:02.0537373Z * [new branch] gh/ruisizhang123/4/base -> origin/gh/ruisizhang123/4/base 2025-08-26T20:40:02.0537901Z * [new branch] gh/ruisizhang123/4/head -> origin/gh/ruisizhang123/4/head 2025-08-26T20:40:02.0538417Z * [new branch] gh/ruisizhang123/4/orig -> origin/gh/ruisizhang123/4/orig 2025-08-26T20:40:02.0539540Z * [new branch] gh/ruisizhang123/5/base -> origin/gh/ruisizhang123/5/base 2025-08-26T20:40:02.0540083Z * [new branch] gh/ruisizhang123/5/head -> origin/gh/ruisizhang123/5/head 2025-08-26T20:40:02.0540618Z * [new branch] gh/ruisizhang123/5/orig -> origin/gh/ruisizhang123/5/orig 2025-08-26T20:40:02.0541158Z * [new branch] gh/ruisizhang123/6/base -> origin/gh/ruisizhang123/6/base 2025-08-26T20:40:02.0541683Z * [new branch] gh/ruisizhang123/6/head -> origin/gh/ruisizhang123/6/head 2025-08-26T20:40:02.0542211Z * [new branch] gh/ruisizhang123/6/orig -> origin/gh/ruisizhang123/6/orig 2025-08-26T20:40:02.0542727Z * [new branch] gh/ruisizhang123/7/base -> origin/gh/ruisizhang123/7/base 2025-08-26T20:40:02.0543264Z * [new branch] gh/ruisizhang123/7/head -> origin/gh/ruisizhang123/7/head 2025-08-26T20:40:02.0543786Z * [new branch] gh/ruisizhang123/7/orig -> origin/gh/ruisizhang123/7/orig 2025-08-26T20:40:02.0544305Z * [new branch] gh/ruisizhang123/8/base -> origin/gh/ruisizhang123/8/base 2025-08-26T20:40:02.0544827Z * [new branch] gh/ruisizhang123/8/head -> origin/gh/ruisizhang123/8/head 2025-08-26T20:40:02.0545346Z * [new branch] gh/ruisizhang123/8/orig -> origin/gh/ruisizhang123/8/orig 2025-08-26T20:40:02.0545851Z * [new branch] gh/sarckk/2/base -> origin/gh/sarckk/2/base 2025-08-26T20:40:02.0546319Z * [new branch] gh/sarckk/2/head -> origin/gh/sarckk/2/head 2025-08-26T20:40:02.0546781Z * [new branch] gh/sarckk/2/orig -> origin/gh/sarckk/2/orig 2025-08-26T20:40:02.0547265Z * [new branch] gh/seemethere/23/head -> origin/gh/seemethere/23/head 2025-08-26T20:40:02.0547770Z * [new branch] gh/seemethere/32/base -> origin/gh/seemethere/32/base 2025-08-26T20:40:02.0548275Z * [new branch] gh/seemethere/32/head -> origin/gh/seemethere/32/head 2025-08-26T20:40:02.0548783Z * [new branch] gh/seemethere/32/orig -> origin/gh/seemethere/32/orig 2025-08-26T20:40:02.0549286Z * [new branch] gh/seemethere/33/base -> origin/gh/seemethere/33/base 2025-08-26T20:40:02.0549799Z * [new branch] gh/seemethere/33/head -> origin/gh/seemethere/33/head 2025-08-26T20:40:02.0550301Z * [new branch] gh/seemethere/33/orig -> origin/gh/seemethere/33/orig 2025-08-26T20:40:02.0550807Z * [new branch] gh/seemethere/34/base -> origin/gh/seemethere/34/base 2025-08-26T20:40:02.0551306Z * [new branch] gh/seemethere/34/head -> origin/gh/seemethere/34/head 2025-08-26T20:40:02.0551804Z * [new branch] gh/seemethere/34/orig -> origin/gh/seemethere/34/orig 2025-08-26T20:40:02.0976862Z * [new branch] gh/seemethere/35/base -> origin/gh/seemethere/35/base 2025-08-26T20:40:02.0977456Z * [new branch] gh/seemethere/35/head -> origin/gh/seemethere/35/head 2025-08-26T20:40:02.0977985Z * [new branch] gh/seemethere/35/orig -> origin/gh/seemethere/35/orig 2025-08-26T20:40:02.0978496Z * [new branch] gh/seemethere/37/base -> origin/gh/seemethere/37/base 2025-08-26T20:40:02.0978995Z * [new branch] gh/seemethere/37/head -> origin/gh/seemethere/37/head 2025-08-26T20:40:02.0979673Z * [new branch] gh/seemethere/37/orig -> origin/gh/seemethere/37/orig 2025-08-26T20:40:02.0980178Z * [new branch] gh/seemethere/43/base -> origin/gh/seemethere/43/base 2025-08-26T20:40:02.0980692Z * [new branch] gh/seemethere/43/head -> origin/gh/seemethere/43/head 2025-08-26T20:40:02.0981201Z * [new branch] gh/seemethere/43/orig -> origin/gh/seemethere/43/orig 2025-08-26T20:40:02.0981708Z * [new branch] gh/seemethere/44/base -> origin/gh/seemethere/44/base 2025-08-26T20:40:02.0982312Z * [new branch] gh/seemethere/44/head -> origin/gh/seemethere/44/head 2025-08-26T20:40:02.0982814Z * [new branch] gh/seemethere/44/orig -> origin/gh/seemethere/44/orig 2025-08-26T20:40:02.0983326Z * [new branch] gh/seemethere/48/base -> origin/gh/seemethere/48/base 2025-08-26T20:40:02.0983834Z * [new branch] gh/seemethere/48/head -> origin/gh/seemethere/48/head 2025-08-26T20:40:02.0984336Z * [new branch] gh/seemethere/48/orig -> origin/gh/seemethere/48/orig 2025-08-26T20:40:02.0984843Z * [new branch] gh/seemethere/49/base -> origin/gh/seemethere/49/base 2025-08-26T20:40:02.0985340Z * [new branch] gh/seemethere/49/head -> origin/gh/seemethere/49/head 2025-08-26T20:40:02.0985850Z * [new branch] gh/seemethere/49/orig -> origin/gh/seemethere/49/orig 2025-08-26T20:40:02.0986368Z * [new branch] gh/seemethere/51/base -> origin/gh/seemethere/51/base 2025-08-26T20:40:02.0986864Z * [new branch] gh/seemethere/51/head -> origin/gh/seemethere/51/head 2025-08-26T20:40:02.0987371Z * [new branch] gh/seemethere/51/orig -> origin/gh/seemethere/51/orig 2025-08-26T20:40:02.0987876Z * [new branch] gh/seemethere/52/base -> origin/gh/seemethere/52/base 2025-08-26T20:40:02.0988381Z * [new branch] gh/seemethere/52/head -> origin/gh/seemethere/52/head 2025-08-26T20:40:02.0988878Z * [new branch] gh/seemethere/52/orig -> origin/gh/seemethere/52/orig 2025-08-26T20:40:02.0989384Z * [new branch] gh/seemethere/53/base -> origin/gh/seemethere/53/base 2025-08-26T20:40:02.0989884Z * [new branch] gh/seemethere/53/head -> origin/gh/seemethere/53/head 2025-08-26T20:40:02.0990382Z * [new branch] gh/seemethere/53/orig -> origin/gh/seemethere/53/orig 2025-08-26T20:40:02.0990890Z * [new branch] gh/seemethere/54/base -> origin/gh/seemethere/54/base 2025-08-26T20:40:02.0991387Z * [new branch] gh/seemethere/54/head -> origin/gh/seemethere/54/head 2025-08-26T20:40:02.0991891Z * [new branch] gh/seemethere/54/orig -> origin/gh/seemethere/54/orig 2025-08-26T20:40:02.0992399Z * [new branch] gh/seemethere/55/base -> origin/gh/seemethere/55/base 2025-08-26T20:40:02.0992902Z * [new branch] gh/seemethere/55/head -> origin/gh/seemethere/55/head 2025-08-26T20:40:02.0993418Z * [new branch] gh/seemethere/55/orig -> origin/gh/seemethere/55/orig 2025-08-26T20:40:02.0993919Z * [new branch] gh/seemethere/56/base -> origin/gh/seemethere/56/base 2025-08-26T20:40:02.0994433Z * [new branch] gh/seemethere/56/head -> origin/gh/seemethere/56/head 2025-08-26T20:40:02.0994942Z * [new branch] gh/seemethere/56/orig -> origin/gh/seemethere/56/orig 2025-08-26T20:40:02.0995445Z * [new branch] gh/seemethere/57/base -> origin/gh/seemethere/57/base 2025-08-26T20:40:02.0995960Z * [new branch] gh/seemethere/57/head -> origin/gh/seemethere/57/head 2025-08-26T20:40:02.0996458Z * [new branch] gh/seemethere/57/orig -> origin/gh/seemethere/57/orig 2025-08-26T20:40:02.0997070Z * [new branch] gh/seemethere/58/base -> origin/gh/seemethere/58/base 2025-08-26T20:40:02.0997593Z * [new branch] gh/seemethere/58/head -> origin/gh/seemethere/58/head 2025-08-26T20:40:02.0998094Z * [new branch] gh/seemethere/58/orig -> origin/gh/seemethere/58/orig 2025-08-26T20:40:02.0998610Z * [new branch] gh/seemethere/59/base -> origin/gh/seemethere/59/base 2025-08-26T20:40:02.0999118Z * [new branch] gh/seemethere/59/head -> origin/gh/seemethere/59/head 2025-08-26T20:40:02.0999706Z * [new branch] gh/seemethere/59/orig -> origin/gh/seemethere/59/orig 2025-08-26T20:40:02.1000212Z * [new branch] gh/seemethere/7/head -> origin/gh/seemethere/7/head 2025-08-26T20:40:02.1451710Z * [new branch] gh/shunting314/145/base -> origin/gh/shunting314/145/base 2025-08-26T20:40:02.1452298Z * [new branch] gh/shunting314/145/head -> origin/gh/shunting314/145/head 2025-08-26T20:40:02.1452851Z * [new branch] gh/shunting314/145/orig -> origin/gh/shunting314/145/orig 2025-08-26T20:40:02.1453368Z * [new branch] gh/shunting314/176/base -> origin/gh/shunting314/176/base 2025-08-26T20:40:02.1453888Z * [new branch] gh/shunting314/176/head -> origin/gh/shunting314/176/head 2025-08-26T20:40:02.1454398Z * [new branch] gh/shunting314/176/orig -> origin/gh/shunting314/176/orig 2025-08-26T20:40:02.1454920Z * [new branch] gh/shunting314/211/base -> origin/gh/shunting314/211/base 2025-08-26T20:40:02.1455436Z * [new branch] gh/shunting314/211/head -> origin/gh/shunting314/211/head 2025-08-26T20:40:02.1455957Z * [new branch] gh/shunting314/211/orig -> origin/gh/shunting314/211/orig 2025-08-26T20:40:02.1456474Z * [new branch] gh/shunting314/212/base -> origin/gh/shunting314/212/base 2025-08-26T20:40:02.1456990Z * [new branch] gh/shunting314/212/head -> origin/gh/shunting314/212/head 2025-08-26T20:40:02.1457510Z * [new branch] gh/shunting314/212/orig -> origin/gh/shunting314/212/orig 2025-08-26T20:40:02.1458019Z * [new branch] gh/shunting314/213/base -> origin/gh/shunting314/213/base 2025-08-26T20:40:02.1458539Z * [new branch] gh/shunting314/213/head -> origin/gh/shunting314/213/head 2025-08-26T20:40:02.1459051Z * [new branch] gh/shunting314/213/orig -> origin/gh/shunting314/213/orig 2025-08-26T20:40:02.1459563Z * [new branch] gh/silverguo/1/base -> origin/gh/silverguo/1/base 2025-08-26T20:40:02.1460064Z * [new branch] gh/silverguo/1/head -> origin/gh/silverguo/1/head 2025-08-26T20:40:02.1460547Z * [new branch] gh/silverguo/2/base -> origin/gh/silverguo/2/base 2025-08-26T20:40:02.1461037Z * [new branch] gh/silverguo/2/head -> origin/gh/silverguo/2/head 2025-08-26T20:40:02.1461531Z * [new branch] gh/silverguo/3/base -> origin/gh/silverguo/3/base 2025-08-26T20:40:02.1462008Z * [new branch] gh/silverguo/3/head -> origin/gh/silverguo/3/head 2025-08-26T20:40:02.1462499Z * [new branch] gh/silverguo/4/base -> origin/gh/silverguo/4/base 2025-08-26T20:40:02.1462978Z * [new branch] gh/silverguo/4/head -> origin/gh/silverguo/4/head 2025-08-26T20:40:02.1463483Z * [new branch] gh/sinhaanhsul/1/base -> origin/gh/sinhaanhsul/1/base 2025-08-26T20:40:02.1464008Z * [new branch] gh/sinhaanhsul/1/head -> origin/gh/sinhaanhsul/1/head 2025-08-26T20:40:02.1464501Z * [new branch] gh/skarjala/13/base -> origin/gh/skarjala/13/base 2025-08-26T20:40:02.1464998Z * [new branch] gh/skarjala/13/head -> origin/gh/skarjala/13/head 2025-08-26T20:40:02.1465482Z * [new branch] gh/skarjala/13/orig -> origin/gh/skarjala/13/orig 2025-08-26T20:40:02.1466139Z * [new branch] gh/skarjala/15/base -> origin/gh/skarjala/15/base 2025-08-26T20:40:02.1466623Z * [new branch] gh/skarjala/15/head -> origin/gh/skarjala/15/head 2025-08-26T20:40:02.1467175Z * [new branch] gh/skarjala/15/orig -> origin/gh/skarjala/15/orig 2025-08-26T20:40:02.1467766Z * [new branch] gh/skarjala/16/base -> origin/gh/skarjala/16/base 2025-08-26T20:40:02.1468244Z * [new branch] gh/skarjala/16/head -> origin/gh/skarjala/16/head 2025-08-26T20:40:02.1468833Z * [new branch] gh/skarjala/16/orig -> origin/gh/skarjala/16/orig 2025-08-26T20:40:02.1469315Z * [new branch] gh/skarjala/17/base -> origin/gh/skarjala/17/base 2025-08-26T20:40:02.1469807Z * [new branch] gh/skarjala/17/head -> origin/gh/skarjala/17/head 2025-08-26T20:40:02.1470294Z * [new branch] gh/skarjala/17/orig -> origin/gh/skarjala/17/orig 2025-08-26T20:40:02.1470771Z * [new branch] gh/skarjala/18/base -> origin/gh/skarjala/18/base 2025-08-26T20:40:02.1471257Z * [new branch] gh/skarjala/18/head -> origin/gh/skarjala/18/head 2025-08-26T20:40:02.1471734Z * [new branch] gh/skarjala/18/orig -> origin/gh/skarjala/18/orig 2025-08-26T20:40:02.1472217Z * [new branch] gh/skarjala/19/base -> origin/gh/skarjala/19/base 2025-08-26T20:40:02.1472708Z * [new branch] gh/skarjala/19/head -> origin/gh/skarjala/19/head 2025-08-26T20:40:02.1473184Z * [new branch] gh/skarjala/19/orig -> origin/gh/skarjala/19/orig 2025-08-26T20:40:02.1473671Z * [new branch] gh/slayton58/1/base -> origin/gh/slayton58/1/base 2025-08-26T20:40:02.1474159Z * [new branch] gh/slayton58/1/head -> origin/gh/slayton58/1/head 2025-08-26T20:40:02.1474650Z * [new branch] gh/slayton58/1/orig -> origin/gh/slayton58/1/orig 2025-08-26T20:40:02.1475130Z * [new branch] gh/slayton58/2/base -> origin/gh/slayton58/2/base 2025-08-26T20:40:02.1923940Z * [new branch] gh/slayton58/2/head -> origin/gh/slayton58/2/head 2025-08-26T20:40:02.1924467Z * [new branch] gh/slayton58/2/orig -> origin/gh/slayton58/2/orig 2025-08-26T20:40:02.1924958Z * [new branch] gh/slayton58/3/base -> origin/gh/slayton58/3/base 2025-08-26T20:40:02.1925521Z * [new branch] gh/slayton58/3/head -> origin/gh/slayton58/3/head 2025-08-26T20:40:02.1926007Z * [new branch] gh/slayton58/3/orig -> origin/gh/slayton58/3/orig 2025-08-26T20:40:02.1926482Z * [new branch] gh/slayton58/4/base -> origin/gh/slayton58/4/base 2025-08-26T20:40:02.1926967Z * [new branch] gh/slayton58/4/head -> origin/gh/slayton58/4/head 2025-08-26T20:40:02.1927446Z * [new branch] gh/slayton58/4/orig -> origin/gh/slayton58/4/orig 2025-08-26T20:40:02.1927981Z * [new branch] gh/slayton58/5/base -> origin/gh/slayton58/5/base 2025-08-26T20:40:02.1928544Z * [new branch] gh/slayton58/5/head -> origin/gh/slayton58/5/head 2025-08-26T20:40:02.1929037Z * [new branch] gh/slayton58/5/orig -> origin/gh/slayton58/5/orig 2025-08-26T20:40:02.1929532Z * [new branch] gh/soulitzer/269/base -> origin/gh/soulitzer/269/base 2025-08-26T20:40:02.1930037Z * [new branch] gh/soulitzer/269/head -> origin/gh/soulitzer/269/head 2025-08-26T20:40:02.1930539Z * [new branch] gh/soulitzer/269/orig -> origin/gh/soulitzer/269/orig 2025-08-26T20:40:02.1931038Z * [new branch] gh/soulitzer/276/base -> origin/gh/soulitzer/276/base 2025-08-26T20:40:02.1931532Z * [new branch] gh/soulitzer/276/head -> origin/gh/soulitzer/276/head 2025-08-26T20:40:02.1932176Z * [new branch] gh/soulitzer/276/orig -> origin/gh/soulitzer/276/orig 2025-08-26T20:40:02.1932677Z * [new branch] gh/soulitzer/287/base -> origin/gh/soulitzer/287/base 2025-08-26T20:40:02.1933186Z * [new branch] gh/soulitzer/287/head -> origin/gh/soulitzer/287/head 2025-08-26T20:40:02.1933695Z * [new branch] gh/soulitzer/287/orig -> origin/gh/soulitzer/287/orig 2025-08-26T20:40:02.1934292Z * [new branch] gh/soulitzer/296/base -> origin/gh/soulitzer/296/base 2025-08-26T20:40:02.1934806Z * [new branch] gh/soulitzer/296/head -> origin/gh/soulitzer/296/head 2025-08-26T20:40:02.1935305Z * [new branch] gh/soulitzer/296/orig -> origin/gh/soulitzer/296/orig 2025-08-26T20:40:02.1935817Z * [new branch] gh/soulitzer/299/base -> origin/gh/soulitzer/299/base 2025-08-26T20:40:02.1936333Z * [new branch] gh/soulitzer/299/head -> origin/gh/soulitzer/299/head 2025-08-26T20:40:02.1936840Z * [new branch] gh/soulitzer/299/orig -> origin/gh/soulitzer/299/orig 2025-08-26T20:40:02.1937350Z * [new branch] gh/soulitzer/300/base -> origin/gh/soulitzer/300/base 2025-08-26T20:40:02.1937844Z * [new branch] gh/soulitzer/300/head -> origin/gh/soulitzer/300/head 2025-08-26T20:40:02.1938350Z * [new branch] gh/soulitzer/300/orig -> origin/gh/soulitzer/300/orig 2025-08-26T20:40:02.1938869Z * [new branch] gh/soulitzer/301/base -> origin/gh/soulitzer/301/base 2025-08-26T20:40:02.1939369Z * [new branch] gh/soulitzer/301/head -> origin/gh/soulitzer/301/head 2025-08-26T20:40:02.1939868Z * [new branch] gh/soulitzer/301/orig -> origin/gh/soulitzer/301/orig 2025-08-26T20:40:02.1940359Z * [new branch] gh/soulitzer/313/base -> origin/gh/soulitzer/313/base 2025-08-26T20:40:02.1940867Z * [new branch] gh/soulitzer/313/head -> origin/gh/soulitzer/313/head 2025-08-26T20:40:02.1941359Z * [new branch] gh/soulitzer/313/orig -> origin/gh/soulitzer/313/orig 2025-08-26T20:40:02.1941855Z * [new branch] gh/soulitzer/319/base -> origin/gh/soulitzer/319/base 2025-08-26T20:40:02.1942360Z * [new branch] gh/soulitzer/319/head -> origin/gh/soulitzer/319/head 2025-08-26T20:40:02.1942851Z * [new branch] gh/soulitzer/319/orig -> origin/gh/soulitzer/319/orig 2025-08-26T20:40:02.1943355Z * [new branch] gh/soulitzer/320/base -> origin/gh/soulitzer/320/base 2025-08-26T20:40:02.1943847Z * [new branch] gh/soulitzer/320/head -> origin/gh/soulitzer/320/head 2025-08-26T20:40:02.1944465Z * [new branch] gh/soulitzer/320/orig -> origin/gh/soulitzer/320/orig 2025-08-26T20:40:02.1945025Z * [new branch] gh/soulitzer/336/base -> origin/gh/soulitzer/336/base 2025-08-26T20:40:02.1945522Z * [new branch] gh/soulitzer/336/head -> origin/gh/soulitzer/336/head 2025-08-26T20:40:02.1946031Z * [new branch] gh/soulitzer/336/orig -> origin/gh/soulitzer/336/orig 2025-08-26T20:40:02.1946527Z * [new branch] gh/soulitzer/347/base -> origin/gh/soulitzer/347/base 2025-08-26T20:40:02.1947036Z * [new branch] gh/soulitzer/347/head -> origin/gh/soulitzer/347/head 2025-08-26T20:40:02.2366422Z * [new branch] gh/soulitzer/347/orig -> origin/gh/soulitzer/347/orig 2025-08-26T20:40:02.2367002Z * [new branch] gh/soulitzer/349/base -> origin/gh/soulitzer/349/base 2025-08-26T20:40:02.2367512Z * [new branch] gh/soulitzer/349/head -> origin/gh/soulitzer/349/head 2025-08-26T20:40:02.2368016Z * [new branch] gh/soulitzer/349/orig -> origin/gh/soulitzer/349/orig 2025-08-26T20:40:02.2368658Z * [new branch] gh/soulitzer/350/base -> origin/gh/soulitzer/350/base 2025-08-26T20:40:02.2369163Z * [new branch] gh/soulitzer/350/head -> origin/gh/soulitzer/350/head 2025-08-26T20:40:02.2369667Z * [new branch] gh/soulitzer/350/orig -> origin/gh/soulitzer/350/orig 2025-08-26T20:40:02.2370162Z * [new branch] gh/soulitzer/351/base -> origin/gh/soulitzer/351/base 2025-08-26T20:40:02.2370665Z * [new branch] gh/soulitzer/351/head -> origin/gh/soulitzer/351/head 2025-08-26T20:40:02.2371252Z * [new branch] gh/soulitzer/351/orig -> origin/gh/soulitzer/351/orig 2025-08-26T20:40:02.2371762Z * [new branch] gh/soulitzer/353/base -> origin/gh/soulitzer/353/base 2025-08-26T20:40:02.2372269Z * [new branch] gh/soulitzer/353/head -> origin/gh/soulitzer/353/head 2025-08-26T20:40:02.2372767Z * [new branch] gh/soulitzer/353/orig -> origin/gh/soulitzer/353/orig 2025-08-26T20:40:02.2373276Z * [new branch] gh/soulitzer/358/base -> origin/gh/soulitzer/358/base 2025-08-26T20:40:02.2373776Z * [new branch] gh/soulitzer/358/head -> origin/gh/soulitzer/358/head 2025-08-26T20:40:02.2374276Z * [new branch] gh/soulitzer/358/orig -> origin/gh/soulitzer/358/orig 2025-08-26T20:40:02.2374769Z * [new branch] gh/soulitzer/359/base -> origin/gh/soulitzer/359/base 2025-08-26T20:40:02.2375272Z * [new branch] gh/soulitzer/359/head -> origin/gh/soulitzer/359/head 2025-08-26T20:40:02.2375783Z * [new branch] gh/soulitzer/359/orig -> origin/gh/soulitzer/359/orig 2025-08-26T20:40:02.2376272Z * [new branch] gh/soulitzer/362/base -> origin/gh/soulitzer/362/base 2025-08-26T20:40:02.2376771Z * [new branch] gh/soulitzer/362/head -> origin/gh/soulitzer/362/head 2025-08-26T20:40:02.2377271Z * [new branch] gh/soulitzer/362/orig -> origin/gh/soulitzer/362/orig 2025-08-26T20:40:02.2377770Z * [new branch] gh/soulitzer/372/base -> origin/gh/soulitzer/372/base 2025-08-26T20:40:02.2378275Z * [new branch] gh/soulitzer/372/head -> origin/gh/soulitzer/372/head 2025-08-26T20:40:02.2378766Z * [new branch] gh/soulitzer/372/orig -> origin/gh/soulitzer/372/orig 2025-08-26T20:40:02.2379259Z * [new branch] gh/soulitzer/373/base -> origin/gh/soulitzer/373/base 2025-08-26T20:40:02.2379752Z * [new branch] gh/soulitzer/373/head -> origin/gh/soulitzer/373/head 2025-08-26T20:40:02.2380262Z * [new branch] gh/soulitzer/373/orig -> origin/gh/soulitzer/373/orig 2025-08-26T20:40:02.2380764Z * [new branch] gh/soulitzer/374/base -> origin/gh/soulitzer/374/base 2025-08-26T20:40:02.2381256Z * [new branch] gh/soulitzer/374/head -> origin/gh/soulitzer/374/head 2025-08-26T20:40:02.2381755Z * [new branch] gh/soulitzer/374/orig -> origin/gh/soulitzer/374/orig 2025-08-26T20:40:02.2382250Z * [new branch] gh/soulitzer/375/base -> origin/gh/soulitzer/375/base 2025-08-26T20:40:02.2382758Z * [new branch] gh/soulitzer/375/head -> origin/gh/soulitzer/375/head 2025-08-26T20:40:02.2383254Z * [new branch] gh/soulitzer/375/orig -> origin/gh/soulitzer/375/orig 2025-08-26T20:40:02.2383748Z * [new branch] gh/soulitzer/376/base -> origin/gh/soulitzer/376/base 2025-08-26T20:40:02.2384250Z * [new branch] gh/soulitzer/376/head -> origin/gh/soulitzer/376/head 2025-08-26T20:40:02.2384740Z * [new branch] gh/soulitzer/376/orig -> origin/gh/soulitzer/376/orig 2025-08-26T20:40:02.2385243Z * [new branch] gh/soulitzer/377/base -> origin/gh/soulitzer/377/base 2025-08-26T20:40:02.2385824Z * [new branch] gh/soulitzer/377/head -> origin/gh/soulitzer/377/head 2025-08-26T20:40:02.2386334Z * [new branch] gh/soulitzer/377/orig -> origin/gh/soulitzer/377/orig 2025-08-26T20:40:02.2386847Z * [new branch] gh/swolchok/728/next -> origin/gh/swolchok/728/next 2025-08-26T20:40:02.2387334Z * [new branch] gh/swolchok/758/base -> origin/gh/swolchok/758/base 2025-08-26T20:40:02.2387828Z * [new branch] gh/swolchok/758/head -> origin/gh/swolchok/758/head 2025-08-26T20:40:02.2388396Z * [new branch] gh/swolchok/758/orig -> origin/gh/swolchok/758/orig 2025-08-26T20:40:02.2388905Z * [new branch] gh/swolchok/767/base -> origin/gh/swolchok/767/base 2025-08-26T20:40:02.2389407Z * [new branch] gh/swolchok/767/head -> origin/gh/swolchok/767/head 2025-08-26T20:40:02.2835572Z * [new branch] gh/swolchok/767/orig -> origin/gh/swolchok/767/orig 2025-08-26T20:40:02.2836157Z * [new branch] gh/swolchok/768/base -> origin/gh/swolchok/768/base 2025-08-26T20:40:02.2836657Z * [new branch] gh/swolchok/768/head -> origin/gh/swolchok/768/head 2025-08-26T20:40:02.2837161Z * [new branch] gh/swolchok/768/orig -> origin/gh/swolchok/768/orig 2025-08-26T20:40:02.2837652Z * [new branch] gh/swolchok/769/base -> origin/gh/swolchok/769/base 2025-08-26T20:40:02.2838137Z * [new branch] gh/swolchok/769/head -> origin/gh/swolchok/769/head 2025-08-26T20:40:02.2838641Z * [new branch] gh/swolchok/769/orig -> origin/gh/swolchok/769/orig 2025-08-26T20:40:02.2839124Z * [new branch] gh/swolchok/771/base -> origin/gh/swolchok/771/base 2025-08-26T20:40:02.2839613Z * [new branch] gh/swolchok/771/head -> origin/gh/swolchok/771/head 2025-08-26T20:40:02.2840106Z * [new branch] gh/swolchok/771/orig -> origin/gh/swolchok/771/orig 2025-08-26T20:40:02.2840592Z * [new branch] gh/swolchok/772/base -> origin/gh/swolchok/772/base 2025-08-26T20:40:02.2841088Z * [new branch] gh/swolchok/772/head -> origin/gh/swolchok/772/head 2025-08-26T20:40:02.2841576Z * [new branch] gh/swolchok/772/orig -> origin/gh/swolchok/772/orig 2025-08-26T20:40:02.2842069Z * [new branch] gh/swolchok/773/base -> origin/gh/swolchok/773/base 2025-08-26T20:40:02.2842559Z * [new branch] gh/swolchok/773/head -> origin/gh/swolchok/773/head 2025-08-26T20:40:02.2843107Z * [new branch] gh/swolchok/773/orig -> origin/gh/swolchok/773/orig 2025-08-26T20:40:02.2843610Z * [new branch] gh/swolchok/786/base -> origin/gh/swolchok/786/base 2025-08-26T20:40:02.2844096Z * [new branch] gh/swolchok/786/head -> origin/gh/swolchok/786/head 2025-08-26T20:40:02.2844607Z * [new branch] gh/swolchok/786/orig -> origin/gh/swolchok/786/orig 2025-08-26T20:40:02.2845101Z * [new branch] gh/swolchok/787/base -> origin/gh/swolchok/787/base 2025-08-26T20:40:02.2845603Z * [new branch] gh/swolchok/787/head -> origin/gh/swolchok/787/head 2025-08-26T20:40:02.2846104Z * [new branch] gh/swolchok/787/orig -> origin/gh/swolchok/787/orig 2025-08-26T20:40:02.2846588Z * [new branch] gh/swolchok/788/base -> origin/gh/swolchok/788/base 2025-08-26T20:40:02.2847091Z * [new branch] gh/swolchok/788/head -> origin/gh/swolchok/788/head 2025-08-26T20:40:02.2847580Z * [new branch] gh/swolchok/788/orig -> origin/gh/swolchok/788/orig 2025-08-26T20:40:02.2848070Z * [new branch] gh/swolchok/789/base -> origin/gh/swolchok/789/base 2025-08-26T20:40:02.2848559Z * [new branch] gh/swolchok/789/head -> origin/gh/swolchok/789/head 2025-08-26T20:40:02.2849229Z * [new branch] gh/swolchok/789/orig -> origin/gh/swolchok/789/orig 2025-08-26T20:40:02.2849728Z * [new branch] gh/swolchok/790/base -> origin/gh/swolchok/790/base 2025-08-26T20:40:02.2850219Z * [new branch] gh/swolchok/790/head -> origin/gh/swolchok/790/head 2025-08-26T20:40:02.2850719Z * [new branch] gh/swolchok/790/orig -> origin/gh/swolchok/790/orig 2025-08-26T20:40:02.2851214Z * [new branch] gh/swolchok/791/base -> origin/gh/swolchok/791/base 2025-08-26T20:40:02.2851784Z * [new branch] gh/swolchok/791/head -> origin/gh/swolchok/791/head 2025-08-26T20:40:02.2852282Z * [new branch] gh/swolchok/791/orig -> origin/gh/swolchok/791/orig 2025-08-26T20:40:02.2852775Z * [new branch] gh/swolchok/792/base -> origin/gh/swolchok/792/base 2025-08-26T20:40:02.2853268Z * [new branch] gh/swolchok/792/head -> origin/gh/swolchok/792/head 2025-08-26T20:40:02.2853770Z * [new branch] gh/swolchok/792/orig -> origin/gh/swolchok/792/orig 2025-08-26T20:40:02.2854259Z * [new branch] gh/swolchok/793/base -> origin/gh/swolchok/793/base 2025-08-26T20:40:02.2854751Z * [new branch] gh/swolchok/793/head -> origin/gh/swolchok/793/head 2025-08-26T20:40:02.2855227Z * [new branch] gh/swolchok/793/orig -> origin/gh/swolchok/793/orig 2025-08-26T20:40:02.2855723Z * [new branch] gh/swolchok/794/base -> origin/gh/swolchok/794/base 2025-08-26T20:40:02.2856210Z * [new branch] gh/swolchok/794/head -> origin/gh/swolchok/794/head 2025-08-26T20:40:02.2856695Z * [new branch] gh/swolchok/794/orig -> origin/gh/swolchok/794/orig 2025-08-26T20:40:02.2857192Z * [new branch] gh/swolchok/795/base -> origin/gh/swolchok/795/base 2025-08-26T20:40:02.2857669Z * [new branch] gh/swolchok/795/head -> origin/gh/swolchok/795/head 2025-08-26T20:40:02.2858163Z * [new branch] gh/swolchok/795/orig -> origin/gh/swolchok/795/orig 2025-08-26T20:40:02.2858670Z * [new branch] gh/swolchok/796/base -> origin/gh/swolchok/796/base 2025-08-26T20:40:02.3254604Z * [new branch] gh/swolchok/796/head -> origin/gh/swolchok/796/head 2025-08-26T20:40:02.3255159Z * [new branch] gh/swolchok/796/orig -> origin/gh/swolchok/796/orig 2025-08-26T20:40:02.3255683Z * [new branch] gh/swolchok/797/base -> origin/gh/swolchok/797/base 2025-08-26T20:40:02.3256185Z * [new branch] gh/swolchok/797/head -> origin/gh/swolchok/797/head 2025-08-26T20:40:02.3256679Z * [new branch] gh/swolchok/797/orig -> origin/gh/swolchok/797/orig 2025-08-26T20:40:02.3257172Z * [new branch] gh/swolchok/798/base -> origin/gh/swolchok/798/base 2025-08-26T20:40:02.3257665Z * [new branch] gh/swolchok/798/head -> origin/gh/swolchok/798/head 2025-08-26T20:40:02.3258156Z * [new branch] gh/swolchok/798/orig -> origin/gh/swolchok/798/orig 2025-08-26T20:40:02.3258689Z * [new branch] gh/swolchok/799/base -> origin/gh/swolchok/799/base 2025-08-26T20:40:02.3259175Z * [new branch] gh/swolchok/799/head -> origin/gh/swolchok/799/head 2025-08-26T20:40:02.3259671Z * [new branch] gh/swolchok/799/orig -> origin/gh/swolchok/799/orig 2025-08-26T20:40:02.3260160Z * [new branch] gh/swolchok/800/base -> origin/gh/swolchok/800/base 2025-08-26T20:40:02.3260657Z * [new branch] gh/swolchok/800/head -> origin/gh/swolchok/800/head 2025-08-26T20:40:02.3261143Z * [new branch] gh/swolchok/800/orig -> origin/gh/swolchok/800/orig 2025-08-26T20:40:02.3261646Z * [new branch] gh/swolchok/801/base -> origin/gh/swolchok/801/base 2025-08-26T20:40:02.3262289Z * [new branch] gh/swolchok/801/head -> origin/gh/swolchok/801/head 2025-08-26T20:40:02.3262769Z * [new branch] gh/swolchok/801/orig -> origin/gh/swolchok/801/orig 2025-08-26T20:40:02.3263274Z * [new branch] gh/swolchok/802/base -> origin/gh/swolchok/802/base 2025-08-26T20:40:02.3263798Z * [new branch] gh/swolchok/802/head -> origin/gh/swolchok/802/head 2025-08-26T20:40:02.3264329Z * [new branch] gh/swolchok/802/orig -> origin/gh/swolchok/802/orig 2025-08-26T20:40:02.3264920Z * [new branch] gh/swolchok/803/base -> origin/gh/swolchok/803/base 2025-08-26T20:40:02.3265405Z * [new branch] gh/swolchok/803/head -> origin/gh/swolchok/803/head 2025-08-26T20:40:02.3265899Z * [new branch] gh/swolchok/803/orig -> origin/gh/swolchok/803/orig 2025-08-26T20:40:02.3266382Z * [new branch] gh/swolchok/804/base -> origin/gh/swolchok/804/base 2025-08-26T20:40:02.3266889Z * [new branch] gh/swolchok/804/head -> origin/gh/swolchok/804/head 2025-08-26T20:40:02.3267395Z * [new branch] gh/swolchok/804/orig -> origin/gh/swolchok/804/orig 2025-08-26T20:40:02.3267876Z * [new branch] gh/swolchok/805/base -> origin/gh/swolchok/805/base 2025-08-26T20:40:02.3268368Z * [new branch] gh/swolchok/805/head -> origin/gh/swolchok/805/head 2025-08-26T20:40:02.3268860Z * [new branch] gh/swolchok/805/orig -> origin/gh/swolchok/805/orig 2025-08-26T20:40:02.3269383Z * [new branch] gh/swolchok/806/base -> origin/gh/swolchok/806/base 2025-08-26T20:40:02.3269911Z * [new branch] gh/swolchok/806/head -> origin/gh/swolchok/806/head 2025-08-26T20:40:02.3270410Z * [new branch] gh/swolchok/806/orig -> origin/gh/swolchok/806/orig 2025-08-26T20:40:02.3270910Z * [new branch] gh/swolchok/807/base -> origin/gh/swolchok/807/base 2025-08-26T20:40:02.3271390Z * [new branch] gh/swolchok/807/head -> origin/gh/swolchok/807/head 2025-08-26T20:40:02.3271883Z * [new branch] gh/swolchok/807/orig -> origin/gh/swolchok/807/orig 2025-08-26T20:40:02.3272367Z * [new branch] gh/swolchok/808/base -> origin/gh/swolchok/808/base 2025-08-26T20:40:02.3272862Z * [new branch] gh/swolchok/808/head -> origin/gh/swolchok/808/head 2025-08-26T20:40:02.3273352Z * [new branch] gh/swolchok/808/orig -> origin/gh/swolchok/808/orig 2025-08-26T20:40:02.3273836Z * [new branch] gh/swolchok/809/base -> origin/gh/swolchok/809/base 2025-08-26T20:40:02.3274324Z * [new branch] gh/swolchok/809/head -> origin/gh/swolchok/809/head 2025-08-26T20:40:02.3274807Z * [new branch] gh/swolchok/809/orig -> origin/gh/swolchok/809/orig 2025-08-26T20:40:02.3275345Z * [new branch] gh/syed-ahmed/2/base -> origin/gh/syed-ahmed/2/base 2025-08-26T20:40:02.3275877Z * [new branch] gh/syed-ahmed/2/head -> origin/gh/syed-ahmed/2/head 2025-08-26T20:40:02.3276356Z * [new branch] gh/syed-ahmed/2/orig -> origin/gh/syed-ahmed/2/orig 2025-08-26T20:40:02.3276844Z * [new branch] gh/syed-ahmed/3/base -> origin/gh/syed-ahmed/3/base 2025-08-26T20:40:02.3277321Z * [new branch] gh/syed-ahmed/3/head -> origin/gh/syed-ahmed/3/head 2025-08-26T20:40:02.3716874Z * [new branch] gh/syed-ahmed/3/orig -> origin/gh/syed-ahmed/3/orig 2025-08-26T20:40:02.3717497Z * [new branch] gh/syed-ahmed/4/base -> origin/gh/syed-ahmed/4/base 2025-08-26T20:40:02.3718086Z * [new branch] gh/syed-ahmed/4/head -> origin/gh/syed-ahmed/4/head 2025-08-26T20:40:02.3718625Z * [new branch] gh/syed-ahmed/4/orig -> origin/gh/syed-ahmed/4/orig 2025-08-26T20:40:02.3719355Z * [new branch] gh/teja-rao/4/base -> origin/gh/teja-rao/4/base 2025-08-26T20:40:02.3719883Z * [new branch] gh/teja-rao/4/head -> origin/gh/teja-rao/4/head 2025-08-26T20:40:02.3720445Z * [new branch] gh/teja-rao/4/orig -> origin/gh/teja-rao/4/orig 2025-08-26T20:40:02.3720958Z * [new branch] gh/tianyu-l/2/base -> origin/gh/tianyu-l/2/base 2025-08-26T20:40:02.3721525Z * [new branch] gh/tianyu-l/2/head -> origin/gh/tianyu-l/2/head 2025-08-26T20:40:02.3722140Z * [new branch] gh/tianyu-l/2/orig -> origin/gh/tianyu-l/2/orig 2025-08-26T20:40:02.3722754Z * [new branch] gh/tugsbayasgalan/1/base -> origin/gh/tugsbayasgalan/1/base 2025-08-26T20:40:02.3723417Z * [new branch] gh/tugsbayasgalan/1/head -> origin/gh/tugsbayasgalan/1/head 2025-08-26T20:40:02.3724055Z * [new branch] gh/tugsbayasgalan/1/orig -> origin/gh/tugsbayasgalan/1/orig 2025-08-26T20:40:02.3724689Z * [new branch] gh/tugsbayasgalan/2/base -> origin/gh/tugsbayasgalan/2/base 2025-08-26T20:40:02.3725264Z * [new branch] gh/tugsbayasgalan/2/head -> origin/gh/tugsbayasgalan/2/head 2025-08-26T20:40:02.3725907Z * [new branch] gh/tugsbayasgalan/2/orig -> origin/gh/tugsbayasgalan/2/orig 2025-08-26T20:40:02.3726529Z * [new branch] gh/tugsbayasgalan/3/base -> origin/gh/tugsbayasgalan/3/base 2025-08-26T20:40:02.3727124Z * [new branch] gh/tugsbayasgalan/3/head -> origin/gh/tugsbayasgalan/3/head 2025-08-26T20:40:02.3727761Z * [new branch] gh/tugsbayasgalan/3/orig -> origin/gh/tugsbayasgalan/3/orig 2025-08-26T20:40:02.3728293Z * [new branch] gh/v0i0/1/base -> origin/gh/v0i0/1/base 2025-08-26T20:40:02.3728818Z * [new branch] gh/v0i0/1/head -> origin/gh/v0i0/1/head 2025-08-26T20:40:02.3729322Z * [new branch] gh/v0i0/1/orig -> origin/gh/v0i0/1/orig 2025-08-26T20:40:02.3729798Z * [new branch] gh/v0i0/2/base -> origin/gh/v0i0/2/base 2025-08-26T20:40:02.3730281Z * [new branch] gh/v0i0/2/head -> origin/gh/v0i0/2/head 2025-08-26T20:40:02.3730795Z * [new branch] gh/v0i0/2/orig -> origin/gh/v0i0/2/orig 2025-08-26T20:40:02.3731280Z * [new branch] gh/v0i0/3/base -> origin/gh/v0i0/3/base 2025-08-26T20:40:02.3731764Z * [new branch] gh/v0i0/3/head -> origin/gh/v0i0/3/head 2025-08-26T20:40:02.3732293Z * [new branch] gh/v0i0/3/orig -> origin/gh/v0i0/3/orig 2025-08-26T20:40:02.3732773Z * [new branch] gh/v0i0/4/base -> origin/gh/v0i0/4/base 2025-08-26T20:40:02.3733249Z * [new branch] gh/v0i0/4/head -> origin/gh/v0i0/4/head 2025-08-26T20:40:02.3733775Z * [new branch] gh/v0i0/4/orig -> origin/gh/v0i0/4/orig 2025-08-26T20:40:02.3734264Z * [new branch] gh/v0i0/5/base -> origin/gh/v0i0/5/base 2025-08-26T20:40:02.3734746Z * [new branch] gh/v0i0/5/head -> origin/gh/v0i0/5/head 2025-08-26T20:40:02.3735234Z * [new branch] gh/v0i0/5/orig -> origin/gh/v0i0/5/orig 2025-08-26T20:40:02.3735753Z * [new branch] gh/v0i0/6/base -> origin/gh/v0i0/6/base 2025-08-26T20:40:02.3736242Z * [new branch] gh/v0i0/6/head -> origin/gh/v0i0/6/head 2025-08-26T20:40:02.3736715Z * [new branch] gh/v0i0/6/orig -> origin/gh/v0i0/6/orig 2025-08-26T20:40:02.3737228Z * [new branch] gh/v0i0/7/base -> origin/gh/v0i0/7/base 2025-08-26T20:40:02.3737733Z * [new branch] gh/v0i0/7/head -> origin/gh/v0i0/7/head 2025-08-26T20:40:02.3738324Z * [new branch] gh/v0i0/7/orig -> origin/gh/v0i0/7/orig 2025-08-26T20:40:02.3738865Z * [new branch] gh/vkuzo/1/next -> origin/gh/vkuzo/1/next 2025-08-26T20:40:02.3739363Z * [new branch] gh/vkuzo/2/next -> origin/gh/vkuzo/2/next 2025-08-26T20:40:02.3739902Z * [new branch] gh/vkuzo/3/next -> origin/gh/vkuzo/3/next 2025-08-26T20:40:02.3740396Z * [new branch] gh/vkuzo/4/base -> origin/gh/vkuzo/4/base 2025-08-26T20:40:02.3740982Z * [new branch] gh/vkuzo/4/head -> origin/gh/vkuzo/4/head 2025-08-26T20:40:02.3741542Z * [new branch] gh/vkuzo/4/orig -> origin/gh/vkuzo/4/orig 2025-08-26T20:40:02.3742056Z * [new branch] gh/wconstab/392/base -> origin/gh/wconstab/392/base 2025-08-26T20:40:02.3742650Z * [new branch] gh/wconstab/392/head -> origin/gh/wconstab/392/head 2025-08-26T20:40:02.4186726Z * [new branch] gh/wconstab/392/orig -> origin/gh/wconstab/392/orig 2025-08-26T20:40:02.4187249Z * [new branch] gh/wconstab/419/base -> origin/gh/wconstab/419/base 2025-08-26T20:40:02.4187840Z * [new branch] gh/wconstab/419/head -> origin/gh/wconstab/419/head 2025-08-26T20:40:02.4188333Z * [new branch] gh/wconstab/419/orig -> origin/gh/wconstab/419/orig 2025-08-26T20:40:02.4188836Z * [new branch] gh/wconstab/424/base -> origin/gh/wconstab/424/base 2025-08-26T20:40:02.4189334Z * [new branch] gh/wconstab/424/head -> origin/gh/wconstab/424/head 2025-08-26T20:40:02.4189839Z * [new branch] gh/wconstab/424/orig -> origin/gh/wconstab/424/orig 2025-08-26T20:40:02.4190327Z * [new branch] gh/wconstab/432/base -> origin/gh/wconstab/432/base 2025-08-26T20:40:02.4190808Z * [new branch] gh/wconstab/432/head -> origin/gh/wconstab/432/head 2025-08-26T20:40:02.4191300Z * [new branch] gh/wconstab/432/orig -> origin/gh/wconstab/432/orig 2025-08-26T20:40:02.4191784Z * [new branch] gh/wconstab/433/base -> origin/gh/wconstab/433/base 2025-08-26T20:40:02.4192277Z * [new branch] gh/wconstab/433/head -> origin/gh/wconstab/433/head 2025-08-26T20:40:02.4192763Z * [new branch] gh/wconstab/433/orig -> origin/gh/wconstab/433/orig 2025-08-26T20:40:02.4193287Z * [new branch] gh/wconstab/434/base -> origin/gh/wconstab/434/base 2025-08-26T20:40:02.4193827Z * [new branch] gh/wconstab/434/head -> origin/gh/wconstab/434/head 2025-08-26T20:40:02.4194310Z * [new branch] gh/wconstab/434/orig -> origin/gh/wconstab/434/orig 2025-08-26T20:40:02.4194801Z * [new branch] gh/wconstab/435/base -> origin/gh/wconstab/435/base 2025-08-26T20:40:02.4195303Z * [new branch] gh/wconstab/435/head -> origin/gh/wconstab/435/head 2025-08-26T20:40:02.4195790Z * [new branch] gh/wconstab/435/orig -> origin/gh/wconstab/435/orig 2025-08-26T20:40:02.4196274Z * [new branch] gh/wconstab/436/base -> origin/gh/wconstab/436/base 2025-08-26T20:40:02.4196759Z * [new branch] gh/wconstab/436/head -> origin/gh/wconstab/436/head 2025-08-26T20:40:02.4197255Z * [new branch] gh/wconstab/436/orig -> origin/gh/wconstab/436/orig 2025-08-26T20:40:02.4197745Z * [new branch] gh/wconstab/437/base -> origin/gh/wconstab/437/base 2025-08-26T20:40:02.4198224Z * [new branch] gh/wconstab/437/head -> origin/gh/wconstab/437/head 2025-08-26T20:40:02.4198749Z * [new branch] gh/wconstab/437/orig -> origin/gh/wconstab/437/orig 2025-08-26T20:40:02.4199290Z * [new branch] gh/wconstab/438/base -> origin/gh/wconstab/438/base 2025-08-26T20:40:02.4199951Z * [new branch] gh/wconstab/438/head -> origin/gh/wconstab/438/head 2025-08-26T20:40:02.4200449Z * [new branch] gh/wconstab/438/orig -> origin/gh/wconstab/438/orig 2025-08-26T20:40:02.4200937Z * [new branch] gh/wconstab/439/base -> origin/gh/wconstab/439/base 2025-08-26T20:40:02.4201437Z * [new branch] gh/wconstab/439/head -> origin/gh/wconstab/439/head 2025-08-26T20:40:02.4201919Z * [new branch] gh/wconstab/439/orig -> origin/gh/wconstab/439/orig 2025-08-26T20:40:02.4202506Z * [new branch] gh/wconstab/440/base -> origin/gh/wconstab/440/base 2025-08-26T20:40:02.4202991Z * [new branch] gh/wconstab/440/head -> origin/gh/wconstab/440/head 2025-08-26T20:40:02.4203569Z * [new branch] gh/wconstab/440/orig -> origin/gh/wconstab/440/orig 2025-08-26T20:40:02.4204060Z * [new branch] gh/wconstab/441/base -> origin/gh/wconstab/441/base 2025-08-26T20:40:02.4204598Z * [new branch] gh/wconstab/441/head -> origin/gh/wconstab/441/head 2025-08-26T20:40:02.4205141Z * [new branch] gh/wconstab/441/orig -> origin/gh/wconstab/441/orig 2025-08-26T20:40:02.4205633Z * [new branch] gh/wconstab/442/base -> origin/gh/wconstab/442/base 2025-08-26T20:40:02.4206128Z * [new branch] gh/wconstab/442/head -> origin/gh/wconstab/442/head 2025-08-26T20:40:02.4206614Z * [new branch] gh/wconstab/442/orig -> origin/gh/wconstab/442/orig 2025-08-26T20:40:02.4207111Z * [new branch] gh/wconstab/443/base -> origin/gh/wconstab/443/base 2025-08-26T20:40:02.4207602Z * [new branch] gh/wconstab/443/head -> origin/gh/wconstab/443/head 2025-08-26T20:40:02.4208082Z * [new branch] gh/wconstab/443/orig -> origin/gh/wconstab/443/orig 2025-08-26T20:40:02.4208580Z * [new branch] gh/wconstab/444/base -> origin/gh/wconstab/444/base 2025-08-26T20:40:02.4209071Z * [new branch] gh/wconstab/444/head -> origin/gh/wconstab/444/head 2025-08-26T20:40:02.4209550Z * [new branch] gh/wconstab/444/orig -> origin/gh/wconstab/444/orig 2025-08-26T20:40:02.4210040Z * [new branch] gh/wconstab/445/base -> origin/gh/wconstab/445/base 2025-08-26T20:40:02.5997057Z * [new branch] gh/wconstab/445/head -> origin/gh/wconstab/445/head 2025-08-26T20:40:02.5997661Z * [new branch] gh/wconstab/445/orig -> origin/gh/wconstab/445/orig 2025-08-26T20:40:02.5998272Z * [new branch] gh/weifengpy/27/base -> origin/gh/weifengpy/27/base 2025-08-26T20:40:02.5998781Z * [new branch] gh/weifengpy/27/head -> origin/gh/weifengpy/27/head 2025-08-26T20:40:02.5999282Z * [new branch] gh/weifengpy/27/orig -> origin/gh/weifengpy/27/orig 2025-08-26T20:40:02.5999791Z * [new branch] gh/weifengpy/30/base -> origin/gh/weifengpy/30/base 2025-08-26T20:40:02.6000298Z * [new branch] gh/weifengpy/30/head -> origin/gh/weifengpy/30/head 2025-08-26T20:40:02.6000794Z * [new branch] gh/weifengpy/30/orig -> origin/gh/weifengpy/30/orig 2025-08-26T20:40:02.6001289Z * [new branch] gh/weifengpy/33/base -> origin/gh/weifengpy/33/base 2025-08-26T20:40:02.6001793Z * [new branch] gh/weifengpy/33/head -> origin/gh/weifengpy/33/head 2025-08-26T20:40:02.6002295Z * [new branch] gh/weifengpy/33/orig -> origin/gh/weifengpy/33/orig 2025-08-26T20:40:02.6002817Z * [new branch] gh/williamwen42/196/base -> origin/gh/williamwen42/196/base 2025-08-26T20:40:02.6003424Z * [new branch] gh/williamwen42/196/head -> origin/gh/williamwen42/196/head 2025-08-26T20:40:02.6003955Z * [new branch] gh/williamwen42/196/orig -> origin/gh/williamwen42/196/orig 2025-08-26T20:40:02.6004667Z * [new branch] gh/williamwen42/250/base -> origin/gh/williamwen42/250/base 2025-08-26T20:40:02.6005195Z * [new branch] gh/williamwen42/250/head -> origin/gh/williamwen42/250/head 2025-08-26T20:40:02.6005735Z * [new branch] gh/williamwen42/250/orig -> origin/gh/williamwen42/250/orig 2025-08-26T20:40:02.6006273Z * [new branch] gh/williamwen42/258/base -> origin/gh/williamwen42/258/base 2025-08-26T20:40:02.6006914Z * [new branch] gh/williamwen42/258/head -> origin/gh/williamwen42/258/head 2025-08-26T20:40:02.6007452Z * [new branch] gh/williamwen42/258/orig -> origin/gh/williamwen42/258/orig 2025-08-26T20:40:02.6007980Z * [new branch] gh/williamwen42/260/base -> origin/gh/williamwen42/260/base 2025-08-26T20:40:02.6008521Z * [new branch] gh/williamwen42/260/head -> origin/gh/williamwen42/260/head 2025-08-26T20:40:02.6009065Z * [new branch] gh/williamwen42/260/orig -> origin/gh/williamwen42/260/orig 2025-08-26T20:40:02.6009600Z * [new branch] gh/williamwen42/261/base -> origin/gh/williamwen42/261/base 2025-08-26T20:40:02.6010141Z * [new branch] gh/williamwen42/261/head -> origin/gh/williamwen42/261/head 2025-08-26T20:40:02.6010664Z * [new branch] gh/williamwen42/261/orig -> origin/gh/williamwen42/261/orig 2025-08-26T20:40:02.6011207Z * [new branch] gh/williamwen42/263/base -> origin/gh/williamwen42/263/base 2025-08-26T20:40:02.6011743Z * [new branch] gh/williamwen42/263/head -> origin/gh/williamwen42/263/head 2025-08-26T20:40:02.6012274Z * [new branch] gh/williamwen42/263/orig -> origin/gh/williamwen42/263/orig 2025-08-26T20:40:02.6012807Z * [new branch] gh/williamwen42/264/base -> origin/gh/williamwen42/264/base 2025-08-26T20:40:02.6013336Z * [new branch] gh/williamwen42/264/head -> origin/gh/williamwen42/264/head 2025-08-26T20:40:02.6013876Z * [new branch] gh/williamwen42/264/orig -> origin/gh/williamwen42/264/orig 2025-08-26T20:40:02.6014401Z * [new branch] gh/williamwen42/265/base -> origin/gh/williamwen42/265/base 2025-08-26T20:40:02.6014941Z * [new branch] gh/williamwen42/265/head -> origin/gh/williamwen42/265/head 2025-08-26T20:40:02.6015475Z * [new branch] gh/williamwen42/265/orig -> origin/gh/williamwen42/265/orig 2025-08-26T20:40:02.6016006Z * [new branch] gh/williamwen42/266/base -> origin/gh/williamwen42/266/base 2025-08-26T20:40:02.6016543Z * [new branch] gh/williamwen42/266/head -> origin/gh/williamwen42/266/head 2025-08-26T20:40:02.6017069Z * [new branch] gh/williamwen42/266/orig -> origin/gh/williamwen42/266/orig 2025-08-26T20:40:02.6017608Z * [new branch] gh/williamwen42/267/base -> origin/gh/williamwen42/267/base 2025-08-26T20:40:02.6018148Z * [new branch] gh/williamwen42/267/head -> origin/gh/williamwen42/267/head 2025-08-26T20:40:02.6018673Z * [new branch] gh/williamwen42/267/orig -> origin/gh/williamwen42/267/orig 2025-08-26T20:40:02.6019207Z * [new branch] gh/williamwen42/268/base -> origin/gh/williamwen42/268/base 2025-08-26T20:40:02.6019731Z * [new branch] gh/williamwen42/268/head -> origin/gh/williamwen42/268/head 2025-08-26T20:40:02.6020262Z * [new branch] gh/williamwen42/268/orig -> origin/gh/williamwen42/268/orig 2025-08-26T20:40:02.6020797Z * [new branch] gh/williamwen42/269/base -> origin/gh/williamwen42/269/base 2025-08-26T20:40:02.6454225Z * [new branch] gh/williamwen42/269/head -> origin/gh/williamwen42/269/head 2025-08-26T20:40:02.6454900Z * [new branch] gh/williamwen42/269/orig -> origin/gh/williamwen42/269/orig 2025-08-26T20:40:02.6455633Z * [new branch] gh/williamwen42/270/base -> origin/gh/williamwen42/270/base 2025-08-26T20:40:02.6456177Z * [new branch] gh/williamwen42/270/head -> origin/gh/williamwen42/270/head 2025-08-26T20:40:02.6456710Z * [new branch] gh/williamwen42/270/orig -> origin/gh/williamwen42/270/orig 2025-08-26T20:40:02.6457236Z * [new branch] gh/williamwen42/271/base -> origin/gh/williamwen42/271/base 2025-08-26T20:40:02.6457774Z * [new branch] gh/williamwen42/271/head -> origin/gh/williamwen42/271/head 2025-08-26T20:40:02.6458420Z * [new branch] gh/williamwen42/271/orig -> origin/gh/williamwen42/271/orig 2025-08-26T20:40:02.6458965Z * [new branch] gh/williamwen42/272/base -> origin/gh/williamwen42/272/base 2025-08-26T20:40:02.6459500Z * [new branch] gh/williamwen42/272/head -> origin/gh/williamwen42/272/head 2025-08-26T20:40:02.6460029Z * [new branch] gh/williamwen42/272/orig -> origin/gh/williamwen42/272/orig 2025-08-26T20:40:02.6460575Z * [new branch] gh/williamwen42/273/base -> origin/gh/williamwen42/273/base 2025-08-26T20:40:02.6461110Z * [new branch] gh/williamwen42/273/head -> origin/gh/williamwen42/273/head 2025-08-26T20:40:02.6461649Z * [new branch] gh/williamwen42/273/orig -> origin/gh/williamwen42/273/orig 2025-08-26T20:40:02.6462182Z * [new branch] gh/williamwen42/274/base -> origin/gh/williamwen42/274/base 2025-08-26T20:40:02.6462715Z * [new branch] gh/williamwen42/274/head -> origin/gh/williamwen42/274/head 2025-08-26T20:40:02.6463253Z * [new branch] gh/williamwen42/274/orig -> origin/gh/williamwen42/274/orig 2025-08-26T20:40:02.6463779Z * [new branch] gh/williamwen42/275/base -> origin/gh/williamwen42/275/base 2025-08-26T20:40:02.6464318Z * [new branch] gh/williamwen42/275/head -> origin/gh/williamwen42/275/head 2025-08-26T20:40:02.6464845Z * [new branch] gh/williamwen42/276/base -> origin/gh/williamwen42/276/base 2025-08-26T20:40:02.6465385Z * [new branch] gh/williamwen42/276/head -> origin/gh/williamwen42/276/head 2025-08-26T20:40:02.6465924Z * [new branch] gh/williamwen42/276/orig -> origin/gh/williamwen42/276/orig 2025-08-26T20:40:02.6466509Z * [new branch] gh/williamwen42/277/base -> origin/gh/williamwen42/277/base 2025-08-26T20:40:02.6467094Z * [new branch] gh/williamwen42/277/head -> origin/gh/williamwen42/277/head 2025-08-26T20:40:02.6467627Z * [new branch] gh/williamwen42/277/orig -> origin/gh/williamwen42/277/orig 2025-08-26T20:40:02.6468163Z * [new branch] gh/williamwen42/278/base -> origin/gh/williamwen42/278/base 2025-08-26T20:40:02.6468705Z * [new branch] gh/williamwen42/278/head -> origin/gh/williamwen42/278/head 2025-08-26T20:40:02.6469233Z * [new branch] gh/williamwen42/278/orig -> origin/gh/williamwen42/278/orig 2025-08-26T20:40:02.6469767Z * [new branch] gh/williamwen42/279/base -> origin/gh/williamwen42/279/base 2025-08-26T20:40:02.6470290Z * [new branch] gh/williamwen42/279/head -> origin/gh/williamwen42/279/head 2025-08-26T20:40:02.6470832Z * [new branch] gh/williamwen42/279/orig -> origin/gh/williamwen42/279/orig 2025-08-26T20:40:02.6471348Z * [new branch] gh/xmfan/169/base -> origin/gh/xmfan/169/base 2025-08-26T20:40:02.6471817Z * [new branch] gh/xmfan/169/head -> origin/gh/xmfan/169/head 2025-08-26T20:40:02.6472288Z * [new branch] gh/xmfan/170/base -> origin/gh/xmfan/170/base 2025-08-26T20:40:02.6472745Z * [new branch] gh/xmfan/170/head -> origin/gh/xmfan/170/head 2025-08-26T20:40:02.6473208Z * [new branch] gh/xmfan/18/base -> origin/gh/xmfan/18/base 2025-08-26T20:40:02.6474438Z * [new branch] gh/xmfan/18/head -> origin/gh/xmfan/18/head 2025-08-26T20:40:02.6474903Z * [new branch] gh/xmfan/229/base -> origin/gh/xmfan/229/base 2025-08-26T20:40:02.6475388Z * [new branch] gh/xmfan/229/head -> origin/gh/xmfan/229/head 2025-08-26T20:40:02.6475849Z * [new branch] gh/xmfan/229/orig -> origin/gh/xmfan/229/orig 2025-08-26T20:40:02.6476312Z * [new branch] gh/xmfan/237/base -> origin/gh/xmfan/237/base 2025-08-26T20:40:02.6476868Z * [new branch] gh/xmfan/237/head -> origin/gh/xmfan/237/head 2025-08-26T20:40:02.6477347Z * [new branch] gh/xmfan/237/orig -> origin/gh/xmfan/237/orig 2025-08-26T20:40:02.6477814Z * [new branch] gh/xmfan/244/base -> origin/gh/xmfan/244/base 2025-08-26T20:40:02.6478267Z * [new branch] gh/xmfan/244/head -> origin/gh/xmfan/244/head 2025-08-26T20:40:02.6943385Z * [new branch] gh/xmfan/244/orig -> origin/gh/xmfan/244/orig 2025-08-26T20:40:02.6943920Z * [new branch] gh/xmfan/246/base -> origin/gh/xmfan/246/base 2025-08-26T20:40:02.6944415Z * [new branch] gh/xmfan/246/head -> origin/gh/xmfan/246/head 2025-08-26T20:40:02.6944892Z * [new branch] gh/xmfan/246/orig -> origin/gh/xmfan/246/orig 2025-08-26T20:40:02.6945353Z * [new branch] gh/xmfan/253/base -> origin/gh/xmfan/253/base 2025-08-26T20:40:02.6945889Z * [new branch] gh/xmfan/253/head -> origin/gh/xmfan/253/head 2025-08-26T20:40:02.6946412Z * [new branch] gh/xmfan/253/orig -> origin/gh/xmfan/253/orig 2025-08-26T20:40:02.6946916Z * [new branch] gh/xmfan/254/base -> origin/gh/xmfan/254/base 2025-08-26T20:40:02.6947393Z * [new branch] gh/xmfan/254/head -> origin/gh/xmfan/254/head 2025-08-26T20:40:02.6947870Z * [new branch] gh/xmfan/254/orig -> origin/gh/xmfan/254/orig 2025-08-26T20:40:02.6948335Z * [new branch] gh/xmfan/260/base -> origin/gh/xmfan/260/base 2025-08-26T20:40:02.6948794Z * [new branch] gh/xmfan/260/head -> origin/gh/xmfan/260/head 2025-08-26T20:40:02.6949261Z * [new branch] gh/xmfan/260/orig -> origin/gh/xmfan/260/orig 2025-08-26T20:40:02.6949735Z * [new branch] gh/xmfan/262/base -> origin/gh/xmfan/262/base 2025-08-26T20:40:02.6950199Z * [new branch] gh/xmfan/262/head -> origin/gh/xmfan/262/head 2025-08-26T20:40:02.6950663Z * [new branch] gh/xmfan/262/orig -> origin/gh/xmfan/262/orig 2025-08-26T20:40:02.6951121Z * [new branch] gh/xmfan/263/base -> origin/gh/xmfan/263/base 2025-08-26T20:40:02.6951594Z * [new branch] gh/xmfan/263/head -> origin/gh/xmfan/263/head 2025-08-26T20:40:02.6952062Z * [new branch] gh/xmfan/263/orig -> origin/gh/xmfan/263/orig 2025-08-26T20:40:02.6952518Z * [new branch] gh/xmfan/264/base -> origin/gh/xmfan/264/base 2025-08-26T20:40:02.6952988Z * [new branch] gh/xmfan/264/head -> origin/gh/xmfan/264/head 2025-08-26T20:40:02.6953445Z * [new branch] gh/xmfan/264/orig -> origin/gh/xmfan/264/orig 2025-08-26T20:40:02.6953913Z * [new branch] gh/xmfan/270/base -> origin/gh/xmfan/270/base 2025-08-26T20:40:02.6954388Z * [new branch] gh/xmfan/270/head -> origin/gh/xmfan/270/head 2025-08-26T20:40:02.6954849Z * [new branch] gh/xmfan/270/orig -> origin/gh/xmfan/270/orig 2025-08-26T20:40:02.6955322Z * [new branch] gh/xmfan/271/base -> origin/gh/xmfan/271/base 2025-08-26T20:40:02.6955784Z * [new branch] gh/xmfan/271/head -> origin/gh/xmfan/271/head 2025-08-26T20:40:02.6956552Z * [new branch] gh/xmfan/271/orig -> origin/gh/xmfan/271/orig 2025-08-26T20:40:02.6957064Z * [new branch] gh/xmfan/272/base -> origin/gh/xmfan/272/base 2025-08-26T20:40:02.6957618Z * [new branch] gh/xmfan/272/head -> origin/gh/xmfan/272/head 2025-08-26T20:40:02.6958085Z * [new branch] gh/xmfan/272/orig -> origin/gh/xmfan/272/orig 2025-08-26T20:40:02.6958552Z * [new branch] gh/xmfan/273/base -> origin/gh/xmfan/273/base 2025-08-26T20:40:02.6959266Z * [new branch] gh/xmfan/273/head -> origin/gh/xmfan/273/head 2025-08-26T20:40:02.6959738Z * [new branch] gh/xmfan/273/orig -> origin/gh/xmfan/273/orig 2025-08-26T20:40:02.6960237Z * [new branch] gh/xmfan/274/base -> origin/gh/xmfan/274/base 2025-08-26T20:40:02.6960699Z * [new branch] gh/xmfan/274/head -> origin/gh/xmfan/274/head 2025-08-26T20:40:02.6961226Z * [new branch] gh/xmfan/274/orig -> origin/gh/xmfan/274/orig 2025-08-26T20:40:02.6961687Z * [new branch] gh/xmfan/275/base -> origin/gh/xmfan/275/base 2025-08-26T20:40:02.6962151Z * [new branch] gh/xmfan/275/head -> origin/gh/xmfan/275/head 2025-08-26T20:40:02.6962615Z * [new branch] gh/xmfan/275/orig -> origin/gh/xmfan/275/orig 2025-08-26T20:40:02.6963162Z * [new branch] gh/xmfan/276/base -> origin/gh/xmfan/276/base 2025-08-26T20:40:02.6963634Z * [new branch] gh/xmfan/276/head -> origin/gh/xmfan/276/head 2025-08-26T20:40:02.6964093Z * [new branch] gh/xmfan/276/orig -> origin/gh/xmfan/276/orig 2025-08-26T20:40:02.6964564Z * [new branch] gh/xmfan/277/base -> origin/gh/xmfan/277/base 2025-08-26T20:40:02.6965026Z * [new branch] gh/xmfan/277/head -> origin/gh/xmfan/277/head 2025-08-26T20:40:02.6965499Z * [new branch] gh/xmfan/277/orig -> origin/gh/xmfan/277/orig 2025-08-26T20:40:02.6965962Z * [new branch] gh/xmfan/278/base -> origin/gh/xmfan/278/base 2025-08-26T20:40:02.6966426Z * [new branch] gh/xmfan/278/head -> origin/gh/xmfan/278/head 2025-08-26T20:40:02.6966887Z * [new branch] gh/xmfan/278/orig -> origin/gh/xmfan/278/orig 2025-08-26T20:40:02.7403419Z * [new branch] gh/xmfan/279/base -> origin/gh/xmfan/279/base 2025-08-26T20:40:02.7403963Z * [new branch] gh/xmfan/279/head -> origin/gh/xmfan/279/head 2025-08-26T20:40:02.7404452Z * [new branch] gh/xmfan/279/orig -> origin/gh/xmfan/279/orig 2025-08-26T20:40:02.7404917Z * [new branch] gh/xmfan/280/base -> origin/gh/xmfan/280/base 2025-08-26T20:40:02.7405397Z * [new branch] gh/xmfan/280/head -> origin/gh/xmfan/280/head 2025-08-26T20:40:02.7405863Z * [new branch] gh/xmfan/280/orig -> origin/gh/xmfan/280/orig 2025-08-26T20:40:02.7406333Z * [new branch] gh/xmfan/281/base -> origin/gh/xmfan/281/base 2025-08-26T20:40:02.7406800Z * [new branch] gh/xmfan/281/head -> origin/gh/xmfan/281/head 2025-08-26T20:40:02.7407327Z * [new branch] gh/xmfan/281/orig -> origin/gh/xmfan/281/orig 2025-08-26T20:40:02.7407844Z * [new branch] gh/xmfan/282/base -> origin/gh/xmfan/282/base 2025-08-26T20:40:02.7408400Z * [new branch] gh/xmfan/282/head -> origin/gh/xmfan/282/head 2025-08-26T20:40:02.7408920Z * [new branch] gh/xmfan/283/base -> origin/gh/xmfan/283/base 2025-08-26T20:40:02.7409433Z * [new branch] gh/xmfan/283/head -> origin/gh/xmfan/283/head 2025-08-26T20:40:02.7410430Z * [new branch] gh/xmfan/283/orig -> origin/gh/xmfan/283/orig 2025-08-26T20:40:02.7410934Z * [new branch] gh/xuanzhang816/14/base -> origin/gh/xuanzhang816/14/base 2025-08-26T20:40:02.7411465Z * [new branch] gh/xuanzhang816/14/head -> origin/gh/xuanzhang816/14/head 2025-08-26T20:40:02.7411999Z * [new branch] gh/xuanzhang816/14/orig -> origin/gh/xuanzhang816/14/orig 2025-08-26T20:40:02.7412521Z * [new branch] gh/xuanzhang816/19/base -> origin/gh/xuanzhang816/19/base 2025-08-26T20:40:02.7413791Z * [new branch] gh/xuanzhang816/19/head -> origin/gh/xuanzhang816/19/head 2025-08-26T20:40:02.7414339Z * [new branch] gh/xuanzhang816/19/orig -> origin/gh/xuanzhang816/19/orig 2025-08-26T20:40:02.7414903Z * [new branch] gh/xuanzhang816/22/base -> origin/gh/xuanzhang816/22/base 2025-08-26T20:40:02.7415468Z * [new branch] gh/xuanzhang816/22/head -> origin/gh/xuanzhang816/22/head 2025-08-26T20:40:02.7416083Z * [new branch] gh/xuanzhang816/22/orig -> origin/gh/xuanzhang816/22/orig 2025-08-26T20:40:02.7416664Z * [new branch] gh/xuanzhang816/23/base -> origin/gh/xuanzhang816/23/base 2025-08-26T20:40:02.7417249Z * [new branch] gh/xuanzhang816/23/head -> origin/gh/xuanzhang816/23/head 2025-08-26T20:40:02.7417850Z * [new branch] gh/xuanzhang816/23/orig -> origin/gh/xuanzhang816/23/orig 2025-08-26T20:40:02.7418418Z * [new branch] gh/xuanzhang816/24/base -> origin/gh/xuanzhang816/24/base 2025-08-26T20:40:02.7419024Z * [new branch] gh/xuanzhang816/24/head -> origin/gh/xuanzhang816/24/head 2025-08-26T20:40:02.7419585Z * [new branch] gh/xuanzhang816/24/orig -> origin/gh/xuanzhang816/24/orig 2025-08-26T20:40:02.7420184Z * [new branch] gh/yanbing-j/11/base -> origin/gh/yanbing-j/11/base 2025-08-26T20:40:02.7420723Z * [new branch] gh/yanbing-j/11/head -> origin/gh/yanbing-j/11/head 2025-08-26T20:40:02.7421304Z * [new branch] gh/yanbing-j/11/orig -> origin/gh/yanbing-j/11/orig 2025-08-26T20:40:02.7421824Z * [new branch] gh/yanbing-j/12/base -> origin/gh/yanbing-j/12/base 2025-08-26T20:40:02.7422316Z * [new branch] gh/yanbing-j/12/head -> origin/gh/yanbing-j/12/head 2025-08-26T20:40:02.7422802Z * [new branch] gh/yanbing-j/12/orig -> origin/gh/yanbing-j/12/orig 2025-08-26T20:40:02.7423289Z * [new branch] gh/yanbing-j/13/base -> origin/gh/yanbing-j/13/base 2025-08-26T20:40:02.7423773Z * [new branch] gh/yanbing-j/13/head -> origin/gh/yanbing-j/13/head 2025-08-26T20:40:02.7424250Z * [new branch] gh/yanbing-j/13/orig -> origin/gh/yanbing-j/13/orig 2025-08-26T20:40:02.7424730Z * [new branch] gh/yanbing-j/14/base -> origin/gh/yanbing-j/14/base 2025-08-26T20:40:02.7425218Z * [new branch] gh/yanbing-j/14/head -> origin/gh/yanbing-j/14/head 2025-08-26T20:40:02.7425693Z * [new branch] gh/yanbing-j/14/orig -> origin/gh/yanbing-j/14/orig 2025-08-26T20:40:02.7426171Z * [new branch] gh/yanbing-j/15/base -> origin/gh/yanbing-j/15/base 2025-08-26T20:40:02.7426647Z * [new branch] gh/yanbing-j/15/head -> origin/gh/yanbing-j/15/head 2025-08-26T20:40:02.7427175Z * [new branch] gh/yanbing-j/15/orig -> origin/gh/yanbing-j/15/orig 2025-08-26T20:40:02.7427745Z * [new branch] gh/yanbing-j/18/base -> origin/gh/yanbing-j/18/base 2025-08-26T20:40:02.7428225Z * [new branch] gh/yanbing-j/18/head -> origin/gh/yanbing-j/18/head 2025-08-26T20:40:02.7908254Z * [new branch] gh/yanbing-j/18/orig -> origin/gh/yanbing-j/18/orig 2025-08-26T20:40:02.7908797Z * [new branch] gh/yanbing-j/19/base -> origin/gh/yanbing-j/19/base 2025-08-26T20:40:02.7909551Z * [new branch] gh/yanbing-j/19/head -> origin/gh/yanbing-j/19/head 2025-08-26T20:40:02.7910126Z * [new branch] gh/yanbing-j/19/orig -> origin/gh/yanbing-j/19/orig 2025-08-26T20:40:02.7910677Z * [new branch] gh/yanbing-j/20/base -> origin/gh/yanbing-j/20/base 2025-08-26T20:40:02.7911205Z * [new branch] gh/yanbing-j/20/head -> origin/gh/yanbing-j/20/head 2025-08-26T20:40:02.7911771Z * [new branch] gh/yanbing-j/20/orig -> origin/gh/yanbing-j/20/orig 2025-08-26T20:40:02.7912490Z * [new branch] gh/yanbing-j/21/base -> origin/gh/yanbing-j/21/base 2025-08-26T20:40:02.7913032Z * [new branch] gh/yanbing-j/21/head -> origin/gh/yanbing-j/21/head 2025-08-26T20:40:02.7913562Z * [new branch] gh/yanbing-j/22/base -> origin/gh/yanbing-j/22/base 2025-08-26T20:40:02.7914148Z * [new branch] gh/yanbing-j/22/head -> origin/gh/yanbing-j/22/head 2025-08-26T20:40:02.7914675Z * [new branch] gh/yanbing-j/22/orig -> origin/gh/yanbing-j/22/orig 2025-08-26T20:40:02.7915255Z * [new branch] gh/yanbing-j/23/base -> origin/gh/yanbing-j/23/base 2025-08-26T20:40:02.7915783Z * [new branch] gh/yanbing-j/23/head -> origin/gh/yanbing-j/23/head 2025-08-26T20:40:02.7916349Z * [new branch] gh/yanbing-j/23/orig -> origin/gh/yanbing-j/23/orig 2025-08-26T20:40:02.7916898Z * [new branch] gh/yanbing-j/24/base -> origin/gh/yanbing-j/24/base 2025-08-26T20:40:02.7917452Z * [new branch] gh/yanbing-j/24/head -> origin/gh/yanbing-j/24/head 2025-08-26T20:40:02.7918011Z * [new branch] gh/yanbing-j/24/orig -> origin/gh/yanbing-j/24/orig 2025-08-26T20:40:02.7918550Z * [new branch] gh/yanbing-j/25/base -> origin/gh/yanbing-j/25/base 2025-08-26T20:40:02.7919126Z * [new branch] gh/yanbing-j/25/head -> origin/gh/yanbing-j/25/head 2025-08-26T20:40:02.7919660Z * [new branch] gh/yanbing-j/25/orig -> origin/gh/yanbing-j/25/orig 2025-08-26T20:40:02.7920232Z * [new branch] gh/yanbing-j/26/base -> origin/gh/yanbing-j/26/base 2025-08-26T20:40:02.7920771Z * [new branch] gh/yanbing-j/26/head -> origin/gh/yanbing-j/26/head 2025-08-26T20:40:02.7921331Z * [new branch] gh/yanbing-j/26/orig -> origin/gh/yanbing-j/26/orig 2025-08-26T20:40:02.7921883Z * [new branch] gh/yanbing-j/36/base -> origin/gh/yanbing-j/36/base 2025-08-26T20:40:02.7922442Z * [new branch] gh/yanbing-j/36/head -> origin/gh/yanbing-j/36/head 2025-08-26T20:40:02.7923056Z * [new branch] gh/yanbing-j/36/orig -> origin/gh/yanbing-j/36/orig 2025-08-26T20:40:02.7923600Z * [new branch] gh/yanbing-j/37/base -> origin/gh/yanbing-j/37/base 2025-08-26T20:40:02.7924187Z * [new branch] gh/yanbing-j/37/head -> origin/gh/yanbing-j/37/head 2025-08-26T20:40:02.7924731Z * [new branch] gh/yanbing-j/37/orig -> origin/gh/yanbing-j/37/orig 2025-08-26T20:40:02.7925321Z * [new branch] gh/yangw-dev/1/base -> origin/gh/yangw-dev/1/base 2025-08-26T20:40:02.7925853Z * [new branch] gh/yangw-dev/10/base -> origin/gh/yangw-dev/10/base 2025-08-26T20:40:02.7926437Z * [new branch] gh/yangw-dev/10/head -> origin/gh/yangw-dev/10/head 2025-08-26T20:40:02.7926966Z * [new branch] gh/yangw-dev/10/orig -> origin/gh/yangw-dev/10/orig 2025-08-26T20:40:02.7927540Z * [new branch] gh/yangw-dev/11/base -> origin/gh/yangw-dev/11/base 2025-08-26T20:40:02.7928083Z * [new branch] gh/yangw-dev/11/head -> origin/gh/yangw-dev/11/head 2025-08-26T20:40:02.7928608Z * [new branch] gh/yangw-dev/11/orig -> origin/gh/yangw-dev/11/orig 2025-08-26T20:40:02.7929287Z * [new branch] gh/yangw-dev/12/base -> origin/gh/yangw-dev/12/base 2025-08-26T20:40:02.7929858Z * [new branch] gh/yangw-dev/12/head -> origin/gh/yangw-dev/12/head 2025-08-26T20:40:02.7930388Z * [new branch] gh/yangw-dev/12/orig -> origin/gh/yangw-dev/12/orig 2025-08-26T20:40:02.7939499Z * [new branch] gh/yangw-dev/13/base -> origin/gh/yangw-dev/13/base 2025-08-26T20:40:02.7940211Z * [new branch] gh/yangw-dev/13/head -> origin/gh/yangw-dev/13/head 2025-08-26T20:40:02.7940726Z * [new branch] gh/yangw-dev/13/orig -> origin/gh/yangw-dev/13/orig 2025-08-26T20:40:02.7941226Z * [new branch] gh/yangw-dev/14/base -> origin/gh/yangw-dev/14/base 2025-08-26T20:40:02.7941703Z * [new branch] gh/yangw-dev/14/head -> origin/gh/yangw-dev/14/head 2025-08-26T20:40:02.7942203Z * [new branch] gh/yangw-dev/14/orig -> origin/gh/yangw-dev/14/orig 2025-08-26T20:40:02.7942679Z * [new branch] gh/yangw-dev/15/base -> origin/gh/yangw-dev/15/base 2025-08-26T20:40:02.8360930Z * [new branch] gh/yangw-dev/15/head -> origin/gh/yangw-dev/15/head 2025-08-26T20:40:02.8361472Z * [new branch] gh/yangw-dev/15/orig -> origin/gh/yangw-dev/15/orig 2025-08-26T20:40:02.8361965Z * [new branch] gh/yangw-dev/16/base -> origin/gh/yangw-dev/16/base 2025-08-26T20:40:02.8362475Z * [new branch] gh/yangw-dev/16/head -> origin/gh/yangw-dev/16/head 2025-08-26T20:40:02.8362966Z * [new branch] gh/yangw-dev/16/orig -> origin/gh/yangw-dev/16/orig 2025-08-26T20:40:02.8363518Z * [new branch] gh/yangw-dev/17/base -> origin/gh/yangw-dev/17/base 2025-08-26T20:40:02.8364017Z * [new branch] gh/yangw-dev/17/head -> origin/gh/yangw-dev/17/head 2025-08-26T20:40:02.8364514Z * [new branch] gh/yangw-dev/17/orig -> origin/gh/yangw-dev/17/orig 2025-08-26T20:40:02.8364998Z * [new branch] gh/yangw-dev/18/base -> origin/gh/yangw-dev/18/base 2025-08-26T20:40:02.8365534Z * [new branch] gh/yangw-dev/18/head -> origin/gh/yangw-dev/18/head 2025-08-26T20:40:02.8366080Z * [new branch] gh/yangw-dev/18/orig -> origin/gh/yangw-dev/18/orig 2025-08-26T20:40:02.8366587Z * [new branch] gh/yangw-dev/19/base -> origin/gh/yangw-dev/19/base 2025-08-26T20:40:02.8367081Z * [new branch] gh/yangw-dev/19/head -> origin/gh/yangw-dev/19/head 2025-08-26T20:40:02.8367568Z * [new branch] gh/yangw-dev/19/orig -> origin/gh/yangw-dev/19/orig 2025-08-26T20:40:02.8368054Z * [new branch] gh/yangw-dev/2/base -> origin/gh/yangw-dev/2/base 2025-08-26T20:40:02.8368553Z * [new branch] gh/yangw-dev/2/head -> origin/gh/yangw-dev/2/head 2025-08-26T20:40:02.8369048Z * [new branch] gh/yangw-dev/20/base -> origin/gh/yangw-dev/20/base 2025-08-26T20:40:02.8369526Z * [new branch] gh/yangw-dev/20/head -> origin/gh/yangw-dev/20/head 2025-08-26T20:40:02.8370025Z * [new branch] gh/yangw-dev/20/orig -> origin/gh/yangw-dev/20/orig 2025-08-26T20:40:02.8370507Z * [new branch] gh/yangw-dev/21/base -> origin/gh/yangw-dev/21/base 2025-08-26T20:40:02.8371046Z * [new branch] gh/yangw-dev/21/head -> origin/gh/yangw-dev/21/head 2025-08-26T20:40:02.8371570Z * [new branch] gh/yangw-dev/21/orig -> origin/gh/yangw-dev/21/orig 2025-08-26T20:40:02.8372063Z * [new branch] gh/yangw-dev/22/base -> origin/gh/yangw-dev/22/base 2025-08-26T20:40:02.8372546Z * [new branch] gh/yangw-dev/22/head -> origin/gh/yangw-dev/22/head 2025-08-26T20:40:02.8373185Z * [new branch] gh/yangw-dev/22/orig -> origin/gh/yangw-dev/22/orig 2025-08-26T20:40:02.8373680Z * [new branch] gh/yangw-dev/23/base -> origin/gh/yangw-dev/23/base 2025-08-26T20:40:02.8374162Z * [new branch] gh/yangw-dev/23/head -> origin/gh/yangw-dev/23/head 2025-08-26T20:40:02.8374654Z * [new branch] gh/yangw-dev/23/orig -> origin/gh/yangw-dev/23/orig 2025-08-26T20:40:02.8375146Z * [new branch] gh/yangw-dev/24/base -> origin/gh/yangw-dev/24/base 2025-08-26T20:40:02.8375714Z * [new branch] gh/yangw-dev/24/head -> origin/gh/yangw-dev/24/head 2025-08-26T20:40:02.8376206Z * [new branch] gh/yangw-dev/24/orig -> origin/gh/yangw-dev/24/orig 2025-08-26T20:40:02.8376733Z * [new branch] gh/yangw-dev/3/base -> origin/gh/yangw-dev/3/base 2025-08-26T20:40:02.8377275Z * [new branch] gh/yangw-dev/3/head -> origin/gh/yangw-dev/3/head 2025-08-26T20:40:02.8377764Z * [new branch] gh/yangw-dev/4/base -> origin/gh/yangw-dev/4/base 2025-08-26T20:40:02.8378246Z * [new branch] gh/yangw-dev/4/head -> origin/gh/yangw-dev/4/head 2025-08-26T20:40:02.8378730Z * [new branch] gh/yangw-dev/5/base -> origin/gh/yangw-dev/5/base 2025-08-26T20:40:02.8379201Z * [new branch] gh/yangw-dev/5/head -> origin/gh/yangw-dev/5/head 2025-08-26T20:40:02.8379679Z * [new branch] gh/yangw-dev/6/base -> origin/gh/yangw-dev/6/base 2025-08-26T20:40:02.8380161Z * [new branch] gh/yangw-dev/6/head -> origin/gh/yangw-dev/6/head 2025-08-26T20:40:02.8380636Z * [new branch] gh/yangw-dev/7/base -> origin/gh/yangw-dev/7/base 2025-08-26T20:40:02.8381116Z * [new branch] gh/yangw-dev/7/head -> origin/gh/yangw-dev/7/head 2025-08-26T20:40:02.8381593Z * [new branch] gh/yangw-dev/8/base -> origin/gh/yangw-dev/8/base 2025-08-26T20:40:02.8382074Z * [new branch] gh/yangw-dev/8/head -> origin/gh/yangw-dev/8/head 2025-08-26T20:40:02.8382590Z * [new branch] gh/yangw-dev/8/orig -> origin/gh/yangw-dev/8/orig 2025-08-26T20:40:02.8383113Z * [new branch] gh/yangw-dev/9/base -> origin/gh/yangw-dev/9/base 2025-08-26T20:40:02.8383597Z * [new branch] gh/yangw-dev/9/head -> origin/gh/yangw-dev/9/head 2025-08-26T20:40:02.8871130Z * [new branch] gh/yangw-dev/9/orig -> origin/gh/yangw-dev/9/orig 2025-08-26T20:40:02.8871713Z * [new branch] gh/ydwu4/233/base -> origin/gh/ydwu4/233/base 2025-08-26T20:40:02.8872183Z * [new branch] gh/ydwu4/233/head -> origin/gh/ydwu4/233/head 2025-08-26T20:40:02.8872670Z * [new branch] gh/ydwu4/233/orig -> origin/gh/ydwu4/233/orig 2025-08-26T20:40:02.8873154Z * [new branch] gh/ydwu4/246/base -> origin/gh/ydwu4/246/base 2025-08-26T20:40:02.8873623Z * [new branch] gh/ydwu4/246/head -> origin/gh/ydwu4/246/head 2025-08-26T20:40:02.8874092Z * [new branch] gh/ydwu4/246/orig -> origin/gh/ydwu4/246/orig 2025-08-26T20:40:02.8874559Z * [new branch] gh/ydwu4/253/base -> origin/gh/ydwu4/253/base 2025-08-26T20:40:02.8875040Z * [new branch] gh/ydwu4/253/head -> origin/gh/ydwu4/253/head 2025-08-26T20:40:02.8875511Z * [new branch] gh/ydwu4/253/orig -> origin/gh/ydwu4/253/orig 2025-08-26T20:40:02.8876037Z * [new branch] gh/ydwu4/255/base -> origin/gh/ydwu4/255/base 2025-08-26T20:40:02.8876603Z * [new branch] gh/ydwu4/255/head -> origin/gh/ydwu4/255/head 2025-08-26T20:40:02.8877081Z * [new branch] gh/ydwu4/255/orig -> origin/gh/ydwu4/255/orig 2025-08-26T20:40:02.8877718Z * [new branch] gh/ydwu4/259/base -> origin/gh/ydwu4/259/base 2025-08-26T20:40:02.8878210Z * [new branch] gh/ydwu4/259/head -> origin/gh/ydwu4/259/head 2025-08-26T20:40:02.8878672Z * [new branch] gh/ydwu4/259/orig -> origin/gh/ydwu4/259/orig 2025-08-26T20:40:02.8879156Z * [new branch] gh/ydwu4/262/base -> origin/gh/ydwu4/262/base 2025-08-26T20:40:02.8879627Z * [new branch] gh/ydwu4/262/head -> origin/gh/ydwu4/262/head 2025-08-26T20:40:02.8880206Z * [new branch] gh/ydwu4/262/orig -> origin/gh/ydwu4/262/orig 2025-08-26T20:40:02.8880682Z * [new branch] gh/ydwu4/263/base -> origin/gh/ydwu4/263/base 2025-08-26T20:40:02.8881141Z * [new branch] gh/ydwu4/263/head -> origin/gh/ydwu4/263/head 2025-08-26T20:40:02.8881621Z * [new branch] gh/ydwu4/263/orig -> origin/gh/ydwu4/263/orig 2025-08-26T20:40:02.8882081Z * [new branch] gh/ydwu4/269/base -> origin/gh/ydwu4/269/base 2025-08-26T20:40:02.8882550Z * [new branch] gh/ydwu4/269/head -> origin/gh/ydwu4/269/head 2025-08-26T20:40:02.8883096Z * [new branch] gh/ydwu4/269/orig -> origin/gh/ydwu4/269/orig 2025-08-26T20:40:02.8883560Z * [new branch] gh/ydwu4/270/base -> origin/gh/ydwu4/270/base 2025-08-26T20:40:02.8884032Z * [new branch] gh/ydwu4/270/head -> origin/gh/ydwu4/270/head 2025-08-26T20:40:02.8884494Z * [new branch] gh/ydwu4/270/orig -> origin/gh/ydwu4/270/orig 2025-08-26T20:40:02.8884969Z * [new branch] gh/ydwu4/272/base -> origin/gh/ydwu4/272/base 2025-08-26T20:40:02.8885430Z * [new branch] gh/ydwu4/272/head -> origin/gh/ydwu4/272/head 2025-08-26T20:40:02.8885893Z * [new branch] gh/ydwu4/272/orig -> origin/gh/ydwu4/272/orig 2025-08-26T20:40:02.8886365Z * [new branch] gh/ydwu4/275/base -> origin/gh/ydwu4/275/base 2025-08-26T20:40:02.8886820Z * [new branch] gh/ydwu4/275/head -> origin/gh/ydwu4/275/head 2025-08-26T20:40:02.8887280Z * [new branch] gh/ydwu4/275/orig -> origin/gh/ydwu4/275/orig 2025-08-26T20:40:02.8887744Z * [new branch] gh/ydwu4/276/base -> origin/gh/ydwu4/276/base 2025-08-26T20:40:02.8888210Z * [new branch] gh/ydwu4/276/head -> origin/gh/ydwu4/276/head 2025-08-26T20:40:02.8888679Z * [new branch] gh/ydwu4/276/orig -> origin/gh/ydwu4/276/orig 2025-08-26T20:40:02.8889148Z * [new branch] gh/ydwu4/279/base -> origin/gh/ydwu4/279/base 2025-08-26T20:40:02.8889609Z * [new branch] gh/ydwu4/279/head -> origin/gh/ydwu4/279/head 2025-08-26T20:40:02.8890071Z * [new branch] gh/ydwu4/279/orig -> origin/gh/ydwu4/279/orig 2025-08-26T20:40:02.8890536Z * [new branch] gh/ydwu4/283/base -> origin/gh/ydwu4/283/base 2025-08-26T20:40:02.8890996Z * [new branch] gh/ydwu4/283/head -> origin/gh/ydwu4/283/head 2025-08-26T20:40:02.8891453Z * [new branch] gh/ydwu4/283/orig -> origin/gh/ydwu4/283/orig 2025-08-26T20:40:02.8891976Z * [new branch] gh/ydwu4/289/base -> origin/gh/ydwu4/289/base 2025-08-26T20:40:02.8892484Z * [new branch] gh/ydwu4/289/head -> origin/gh/ydwu4/289/head 2025-08-26T20:40:02.8892962Z * [new branch] gh/ydwu4/289/orig -> origin/gh/ydwu4/289/orig 2025-08-26T20:40:02.8893421Z * [new branch] gh/ydwu4/290/base -> origin/gh/ydwu4/290/base 2025-08-26T20:40:02.8893894Z * [new branch] gh/ydwu4/290/head -> origin/gh/ydwu4/290/head 2025-08-26T20:40:02.8894355Z * [new branch] gh/ydwu4/290/orig -> origin/gh/ydwu4/290/orig 2025-08-26T20:40:02.9340296Z * [new branch] gh/ydwu4/291/base -> origin/gh/ydwu4/291/base 2025-08-26T20:40:02.9340821Z * [new branch] gh/ydwu4/291/head -> origin/gh/ydwu4/291/head 2025-08-26T20:40:02.9341287Z * [new branch] gh/ydwu4/291/orig -> origin/gh/ydwu4/291/orig 2025-08-26T20:40:02.9341768Z * [new branch] gh/ydwu4/292/base -> origin/gh/ydwu4/292/base 2025-08-26T20:40:02.9342238Z * [new branch] gh/ydwu4/292/head -> origin/gh/ydwu4/292/head 2025-08-26T20:40:02.9342868Z * [new branch] gh/ydwu4/292/orig -> origin/gh/ydwu4/292/orig 2025-08-26T20:40:02.9343346Z * [new branch] gh/ydwu4/293/base -> origin/gh/ydwu4/293/base 2025-08-26T20:40:02.9343815Z * [new branch] gh/ydwu4/293/head -> origin/gh/ydwu4/293/head 2025-08-26T20:40:02.9344287Z * [new branch] gh/ydwu4/293/orig -> origin/gh/ydwu4/293/orig 2025-08-26T20:40:02.9344780Z * [new branch] gh/ydwu4/294/base -> origin/gh/ydwu4/294/base 2025-08-26T20:40:02.9345237Z * [new branch] gh/ydwu4/294/head -> origin/gh/ydwu4/294/head 2025-08-26T20:40:02.9345720Z * [new branch] gh/ydwu4/294/orig -> origin/gh/ydwu4/294/orig 2025-08-26T20:40:02.9346202Z * [new branch] gh/ydwu4/295/base -> origin/gh/ydwu4/295/base 2025-08-26T20:40:02.9346662Z * [new branch] gh/ydwu4/295/head -> origin/gh/ydwu4/295/head 2025-08-26T20:40:02.9347144Z * [new branch] gh/ydwu4/295/orig -> origin/gh/ydwu4/295/orig 2025-08-26T20:40:02.9347606Z * [new branch] gh/ydwu4/296/base -> origin/gh/ydwu4/296/base 2025-08-26T20:40:02.9348077Z * [new branch] gh/ydwu4/296/head -> origin/gh/ydwu4/296/head 2025-08-26T20:40:02.9348536Z * [new branch] gh/ydwu4/296/orig -> origin/gh/ydwu4/296/orig 2025-08-26T20:40:02.9349009Z * [new branch] gh/ydwu4/300/base -> origin/gh/ydwu4/300/base 2025-08-26T20:40:02.9349475Z * [new branch] gh/ydwu4/300/head -> origin/gh/ydwu4/300/head 2025-08-26T20:40:02.9349934Z * [new branch] gh/ydwu4/300/orig -> origin/gh/ydwu4/300/orig 2025-08-26T20:40:02.9350401Z * [new branch] gh/ydwu4/301/base -> origin/gh/ydwu4/301/base 2025-08-26T20:40:02.9350851Z * [new branch] gh/ydwu4/301/head -> origin/gh/ydwu4/301/head 2025-08-26T20:40:02.9351319Z * [new branch] gh/ydwu4/301/orig -> origin/gh/ydwu4/301/orig 2025-08-26T20:40:02.9351792Z * [new branch] gh/ydwu4/302/base -> origin/gh/ydwu4/302/base 2025-08-26T20:40:02.9352247Z * [new branch] gh/ydwu4/302/head -> origin/gh/ydwu4/302/head 2025-08-26T20:40:02.9352714Z * [new branch] gh/ydwu4/302/orig -> origin/gh/ydwu4/302/orig 2025-08-26T20:40:02.9353180Z * [new branch] gh/ydwu4/303/base -> origin/gh/ydwu4/303/base 2025-08-26T20:40:02.9353641Z * [new branch] gh/ydwu4/303/head -> origin/gh/ydwu4/303/head 2025-08-26T20:40:02.9354113Z * [new branch] gh/ydwu4/303/orig -> origin/gh/ydwu4/303/orig 2025-08-26T20:40:02.9354578Z * [new branch] gh/ydwu4/304/base -> origin/gh/ydwu4/304/base 2025-08-26T20:40:02.9355144Z * [new branch] gh/ydwu4/304/head -> origin/gh/ydwu4/304/head 2025-08-26T20:40:02.9355656Z * [new branch] gh/ydwu4/304/orig -> origin/gh/ydwu4/304/orig 2025-08-26T20:40:02.9356126Z * [new branch] gh/ydwu4/305/base -> origin/gh/ydwu4/305/base 2025-08-26T20:40:02.9356589Z * [new branch] gh/ydwu4/305/head -> origin/gh/ydwu4/305/head 2025-08-26T20:40:02.9357062Z * [new branch] gh/ydwu4/305/orig -> origin/gh/ydwu4/305/orig 2025-08-26T20:40:02.9357640Z * [new branch] gh/ydwu4/306/base -> origin/gh/ydwu4/306/base 2025-08-26T20:40:02.9358095Z * [new branch] gh/ydwu4/306/head -> origin/gh/ydwu4/306/head 2025-08-26T20:40:02.9358564Z * [new branch] gh/ydwu4/306/orig -> origin/gh/ydwu4/306/orig 2025-08-26T20:40:02.9359028Z * [new branch] gh/ydwu4/307/base -> origin/gh/ydwu4/307/base 2025-08-26T20:40:02.9359495Z * [new branch] gh/ydwu4/307/head -> origin/gh/ydwu4/307/head 2025-08-26T20:40:02.9360040Z * [new branch] gh/ydwu4/307/orig -> origin/gh/ydwu4/307/orig 2025-08-26T20:40:02.9360499Z * [new branch] gh/ydwu4/308/base -> origin/gh/ydwu4/308/base 2025-08-26T20:40:02.9360964Z * [new branch] gh/ydwu4/308/head -> origin/gh/ydwu4/308/head 2025-08-26T20:40:02.9361414Z * [new branch] gh/ydwu4/308/orig -> origin/gh/ydwu4/308/orig 2025-08-26T20:40:02.9361890Z * [new branch] gh/ydwu4/309/base -> origin/gh/ydwu4/309/base 2025-08-26T20:40:02.9362345Z * [new branch] gh/ydwu4/309/head -> origin/gh/ydwu4/309/head 2025-08-26T20:40:02.9362813Z * [new branch] gh/ydwu4/309/orig -> origin/gh/ydwu4/309/orig 2025-08-26T20:40:02.9816810Z * [new branch] gh/ydwu4/310/base -> origin/gh/ydwu4/310/base 2025-08-26T20:40:02.9817347Z * [new branch] gh/ydwu4/310/head -> origin/gh/ydwu4/310/head 2025-08-26T20:40:02.9817845Z * [new branch] gh/ydwu4/310/orig -> origin/gh/ydwu4/310/orig 2025-08-26T20:40:02.9818423Z * [new branch] gh/ydwu4/311/base -> origin/gh/ydwu4/311/base 2025-08-26T20:40:02.9818934Z * [new branch] gh/ydwu4/311/head -> origin/gh/ydwu4/311/head 2025-08-26T20:40:02.9819493Z * [new branch] gh/ydwu4/311/orig -> origin/gh/ydwu4/311/orig 2025-08-26T20:40:02.9820018Z * [new branch] gh/ydwu4/312/base -> origin/gh/ydwu4/312/base 2025-08-26T20:40:02.9820546Z * [new branch] gh/ydwu4/312/head -> origin/gh/ydwu4/312/head 2025-08-26T20:40:02.9821098Z * [new branch] gh/ydwu4/312/orig -> origin/gh/ydwu4/312/orig 2025-08-26T20:40:02.9821605Z * [new branch] gh/ydwu4/313/base -> origin/gh/ydwu4/313/base 2025-08-26T20:40:02.9822139Z * [new branch] gh/ydwu4/313/head -> origin/gh/ydwu4/313/head 2025-08-26T20:40:02.9822684Z * [new branch] gh/ydwu4/313/orig -> origin/gh/ydwu4/313/orig 2025-08-26T20:40:02.9823195Z * [new branch] gh/ydwu4/314/base -> origin/gh/ydwu4/314/base 2025-08-26T20:40:02.9823747Z * [new branch] gh/ydwu4/314/head -> origin/gh/ydwu4/314/head 2025-08-26T20:40:02.9824264Z * [new branch] gh/ydwu4/314/orig -> origin/gh/ydwu4/314/orig 2025-08-26T20:40:02.9824772Z * [new branch] gh/ydwu4/315/base -> origin/gh/ydwu4/315/base 2025-08-26T20:40:02.9825318Z * [new branch] gh/ydwu4/315/head -> origin/gh/ydwu4/315/head 2025-08-26T20:40:02.9825835Z * [new branch] gh/ydwu4/315/orig -> origin/gh/ydwu4/315/orig 2025-08-26T20:40:02.9826342Z * [new branch] gh/ydwu4/316/base -> origin/gh/ydwu4/316/base 2025-08-26T20:40:02.9826899Z * [new branch] gh/ydwu4/316/head -> origin/gh/ydwu4/316/head 2025-08-26T20:40:02.9827422Z * [new branch] gh/ydwu4/316/orig -> origin/gh/ydwu4/316/orig 2025-08-26T20:40:02.9827957Z * [new branch] gh/ydwu4/317/base -> origin/gh/ydwu4/317/base 2025-08-26T20:40:02.9828477Z * [new branch] gh/ydwu4/317/head -> origin/gh/ydwu4/317/head 2025-08-26T20:40:02.9829180Z * [new branch] gh/ydwu4/317/orig -> origin/gh/ydwu4/317/orig 2025-08-26T20:40:02.9829688Z * [new branch] gh/yf225/133/base -> origin/gh/yf225/133/base 2025-08-26T20:40:02.9830194Z * [new branch] gh/yf225/133/head -> origin/gh/yf225/133/head 2025-08-26T20:40:02.9830730Z * [new branch] gh/yf225/171/base -> origin/gh/yf225/171/base 2025-08-26T20:40:02.9831238Z * [new branch] gh/yf225/171/head -> origin/gh/yf225/171/head 2025-08-26T20:40:02.9831876Z * [new branch] gh/yf225/171/orig -> origin/gh/yf225/171/orig 2025-08-26T20:40:02.9832382Z * [new branch] gh/yf225/172/base -> origin/gh/yf225/172/base 2025-08-26T20:40:02.9832893Z * [new branch] gh/yf225/172/head -> origin/gh/yf225/172/head 2025-08-26T20:40:02.9833447Z * [new branch] gh/yf225/172/orig -> origin/gh/yf225/172/orig 2025-08-26T20:40:02.9833952Z * [new branch] gh/yf225/93/base -> origin/gh/yf225/93/base 2025-08-26T20:40:02.9834459Z * [new branch] gh/yf225/93/head -> origin/gh/yf225/93/head 2025-08-26T20:40:02.9835036Z * [new branch] gh/yifuwang/152/base -> origin/gh/yifuwang/152/base 2025-08-26T20:40:02.9835600Z * [new branch] gh/yifuwang/152/head -> origin/gh/yifuwang/152/head 2025-08-26T20:40:02.9836175Z * [new branch] gh/yifuwang/152/orig -> origin/gh/yifuwang/152/orig 2025-08-26T20:40:02.9836717Z * [new branch] gh/yifuwang/195/base -> origin/gh/yifuwang/195/base 2025-08-26T20:40:02.9837297Z * [new branch] gh/yifuwang/195/head -> origin/gh/yifuwang/195/head 2025-08-26T20:40:02.9837819Z * [new branch] gh/yifuwang/195/orig -> origin/gh/yifuwang/195/orig 2025-08-26T20:40:02.9838395Z * [new branch] gh/yiming0416/1/base -> origin/gh/yiming0416/1/base 2025-08-26T20:40:02.9838934Z * [new branch] gh/yiming0416/1/head -> origin/gh/yiming0416/1/head 2025-08-26T20:40:02.9839503Z * [new branch] gh/yiming0416/2/base -> origin/gh/yiming0416/2/base 2025-08-26T20:40:02.9840045Z * [new branch] gh/yiming0416/2/head -> origin/gh/yiming0416/2/head 2025-08-26T20:40:02.9840579Z * [new branch] gh/ysiraichi/79/base -> origin/gh/ysiraichi/79/base 2025-08-26T20:40:02.9841160Z * [new branch] gh/ysiraichi/79/head -> origin/gh/ysiraichi/79/head 2025-08-26T20:40:02.9841693Z * [new branch] gh/ysiraichi/79/orig -> origin/gh/ysiraichi/79/orig 2025-08-26T20:40:03.0591778Z * [new branch] gh/ysiraichi/81/base -> origin/gh/ysiraichi/81/base 2025-08-26T20:40:03.0592340Z * [new branch] gh/ysiraichi/81/head -> origin/gh/ysiraichi/81/head 2025-08-26T20:40:03.0592839Z * [new branch] gh/ysiraichi/81/orig -> origin/gh/ysiraichi/81/orig 2025-08-26T20:40:03.0593372Z * [new branch] gh/ysiraichi/88/base -> origin/gh/ysiraichi/88/base 2025-08-26T20:40:03.0593927Z * [new branch] gh/ysiraichi/88/head -> origin/gh/ysiraichi/88/head 2025-08-26T20:40:03.0594484Z * [new branch] gh/ysiraichi/88/orig -> origin/gh/ysiraichi/88/orig 2025-08-26T20:40:03.0594976Z * [new branch] gh/zhxchen17/25/base -> origin/gh/zhxchen17/25/base 2025-08-26T20:40:03.0595471Z * [new branch] gh/zhxchen17/25/head -> origin/gh/zhxchen17/25/head 2025-08-26T20:40:03.0595986Z * [new branch] gh/zhxchen17/25/orig -> origin/gh/zhxchen17/25/orig 2025-08-26T20:40:03.0596463Z * [new branch] gh/zhxchen17/31/base -> origin/gh/zhxchen17/31/base 2025-08-26T20:40:03.0596960Z * [new branch] gh/zhxchen17/31/head -> origin/gh/zhxchen17/31/head 2025-08-26T20:40:03.0597622Z * [new branch] gh/zhxchen17/31/orig -> origin/gh/zhxchen17/31/orig 2025-08-26T20:40:03.0598104Z * [new branch] gh/zhxchen17/34/base -> origin/gh/zhxchen17/34/base 2025-08-26T20:40:03.0598607Z * [new branch] gh/zhxchen17/34/head -> origin/gh/zhxchen17/34/head 2025-08-26T20:40:03.0599092Z * [new branch] gh/zhxchen17/35/base -> origin/gh/zhxchen17/35/base 2025-08-26T20:40:03.0599594Z * [new branch] gh/zhxchen17/35/head -> origin/gh/zhxchen17/35/head 2025-08-26T20:40:03.0600212Z * [new branch] gh/zhxchen17/36/base -> origin/gh/zhxchen17/36/base 2025-08-26T20:40:03.0600706Z * [new branch] gh/zhxchen17/36/head -> origin/gh/zhxchen17/36/head 2025-08-26T20:40:03.0601205Z * [new branch] gh/zhxchen17/36/orig -> origin/gh/zhxchen17/36/orig 2025-08-26T20:40:03.0601688Z * [new branch] gh/zhxchen17/37/base -> origin/gh/zhxchen17/37/base 2025-08-26T20:40:03.0602186Z * [new branch] gh/zhxchen17/37/head -> origin/gh/zhxchen17/37/head 2025-08-26T20:40:03.0602688Z * [new branch] gh/zhxchen17/37/orig -> origin/gh/zhxchen17/37/orig 2025-08-26T20:40:03.0603242Z * [new branch] gh/zhxchen17/38/base -> origin/gh/zhxchen17/38/base 2025-08-26T20:40:03.0603740Z * [new branch] gh/zhxchen17/38/head -> origin/gh/zhxchen17/38/head 2025-08-26T20:40:03.0604229Z * [new branch] gh/zhxchen17/38/orig -> origin/gh/zhxchen17/38/orig 2025-08-26T20:40:03.0604744Z * [new branch] gh/zhxchen17/39/base -> origin/gh/zhxchen17/39/base 2025-08-26T20:40:03.0605249Z * [new branch] gh/zhxchen17/39/head -> origin/gh/zhxchen17/39/head 2025-08-26T20:40:03.0605736Z * [new branch] gh/zhxchen17/39/orig -> origin/gh/zhxchen17/39/orig 2025-08-26T20:40:03.0606237Z * [new branch] gh/zhxchen17/40/base -> origin/gh/zhxchen17/40/base 2025-08-26T20:40:03.0606724Z * [new branch] gh/zhxchen17/40/head -> origin/gh/zhxchen17/40/head 2025-08-26T20:40:03.0607209Z * [new branch] gh/zhxchen17/40/orig -> origin/gh/zhxchen17/40/orig 2025-08-26T20:40:03.0607694Z * [new branch] gh/zhxchen17/41/base -> origin/gh/zhxchen17/41/base 2025-08-26T20:40:03.0608184Z * [new branch] gh/zhxchen17/41/head -> origin/gh/zhxchen17/41/head 2025-08-26T20:40:03.0608677Z * [new branch] gh/zhxchen17/41/orig -> origin/gh/zhxchen17/41/orig 2025-08-26T20:40:03.0609161Z * [new branch] gh/zhxchen17/42/base -> origin/gh/zhxchen17/42/base 2025-08-26T20:40:03.0609653Z * [new branch] gh/zhxchen17/42/head -> origin/gh/zhxchen17/42/head 2025-08-26T20:40:03.0610131Z * [new branch] gh/zhxchen17/42/orig -> origin/gh/zhxchen17/42/orig 2025-08-26T20:40:03.0610620Z * [new branch] gh/zhxchen17/43/base -> origin/gh/zhxchen17/43/base 2025-08-26T20:40:03.0611117Z * [new branch] gh/zhxchen17/43/head -> origin/gh/zhxchen17/43/head 2025-08-26T20:40:03.0611595Z * [new branch] gh/zhxchen17/43/orig -> origin/gh/zhxchen17/43/orig 2025-08-26T20:40:03.0612081Z * [new branch] gh/zklaus/10/base -> origin/gh/zklaus/10/base 2025-08-26T20:40:03.0612550Z * [new branch] gh/zklaus/10/head -> origin/gh/zklaus/10/head 2025-08-26T20:40:03.0613022Z * [new branch] gh/zklaus/10/orig -> origin/gh/zklaus/10/orig 2025-08-26T20:40:03.0613485Z * [new branch] gh/zklaus/11/base -> origin/gh/zklaus/11/base 2025-08-26T20:40:03.0613944Z * [new branch] gh/zklaus/11/head -> origin/gh/zklaus/11/head 2025-08-26T20:40:03.0614413Z * [new branch] gh/zklaus/11/orig -> origin/gh/zklaus/11/orig 2025-08-26T20:40:03.0614997Z * [new branch] gh/zklaus/12/base -> origin/gh/zklaus/12/base 2025-08-26T20:40:03.1070618Z * [new branch] gh/zklaus/12/head -> origin/gh/zklaus/12/head 2025-08-26T20:40:03.1071105Z * [new branch] gh/zklaus/12/orig -> origin/gh/zklaus/12/orig 2025-08-26T20:40:03.1071572Z * [new branch] gh/zklaus/14/base -> origin/gh/zklaus/14/base 2025-08-26T20:40:03.1072057Z * [new branch] gh/zklaus/14/head -> origin/gh/zklaus/14/head 2025-08-26T20:40:03.1072650Z * [new branch] gh/zklaus/14/orig -> origin/gh/zklaus/14/orig 2025-08-26T20:40:03.1073130Z * [new branch] gh/zklaus/15/base -> origin/gh/zklaus/15/base 2025-08-26T20:40:03.1073597Z * [new branch] gh/zklaus/15/head -> origin/gh/zklaus/15/head 2025-08-26T20:40:03.1074058Z * [new branch] gh/zklaus/15/orig -> origin/gh/zklaus/15/orig 2025-08-26T20:40:03.1074540Z * [new branch] gh/zklaus/16/base -> origin/gh/zklaus/16/base 2025-08-26T20:40:03.1074999Z * [new branch] gh/zklaus/16/head -> origin/gh/zklaus/16/head 2025-08-26T20:40:03.1075463Z * [new branch] gh/zklaus/16/orig -> origin/gh/zklaus/16/orig 2025-08-26T20:40:03.1075933Z * [new branch] gh/zklaus/17/base -> origin/gh/zklaus/17/base 2025-08-26T20:40:03.1076392Z * [new branch] gh/zklaus/17/head -> origin/gh/zklaus/17/head 2025-08-26T20:40:03.1076870Z * [new branch] gh/zklaus/17/orig -> origin/gh/zklaus/17/orig 2025-08-26T20:40:03.1077331Z * [new branch] gh/zklaus/18/base -> origin/gh/zklaus/18/base 2025-08-26T20:40:03.1077807Z * [new branch] gh/zklaus/18/head -> origin/gh/zklaus/18/head 2025-08-26T20:40:03.1078264Z * [new branch] gh/zklaus/18/orig -> origin/gh/zklaus/18/orig 2025-08-26T20:40:03.1078735Z * [new branch] gh/zklaus/19/base -> origin/gh/zklaus/19/base 2025-08-26T20:40:03.1079210Z * [new branch] gh/zklaus/19/head -> origin/gh/zklaus/19/head 2025-08-26T20:40:03.1079668Z * [new branch] gh/zklaus/19/orig -> origin/gh/zklaus/19/orig 2025-08-26T20:40:03.1080150Z * [new branch] gh/zklaus/7/base -> origin/gh/zklaus/7/base 2025-08-26T20:40:03.1080612Z * [new branch] gh/zklaus/7/head -> origin/gh/zklaus/7/head 2025-08-26T20:40:03.1081085Z * [new branch] gh/zklaus/7/orig -> origin/gh/zklaus/7/orig 2025-08-26T20:40:03.1081549Z * [new branch] gh/zklaus/9/base -> origin/gh/zklaus/9/base 2025-08-26T20:40:03.1082000Z * [new branch] gh/zklaus/9/head -> origin/gh/zklaus/9/head 2025-08-26T20:40:03.1082457Z * [new branch] gh/zklaus/9/orig -> origin/gh/zklaus/9/orig 2025-08-26T20:40:03.1082930Z * [new branch] gh/zou3519/1175/base -> origin/gh/zou3519/1175/base 2025-08-26T20:40:03.1083498Z * [new branch] gh/zou3519/1175/head -> origin/gh/zou3519/1175/head 2025-08-26T20:40:03.1083991Z * [new branch] gh/zou3519/1175/orig -> origin/gh/zou3519/1175/orig 2025-08-26T20:40:03.1084471Z * [new branch] gh/zou3519/1177/base -> origin/gh/zou3519/1177/base 2025-08-26T20:40:03.1084960Z * [new branch] gh/zou3519/1177/head -> origin/gh/zou3519/1177/head 2025-08-26T20:40:03.1085439Z * [new branch] gh/zou3519/1177/orig -> origin/gh/zou3519/1177/orig 2025-08-26T20:40:03.1085928Z * [new branch] gh/zou3519/1188/base -> origin/gh/zou3519/1188/base 2025-08-26T20:40:03.1086396Z * [new branch] gh/zou3519/1188/head -> origin/gh/zou3519/1188/head 2025-08-26T20:40:03.1086881Z * [new branch] gh/zou3519/1188/orig -> origin/gh/zou3519/1188/orig 2025-08-26T20:40:03.1087486Z * [new branch] gh/zou3519/1189/base -> origin/gh/zou3519/1189/base 2025-08-26T20:40:03.1087963Z * [new branch] gh/zou3519/1189/head -> origin/gh/zou3519/1189/head 2025-08-26T20:40:03.1088445Z * [new branch] gh/zou3519/1189/orig -> origin/gh/zou3519/1189/orig 2025-08-26T20:40:03.1088923Z * [new branch] gh/zou3519/1190/base -> origin/gh/zou3519/1190/base 2025-08-26T20:40:03.1089491Z * [new branch] gh/zou3519/1190/head -> origin/gh/zou3519/1190/head 2025-08-26T20:40:03.1089979Z * [new branch] gh/zou3519/1190/orig -> origin/gh/zou3519/1190/orig 2025-08-26T20:40:03.1090452Z * [new branch] gh/zou3519/1191/base -> origin/gh/zou3519/1191/base 2025-08-26T20:40:03.1090935Z * [new branch] gh/zou3519/1191/head -> origin/gh/zou3519/1191/head 2025-08-26T20:40:03.1091416Z * [new branch] gh/zou3519/1191/orig -> origin/gh/zou3519/1191/orig 2025-08-26T20:40:03.1091901Z * [new branch] gh/zou3519/1192/base -> origin/gh/zou3519/1192/base 2025-08-26T20:40:03.1092464Z * [new branch] gh/zou3519/1192/head -> origin/gh/zou3519/1192/head 2025-08-26T20:40:03.1092934Z * [new branch] gh/zou3519/1192/orig -> origin/gh/zou3519/1192/orig 2025-08-26T20:40:03.1093418Z * [new branch] gh/zpcore/1/base -> origin/gh/zpcore/1/base 2025-08-26T20:40:03.1559833Z * [new branch] gh/zpcore/1/head -> origin/gh/zpcore/1/head 2025-08-26T20:40:03.1560372Z * [new branch] gh/zpcore/10/base -> origin/gh/zpcore/10/base 2025-08-26T20:40:03.1560848Z * [new branch] gh/zpcore/10/head -> origin/gh/zpcore/10/head 2025-08-26T20:40:03.1561332Z * [new branch] gh/zpcore/10/orig -> origin/gh/zpcore/10/orig 2025-08-26T20:40:03.1561842Z * [new branch] gh/zpcore/11/base -> origin/gh/zpcore/11/base 2025-08-26T20:40:03.1562302Z * [new branch] gh/zpcore/11/head -> origin/gh/zpcore/11/head 2025-08-26T20:40:03.1562772Z * [new branch] gh/zpcore/11/orig -> origin/gh/zpcore/11/orig 2025-08-26T20:40:03.1563288Z * [new branch] gh/zpcore/12/base -> origin/gh/zpcore/12/base 2025-08-26T20:40:03.1563757Z * [new branch] gh/zpcore/12/head -> origin/gh/zpcore/12/head 2025-08-26T20:40:03.1564227Z * [new branch] gh/zpcore/12/orig -> origin/gh/zpcore/12/orig 2025-08-26T20:40:03.1564698Z * [new branch] gh/zpcore/13/base -> origin/gh/zpcore/13/base 2025-08-26T20:40:03.1565157Z * [new branch] gh/zpcore/13/head -> origin/gh/zpcore/13/head 2025-08-26T20:40:03.1565620Z * [new branch] gh/zpcore/13/orig -> origin/gh/zpcore/13/orig 2025-08-26T20:40:03.1566098Z * [new branch] gh/zpcore/2/base -> origin/gh/zpcore/2/base 2025-08-26T20:40:03.1566558Z * [new branch] gh/zpcore/2/head -> origin/gh/zpcore/2/head 2025-08-26T20:40:03.1567021Z * [new branch] gh/zpcore/3/base -> origin/gh/zpcore/3/base 2025-08-26T20:40:03.1567481Z * [new branch] gh/zpcore/3/head -> origin/gh/zpcore/3/head 2025-08-26T20:40:03.1567935Z * [new branch] gh/zpcore/4/base -> origin/gh/zpcore/4/base 2025-08-26T20:40:03.1568405Z * [new branch] gh/zpcore/4/head -> origin/gh/zpcore/4/head 2025-08-26T20:40:03.1568857Z * [new branch] gh/zpcore/5/base -> origin/gh/zpcore/5/base 2025-08-26T20:40:03.1569316Z * [new branch] gh/zpcore/5/head -> origin/gh/zpcore/5/head 2025-08-26T20:40:03.1569772Z * [new branch] gh/zpcore/6/base -> origin/gh/zpcore/6/base 2025-08-26T20:40:03.1570398Z * [new branch] gh/zpcore/6/head -> origin/gh/zpcore/6/head 2025-08-26T20:40:03.1570858Z * [new branch] gh/zpcore/7/base -> origin/gh/zpcore/7/base 2025-08-26T20:40:03.1571316Z * [new branch] gh/zpcore/7/head -> origin/gh/zpcore/7/head 2025-08-26T20:40:03.1571778Z * [new branch] gh/zpcore/8/base -> origin/gh/zpcore/8/base 2025-08-26T20:40:03.1572228Z * [new branch] gh/zpcore/8/head -> origin/gh/zpcore/8/head 2025-08-26T20:40:03.1572786Z * [new branch] gh/zpcore/9/head -> origin/gh/zpcore/9/head 2025-08-26T20:40:03.1573256Z * [new branch] gh/zpcore/9/orig -> origin/gh/zpcore/9/orig 2025-08-26T20:40:03.1573702Z * [new branch] google-main -> origin/google-main 2025-08-26T20:40:03.1574199Z * [new branch] guangyey/external_stream -> origin/guangyey/external_stream 2025-08-26T20:40:03.1574724Z * [new branch] guangyey/host_alloc -> origin/guangyey/host_alloc 2025-08-26T20:40:03.1575223Z * [new branch] guangyey/test_2025 -> origin/guangyey/test_2025 2025-08-26T20:40:03.1575871Z * [new branch] guilhermeleobas/cherry-pick-55d87d9dfd9 -> origin/guilhermeleobas/cherry-pick-55d87d9dfd9 2025-08-26T20:40:03.1576543Z * [new branch] haozhe/bf16-dynamic-shape -> origin/haozhe/bf16-dynamic-shape 2025-08-26T20:40:03.1577034Z * [new branch] hc_baseline -> origin/hc_baseline 2025-08-26T20:40:03.1577517Z * [new branch] headeronlyScalarType -> origin/headeronlyScalarType 2025-08-26T20:40:03.1578008Z * [new branch] hf_update -> origin/hf_update 2025-08-26T20:40:03.1578444Z * [new branch] hhh_decomp_mul -> origin/hhh_decomp_mul 2025-08-26T20:40:03.1578866Z * [new branch] hhh_rand -> origin/hhh_rand 2025-08-26T20:40:03.1579297Z * [new branch] hoy/mmsplitk -> origin/hoy/mmsplitk 2025-08-26T20:40:03.1579765Z * [new branch] hoy/triton-PR3973 -> origin/hoy/triton-PR3973 2025-08-26T20:40:03.1580342Z * [new branch] hoy/triton-coalescing-baseline -> origin/hoy/triton-coalescing-baseline 2025-08-26T20:40:03.1580953Z * [new branch] hoy/triton-coalescing-min -> origin/hoy/triton-coalescing-min 2025-08-26T20:40:03.1581523Z * [new branch] hoy/triton-coalescing-new -> origin/hoy/triton-coalescing-new 2025-08-26T20:40:03.1582087Z * [new branch] hoy/triton-coalescing-vec -> origin/hoy/triton-coalescing-vec 2025-08-26T20:40:03.1582608Z * [new branch] inductordecompfix -> origin/inductordecompfix 2025-08-26T20:40:03.1583063Z * [new branch] inline -> origin/inline 2025-08-26T20:40:03.2011625Z * [new branch] inlining -> origin/inlining 2025-08-26T20:40:03.2012116Z * [new branch] inlining-ezyang -> origin/inlining-ezyang 2025-08-26T20:40:03.2012578Z * [new branch] int8_sdpa -> origin/int8_sdpa 2025-08-26T20:40:03.2013024Z * [new branch] invoke-subgraph -> origin/invoke-subgraph 2025-08-26T20:40:03.2013543Z * [new branch] issue#58739 -> origin/issue#58739 2025-08-26T20:40:03.2014059Z * [new branch] issue-154849 -> origin/issue-154849 2025-08-26T20:40:03.2014628Z * [new branch] ivanov/cherry-pick-ckpt-fixes -> origin/ivanov/cherry-pick-ckpt-fixes 2025-08-26T20:40:03.2015305Z * [new branch] jcaip/test-cusparselt-version-0.6.2 -> origin/jcaip/test-cusparselt-version-0.6.2 2025-08-26T20:40:03.2015976Z * [new branch] jcaip/update-cusparselt-0.6.2 -> origin/jcaip/update-cusparselt-0.6.2 2025-08-26T20:40:03.2016747Z * [new branch] justinchu/attention-tests -> origin/justinchu/attention-tests 2025-08-26T20:40:03.2017302Z * [new branch] justinchu/native-qdq -> origin/justinchu/native-qdq 2025-08-26T20:40:03.2017811Z * [new branch] justinchu/ort-122 -> origin/justinchu/ort-122 2025-08-26T20:40:03.2018347Z * [new branch] justinchuby/JitScalarType -> origin/justinchuby/JitScalarType 2025-08-26T20:40:03.2018897Z * [new branch] justinchuby/dynamo-true -> origin/justinchuby/dynamo-true 2025-08-26T20:40:03.2019553Z * [new branch] kainan666/xlf_debug -> origin/kainan666/xlf_debug 2025-08-26T20:40:03.2020108Z * [new branch] kainan_test -> origin/kainan_test 2025-08-26T20:40:03.2020559Z * [new branch] learnablebias -> origin/learnablebias 2025-08-26T20:40:03.2021114Z * [new branch] leslie/test_group_gemm_epilogues -> origin/leslie/test_group_gemm_epilogues 2025-08-26T20:40:03.2021756Z * [new branch] lessw2020/fix_cutlass_cache_error -> origin/lessw2020/fix_cutlass_cache_error 2025-08-26T20:40:03.2022342Z * [new branch] liaoxuan/shm_all_reduce -> origin/liaoxuan/shm_all_reduce 2025-08-26T20:40:03.2022843Z * [new branch] liaoxuan/tags_issue -> origin/liaoxuan/tags_issue 2025-08-26T20:40:03.2023408Z * [new branch] liaoxuan/test_fa_disable_softmax -> origin/liaoxuan/test_fa_disable_softmax 2025-08-26T20:40:03.2023988Z * [new branch] liaoxuan/test_int8_sdpa -> origin/liaoxuan/test_int8_sdpa 2025-08-26T20:40:03.2024495Z * [new branch] lintbuilddocker -> origin/lintbuilddocker 2025-08-26T20:40:03.2024961Z * [new branch] llama4-stable -> origin/llama4-stable 2025-08-26T20:40:03.2025449Z * [new branch] logdetfix -> origin/logdetfix 2025-08-26T20:40:03.2025936Z * [new branch] lts/release/1.8 -> origin/lts/release/1.8 2025-08-26T20:40:03.2026463Z * [new branch] lucaskabela/#94773 -> origin/lucaskabela/#94773 2025-08-26T20:40:03.2026959Z * [new branch] lucaskabela/fix_157452 -> origin/lucaskabela/fix_157452 2025-08-26T20:40:03.2027521Z * [new branch] lucaskabela/func_under_decomp -> origin/lucaskabela/func_under_decomp 2025-08-26T20:40:03.2028144Z * [new branch] lucaskabela/functional_in_dynamo -> origin/lucaskabela/functional_in_dynamo 2025-08-26T20:40:03.2028839Z * [new branch] lucaskabela/install_params_as_graph_attr -> origin/lucaskabela/install_params_as_graph_attr 2025-08-26T20:40:03.2029474Z * [new branch] lucaskabela/issue_120648 -> origin/lucaskabela/issue_120648 2025-08-26T20:40:03.2030044Z * [new branch] lucaskabela/misc_typing_dynamo -> origin/lucaskabela/misc_typing_dynamo 2025-08-26T20:40:03.2030700Z * [new branch] lucaskabela/parameters_as_graph_attr -> origin/lucaskabela/parameters_as_graph_attr 2025-08-26T20:40:03.2031320Z * [new branch] lucaskabela/registry_fix -> origin/lucaskabela/registry_fix 2025-08-26T20:40:03.2031980Z * [new branch] lucaskabela/remove_aot_dispatcher_metadata -> origin/lucaskabela/remove_aot_dispatcher_metadata 2025-08-26T20:40:03.2032637Z * [new branch] lucaskabela/rnn_decomp -> origin/lucaskabela/rnn_decomp 2025-08-26T20:40:03.2033159Z * [new branch] lucaskabela/type_guards -> origin/lucaskabela/type_guards 2025-08-26T20:40:03.2033712Z * [new branch] lucaskabela/typing_backends -> origin/lucaskabela/typing_backends 2025-08-26T20:40:03.2034335Z * [new branch] lucaskabela/typing_compile_autograd -> origin/lucaskabela/typing_compile_autograd 2025-08-26T20:40:03.2034985Z * [new branch] lucaskabela/typing_output_graph -> origin/lucaskabela/typing_output_graph 2025-08-26T20:40:03.2035720Z * [new branch] lucaskabela/typing_source_guard -> origin/lucaskabela/typing_source_guard 2025-08-26T20:40:03.3212722Z * [new branch] lucaskabela/typing_symbolic_convert -> origin/lucaskabela/typing_symbolic_convert 2025-08-26T20:40:03.3213406Z * [new branch] lucaskabela/typing_utils.py -> origin/lucaskabela/typing_utils.py 2025-08-26T20:40:03.3214089Z * [new branch] lucaskabela/typing_utils_improvements -> origin/lucaskabela/typing_utils_improvements 2025-08-26T20:40:03.3214844Z * [new branch] main -> origin/main 2025-08-26T20:40:03.3215422Z * [new branch] main-enable-b200-distributed-tests -> origin/main-enable-b200-distributed-tests 2025-08-26T20:40:03.3216036Z * [new branch] malfet-patch-1 -> origin/malfet-patch-1 2025-08-26T20:40:03.3216519Z * [new branch] malfet-patch-11 -> origin/malfet-patch-11 2025-08-26T20:40:03.3217021Z * [new branch] malfet-patch-12 -> origin/malfet-patch-12 2025-08-26T20:40:03.3217494Z * [new branch] malfet-patch-14 -> origin/malfet-patch-14 2025-08-26T20:40:03.3217947Z * [new branch] malfet-patch-2 -> origin/malfet-patch-2 2025-08-26T20:40:03.3218419Z * [new branch] malfet-patch-3 -> origin/malfet-patch-3 2025-08-26T20:40:03.3218873Z * [new branch] malfet-patch-4 -> origin/malfet-patch-4 2025-08-26T20:40:03.3219337Z * [new branch] malfet-patch-5 -> origin/malfet-patch-5 2025-08-26T20:40:03.3219809Z * [new branch] malfet-patch-6 -> origin/malfet-patch-6 2025-08-26T20:40:03.3220258Z * [new branch] malfet-patch-7 -> origin/malfet-patch-7 2025-08-26T20:40:03.3220720Z * [new branch] malfet-patch-8 -> origin/malfet-patch-8 2025-08-26T20:40:03.3221172Z * [new branch] malfet-patch-9 -> origin/malfet-patch-9 2025-08-26T20:40:03.3221694Z * [new branch] malfet/delete-upsteam-cuda -> origin/malfet/delete-upsteam-cuda 2025-08-26T20:40:03.3222286Z * [new branch] malfet/mps-implement-col2im -> origin/malfet/mps-implement-col2im 2025-08-26T20:40:03.3222911Z * [new branch] manuel/test-ops-common-allow-mps -> origin/manuel/test-ops-common-allow-mps 2025-08-26T20:40:03.3223498Z * [new branch] metascroy-patch-1 -> origin/metascroy-patch-1 2025-08-26T20:40:03.3223987Z * [new branch] mlazos/S429861-debug -> origin/mlazos/S429861-debug 2025-08-26T20:40:03.3224448Z * [new branch] mlazos/aa -> origin/mlazos/aa 2025-08-26T20:40:03.3224909Z * [new branch] mlazos/arg-renames -> origin/mlazos/arg-renames 2025-08-26T20:40:03.3225429Z * [new branch] mlazos/backup-test-branch -> origin/mlazos/backup-test-branch 2025-08-26T20:40:03.3225973Z * [new branch] mlazos/bad-cudagraphs -> origin/mlazos/bad-cudagraphs 2025-08-26T20:40:03.3226455Z * [new branch] mlazos/baseline -> origin/mlazos/baseline 2025-08-26T20:40:03.3226997Z * [new branch] mlazos/baseline-graph-breaks -> origin/mlazos/baseline-graph-breaks 2025-08-26T20:40:03.3227552Z * [new branch] mlazos/beta-tensor -> origin/mlazos/beta-tensor 2025-08-26T20:40:03.3228037Z * [new branch] mlazos/better-msg -> origin/mlazos/better-msg 2025-08-26T20:40:03.3228520Z * [new branch] mlazos/buffers -> origin/mlazos/buffers 2025-08-26T20:40:03.3228966Z * [new branch] mlazos/buffers2 -> origin/mlazos/buffers2 2025-08-26T20:40:03.3229424Z * [new branch] mlazos/buffers3 -> origin/mlazos/buffers3 2025-08-26T20:40:03.3229869Z * [new branch] mlazos/ck2 -> origin/mlazos/ck2 2025-08-26T20:40:03.3231026Z * [new branch] mlazos/combokernels -> origin/mlazos/combokernels 2025-08-26T20:40:03.3231534Z * [new branch] mlazos/ctx-cleanup -> origin/mlazos/ctx-cleanup 2025-08-26T20:40:03.3232018Z * [new branch] mlazos/cuda-cmd-log -> origin/mlazos/cuda-cmd-log 2025-08-26T20:40:03.3232546Z * [new branch] mlazos/cudagraph-tests -> origin/mlazos/cudagraph-tests 2025-08-26T20:40:03.3233229Z * [new branch] mlazos/cudagraphs-measurement -> origin/mlazos/cudagraphs-measurement 2025-08-26T20:40:03.3233804Z * [new branch] mlazos/cutlass-test -> origin/mlazos/cutlass-test 2025-08-26T20:40:03.3234325Z * [new branch] mlazos/cutlass-topo-bug -> origin/mlazos/cutlass-topo-bug 2025-08-26T20:40:03.3234842Z * [new branch] mlazos/data-gather -> origin/mlazos/data-gather 2025-08-26T20:40:03.3235339Z * [new branch] mlazos/data-ptrs2 -> origin/mlazos/data-ptrs2 2025-08-26T20:40:03.3235808Z * [new branch] mlazos/data-ptrs3 -> origin/mlazos/data-ptrs3 2025-08-26T20:40:03.3236314Z * [new branch] mlazos/dataclass-proxy -> origin/mlazos/dataclass-proxy 2025-08-26T20:40:03.3236810Z * [new branch] mlazos/dc-attrs -> origin/mlazos/dc-attrs 2025-08-26T20:40:03.3237274Z * [new branch] mlazos/dc-helion -> origin/mlazos/dc-helion 2025-08-26T20:40:03.3692721Z * [new branch] mlazos/dict-fix -> origin/mlazos/dict-fix 2025-08-26T20:40:03.3693299Z * [new branch] mlazos/disable-closures -> origin/mlazos/disable-closures 2025-08-26T20:40:03.3693814Z * [new branch] mlazos/disable-tf -> origin/mlazos/disable-tf 2025-08-26T20:40:03.3694298Z * [new branch] mlazos/dupe-fix -> origin/mlazos/dupe-fix 2025-08-26T20:40:03.3694776Z * [new branch] mlazos/dyn-batch -> origin/mlazos/dyn-batch 2025-08-26T20:40:03.3695226Z * [new branch] mlazos/evt -> origin/mlazos/evt 2025-08-26T20:40:03.3695689Z * [new branch] mlazos/exp_disable -> origin/mlazos/exp_disable 2025-08-26T20:40:03.3696202Z * [new branch] mlazos/extract-examples -> origin/mlazos/extract-examples 2025-08-26T20:40:03.3696728Z * [new branch] mlazos/foreach-op -> origin/mlazos/foreach-op 2025-08-26T20:40:03.3697182Z * [new branch] mlazos/fp8 -> origin/mlazos/fp8 2025-08-26T20:40:03.3697627Z * [new branch] mlazos/fp8-bias -> origin/mlazos/fp8-bias 2025-08-26T20:40:03.3698118Z * [new branch] mlazos/fp8-bias-fusion -> origin/mlazos/fp8-bias-fusion 2025-08-26T20:40:03.3698631Z * [new branch] mlazos/fp8-fixes -> origin/mlazos/fp8-fixes 2025-08-26T20:40:03.3699103Z * [new branch] mlazos/freezing -> origin/mlazos/freezing 2025-08-26T20:40:03.3699563Z * [new branch] mlazos/h-comp -> origin/mlazos/h-comp 2025-08-26T20:40:03.3700009Z * [new branch] mlazos/h-comp2 -> origin/mlazos/h-comp2 2025-08-26T20:40:03.3700455Z * [new branch] mlazos/hash-hop -> origin/mlazos/hash-hop 2025-08-26T20:40:03.3700902Z * [new branch] mlazos/hc -> origin/mlazos/hc 2025-08-26T20:40:03.3701349Z * [new branch] mlazos/hc-cycles -> origin/mlazos/hc-cycles 2025-08-26T20:40:03.3701806Z * [new branch] mlazos/hc-fixes -> origin/mlazos/hc-fixes 2025-08-26T20:40:03.3702283Z * [new branch] mlazos/hc-fixes3 -> origin/mlazos/hc-fixes3 2025-08-26T20:40:03.3702738Z * [new branch] mlazos/hc-fixes4 -> origin/mlazos/hc-fixes4 2025-08-26T20:40:03.3703370Z * [new branch] mlazos/hc-hf -> origin/mlazos/hc-hf 2025-08-26T20:40:03.3703821Z * [new branch] mlazos/hc-mut -> origin/mlazos/hc-mut 2025-08-26T20:40:03.3704254Z * [new branch] mlazos/hc10 -> origin/mlazos/hc10 2025-08-26T20:40:03.3704696Z * [new branch] mlazos/hc11 -> origin/mlazos/hc11 2025-08-26T20:40:03.3705114Z * [new branch] mlazos/hc12 -> origin/mlazos/hc12 2025-08-26T20:40:03.3705651Z * [new branch] mlazos/hc13 -> origin/mlazos/hc13 2025-08-26T20:40:03.3706072Z * [new branch] mlazos/hc14 -> origin/mlazos/hc14 2025-08-26T20:40:03.3706509Z * [new branch] mlazos/hc15 -> origin/mlazos/hc15 2025-08-26T20:40:03.3706935Z * [new branch] mlazos/hc2 -> origin/mlazos/hc2 2025-08-26T20:40:03.3707350Z * [new branch] mlazos/hc4 -> origin/mlazos/hc4 2025-08-26T20:40:03.3707782Z * [new branch] mlazos/hc5 -> origin/mlazos/hc5 2025-08-26T20:40:03.3708193Z * [new branch] mlazos/hc6 -> origin/mlazos/hc6 2025-08-26T20:40:03.3708613Z * [new branch] mlazos/hc7 -> origin/mlazos/hc7 2025-08-26T20:40:03.3709038Z * [new branch] mlazos/hc8 -> origin/mlazos/hc8 2025-08-26T20:40:03.3709448Z * [new branch] mlazos/hc9 -> origin/mlazos/hc9 2025-08-26T20:40:03.3709902Z * [new branch] mlazos/hc_baseline2 -> origin/mlazos/hc_baseline2 2025-08-26T20:40:03.3710370Z * [new branch] mlazos/hop-modes -> origin/mlazos/hop-modes 2025-08-26T20:40:03.3710874Z * [new branch] mlazos/init-per-param -> origin/mlazos/init-per-param 2025-08-26T20:40:03.3711382Z * [new branch] mlazos/init_per_param -> origin/mlazos/init_per_param 2025-08-26T20:40:03.3711880Z * [new branch] mlazos/less-guards -> origin/mlazos/less-guards 2025-08-26T20:40:03.3712393Z * [new branch] mlazos/lr-composibility -> origin/mlazos/lr-composibility 2025-08-26T20:40:03.3712867Z * [new branch] mlazos/main -> origin/mlazos/main 2025-08-26T20:40:03.3713376Z * [new branch] mlazos/main-test-enablement -> origin/mlazos/main-test-enablement 2025-08-26T20:40:03.3713874Z * [new branch] mlazos/main2 -> origin/mlazos/main2 2025-08-26T20:40:03.3714309Z * [new branch] mlazos/mcg -> origin/mlazos/mcg 2025-08-26T20:40:03.3714745Z * [new branch] mlazos/mcg2 -> origin/mlazos/mcg2 2025-08-26T20:40:03.3715196Z * [new branch] mlazos/meta-guards -> origin/mlazos/meta-guards 2025-08-26T20:40:03.3715685Z * [new branch] mlazos/mlazos/ck2 -> origin/mlazos/mlazos/ck2 2025-08-26T20:40:03.4202683Z * [new branch] mlazos/mlazos/foreach-map-adam -> origin/mlazos/mlazos/foreach-map-adam 2025-08-26T20:40:03.4203465Z * [new branch] mlazos/mlazos/tf-mode-backup -> origin/mlazos/mlazos/tf-mode-backup 2025-08-26T20:40:03.4203997Z * [new branch] mlazos/mod-fix -> origin/mlazos/mod-fix 2025-08-26T20:40:03.4204459Z * [new branch] mlazos/mode-fix -> origin/mlazos/mode-fix 2025-08-26T20:40:03.4204936Z * [new branch] mlazos/more-tests -> origin/mlazos/more-tests 2025-08-26T20:40:03.4205422Z * [new branch] mlazos/no-cpp -> origin/mlazos/no-cpp 2025-08-26T20:40:03.4205964Z * [new branch] mlazos/no-init-group-handling -> origin/mlazos/no-init-group-handling 2025-08-26T20:40:03.4206501Z * [new branch] mlazos/offsets -> origin/mlazos/offsets 2025-08-26T20:40:03.4207158Z * [new branch] mlazos/opt-bench-exp2 -> origin/mlazos/opt-bench-exp2 2025-08-26T20:40:03.4207647Z * [new branch] mlazos/opt-incr -> origin/mlazos/opt-incr 2025-08-26T20:40:03.4208127Z * [new branch] mlazos/proxy-ctors -> origin/mlazos/proxy-ctors 2025-08-26T20:40:03.4208616Z * [new branch] mlazos/quant-fix -> origin/mlazos/quant-fix 2025-08-26T20:40:03.4209108Z * [new branch] mlazos/rm-buf-names -> origin/mlazos/rm-buf-names 2025-08-26T20:40:03.4210159Z * [new branch] mlazos/rm-code -> origin/mlazos/rm-code 2025-08-26T20:40:03.4210622Z * [new branch] mlazos/rm-spam -> origin/mlazos/rm-spam 2025-08-26T20:40:03.4211054Z * [new branch] mlazos/rtp -> origin/mlazos/rtp 2025-08-26T20:40:03.4211540Z * [new branch] mlazos/static-idx-dbg -> origin/mlazos/static-idx-dbg 2025-08-26T20:40:03.4212086Z * [new branch] mlazos/static-inputs-log -> origin/mlazos/static-inputs-log 2025-08-26T20:40:03.4212617Z * [new branch] mlazos/sub-param-fix -> origin/mlazos/sub-param-fix 2025-08-26T20:40:03.4213107Z * [new branch] mlazos/td-fix2 -> origin/mlazos/td-fix2 2025-08-26T20:40:03.4213592Z * [new branch] mlazos/tensor-hasattr2 -> origin/mlazos/tensor-hasattr2 2025-08-26T20:40:03.4214079Z * [new branch] mlazos/test -> origin/mlazos/test 2025-08-26T20:40:03.4214525Z * [new branch] mlazos/tf-mode -> origin/mlazos/tf-mode 2025-08-26T20:40:03.4215002Z * [new branch] mlazos/tf-mode-backup2 -> origin/mlazos/tf-mode-backup2 2025-08-26T20:40:03.4215517Z * [new branch] mlazos/tf-mode-reland -> origin/mlazos/tf-mode-reland 2025-08-26T20:40:03.4216022Z * [new branch] mlazos/tf-mode-reland2 -> origin/mlazos/tf-mode-reland2 2025-08-26T20:40:03.4216546Z * [new branch] mlazos/tf-mode-reland3 -> origin/mlazos/tf-mode-reland3 2025-08-26T20:40:03.4217030Z * [new branch] mlazos/topo-fix -> origin/mlazos/topo-fix 2025-08-26T20:40:03.4217528Z * [new branch] mlazos/triton-no-epi -> origin/mlazos/triton-no-epi 2025-08-26T20:40:03.4218024Z * [new branch] mlazos/tune-proto -> origin/mlazos/tune-proto 2025-08-26T20:40:03.4218500Z * [new branch] mlazos/tuple-fixes -> origin/mlazos/tuple-fixes 2025-08-26T20:40:03.4219000Z * [new branch] mlazos/tuple-fixes2 -> origin/mlazos/tuple-fixes2 2025-08-26T20:40:03.4219503Z * [new branch] mlazos/tuple-handling -> origin/mlazos/tuple-handling 2025-08-26T20:40:03.4220008Z * [new branch] mlazos/user-streams -> origin/mlazos/user-streams 2025-08-26T20:40:03.4220495Z * [new branch] mlazos/vary-beta -> origin/mlazos/vary-beta 2025-08-26T20:40:03.4220962Z * [new branch] mlazos/vary-beta2 -> origin/mlazos/vary-beta2 2025-08-26T20:40:03.4221447Z * [new branch] mlazos/weird-perf1 -> origin/mlazos/weird-perf1 2025-08-26T20:40:03.4221921Z * [new branch] mm_out_dtype_compile -> origin/mm_out_dtype_compile 2025-08-26T20:40:03.4222407Z * [new branch] modify-setupvllm -> origin/modify-setupvllm 2025-08-26T20:40:03.4222919Z * [new branch] move-theme-out-docker -> origin/move-theme-out-docker 2025-08-26T20:40:03.4223410Z * [new branch] mps-linear-1d -> origin/mps-linear-1d 2025-08-26T20:40:03.4223860Z * [new branch] msaroufim/be1 -> origin/msaroufim/be1 2025-08-26T20:40:03.4224311Z * [new branch] msaroufim/cn_path -> origin/msaroufim/cn_path 2025-08-26T20:40:03.4224849Z * [new branch] msaroufim/dtensorfusedadam -> origin/msaroufim/dtensorfusedadam 2025-08-26T20:40:03.4225490Z * [new branch] msaroufim/reduce -> origin/msaroufim/reduce 2025-08-26T20:40:03.4225973Z * [new branch] mtia/basic-cmake -> origin/mtia/basic-cmake 2025-08-26T20:40:03.4226421Z * [new branch] muon_dev -> origin/muon_dev 2025-08-26T20:40:03.4226829Z * [new branch] muon_dev_1 -> origin/muon_dev_1 2025-08-26T20:40:03.4652500Z * [new branch] new-modifiy-setupvllm -> origin/new-modifiy-setupvllm 2025-08-26T20:40:03.4653216Z * [new branch] new-setupvllm -> origin/new-setupvllm 2025-08-26T20:40:03.4653689Z * [new branch] newtest-base -> origin/newtest-base 2025-08-26T20:40:03.4655188Z * [new branch] ngimel/cat_perf -> origin/ngimel/cat_perf 2025-08-26T20:40:03.4655751Z * [new branch] ngimel/error_index_list -> origin/ngimel/error_index_list 2025-08-26T20:40:03.4656273Z * [new branch] ngimel/fabric_check -> origin/ngimel/fabric_check 2025-08-26T20:40:03.4656802Z * [new branch] ngimel/fabric_driver_version -> origin/ngimel/fabric_driver_version 2025-08-26T20:40:03.4657342Z * [new branch] ngimel/fabric_fix -> origin/ngimel/fabric_fix 2025-08-26T20:40:03.4657824Z * [new branch] ngimel/fabric_symm -> origin/ngimel/fabric_symm 2025-08-26T20:40:03.4658347Z * [new branch] ngimel/fix_driver_init_error -> origin/ngimel/fix_driver_init_error 2025-08-26T20:40:03.4658915Z * [new branch] ngimel/fix_nccl_segment_seg -> origin/ngimel/fix_nccl_segment_seg 2025-08-26T20:40:03.4659400Z * [new branch] ngimel/gg_new -> origin/ngimel/gg_new 2025-08-26T20:40:03.4660907Z * [new branch] ngimel/grouped_mm_checks -> origin/ngimel/grouped_mm_checks 2025-08-26T20:40:03.4661451Z * [new branch] ngimel/guardfabric -> origin/ngimel/guardfabric 2025-08-26T20:40:03.4661934Z * [new branch] ngimel/modeguard -> origin/ngimel/modeguard 2025-08-26T20:40:03.4662424Z * [new branch] ngimel/multicast_fix -> origin/ngimel/multicast_fix 2025-08-26T20:40:03.4662936Z * [new branch] ngimel/unbind_multimem -> origin/ngimel/unbind_multimem 2025-08-26T20:40:03.4663411Z * [new branch] nightly -> origin/nightly 2025-08-26T20:40:03.4663895Z * [new branch] nmacchioni-patch-10 -> origin/nmacchioni-patch-10 2025-08-26T20:40:03.4664406Z * [new branch] nmacchioni-patch-7 -> origin/nmacchioni-patch-7 2025-08-26T20:40:03.4664932Z * [new branch] nmacchioni-patch-8 -> origin/nmacchioni-patch-8 2025-08-26T20:40:03.4666412Z * [new branch] nmacchioni-patch-9 -> origin/nmacchioni-patch-9 2025-08-26T20:40:03.4666937Z * [new branch] nullplay_fuse_matmul -> origin/nullplay_fuse_matmul 2025-08-26T20:40:03.4667595Z * [new branch] nweidia/enable-B200-inductor-nightly-ci -> origin/nweidia/enable-B200-inductor-nightly-ci 2025-08-26T20:40:03.4668196Z * [new branch] one-off -> origin/one-off 2025-08-26T20:40:03.4668647Z * [new branch] orig/release/1.10 -> origin/orig/release/1.10 2025-08-26T20:40:03.4669112Z * [new branch] orig/release/1.11 -> origin/orig/release/1.11 2025-08-26T20:40:03.4669591Z * [new branch] orig/release/1.12 -> origin/orig/release/1.12 2025-08-26T20:40:03.4670065Z * [new branch] orig/release/1.13 -> origin/orig/release/1.13 2025-08-26T20:40:03.4670538Z * [new branch] orig/release/1.6 -> origin/orig/release/1.6 2025-08-26T20:40:03.4671001Z * [new branch] orig/release/1.7 -> origin/orig/release/1.7 2025-08-26T20:40:03.4672749Z * [new branch] orig/release/1.8 -> origin/orig/release/1.8 2025-08-26T20:40:03.4673219Z * [new branch] orig/release/1.9 -> origin/orig/release/1.9 2025-08-26T20:40:03.4673673Z * [new branch] orig/release/2.0 -> origin/orig/release/2.0 2025-08-26T20:40:03.4674127Z * [new branch] orig/release/2.1 -> origin/orig/release/2.1 2025-08-26T20:40:03.4674587Z * [new branch] orig/release/2.2 -> origin/orig/release/2.2 2025-08-26T20:40:03.4675136Z * [new branch] orig/release/2.3 -> origin/orig/release/2.3 2025-08-26T20:40:03.4675596Z * [new branch] orig/release/2.4 -> origin/orig/release/2.4 2025-08-26T20:40:03.4676052Z * [new branch] orig/release/2.5 -> origin/orig/release/2.5 2025-08-26T20:40:03.4676518Z * [new branch] orig/release/2.6 -> origin/orig/release/2.6 2025-08-26T20:40:03.4677967Z * [new branch] orig/release/2.7 -> origin/orig/release/2.7 2025-08-26T20:40:03.4678433Z * [new branch] orig/release/2.8 -> origin/orig/release/2.8 2025-08-26T20:40:03.4678904Z * [new branch] oulgen/fx_graph -> origin/oulgen/fx_graph 2025-08-26T20:40:03.4679358Z * [new branch] padded-tensor -> origin/padded-tensor 2025-08-26T20:40:03.4679806Z * [new branch] parallel_cat -> origin/parallel_cat 2025-08-26T20:40:03.4680236Z * [new branch] pca2 -> origin/pca2 2025-08-26T20:40:03.4680667Z * [new branch] pianpwk-patch-1 -> origin/pianpwk-patch-1 2025-08-26T20:40:03.5112132Z * [new branch] pianpwk/backed_size_oblivious_export -> origin/pianpwk/backed_size_oblivious_export 2025-08-26T20:40:03.5112807Z * [new branch] pianpwk/dde_repeat_cat -> origin/pianpwk/dde_repeat_cat 2025-08-26T20:40:03.5113398Z * [new branch] pianpwk/invalidate_fake_memo -> origin/pianpwk/invalidate_fake_memo 2025-08-26T20:40:03.5113951Z * [new branch] pianpwk/max_1_strides -> origin/pianpwk/max_1_strides 2025-08-26T20:40:03.5114445Z * [new branch] pianpwk/nonzero_memo -> origin/pianpwk/nonzero_memo 2025-08-26T20:40:03.5115064Z * [new branch] pianpwk/oblivious_reshape_view_better -> origin/pianpwk/oblivious_reshape_view_better 2025-08-26T20:40:03.5115726Z * [new branch] pianpwk/oblivious_should_swap -> origin/pianpwk/oblivious_should_swap 2025-08-26T20:40:03.5116330Z * [new branch] pianpwk/oblivious_slice_forward -> origin/pianpwk/oblivious_slice_forward 2025-08-26T20:40:03.5116920Z * [new branch] pianpwk/oblivious_where -> origin/pianpwk/oblivious_where 2025-08-26T20:40:03.5117451Z * [new branch] pianpwk/param_static_pgo -> origin/pianpwk/param_static_pgo 2025-08-26T20:40:03.5118001Z * [new branch] pianpwk/pre_forward_hook -> origin/pianpwk/pre_forward_hook 2025-08-26T20:40:03.5118581Z * [new branch] pianpwk/remove_guard_fail_break -> origin/pianpwk/remove_guard_fail_break 2025-08-26T20:40:03.5119263Z * [new branch] pianpwk/slice_fresh_symbols -> origin/pianpwk/slice_fresh_symbols 2025-08-26T20:40:03.5119851Z * [new branch] pianpwk/test_slice_fake_impl -> origin/pianpwk/test_slice_fake_impl 2025-08-26T20:40:03.5120449Z * [new branch] pianpwk/unbacked_channels_last -> origin/pianpwk/unbacked_channels_last 2025-08-26T20:40:03.5121048Z * [new branch] pianpwk/unbacked_safe_conv1d -> origin/pianpwk/unbacked_safe_conv1d 2025-08-26T20:40:03.5121615Z * [new branch] pianpwk/unbacked_sdpa_flash -> origin/pianpwk/unbacked_sdpa_flash 2025-08-26T20:40:03.5122196Z * [new branch] pianpwk/unbacked_should_swap -> origin/pianpwk/unbacked_should_swap 2025-08-26T20:40:03.5123049Z * [new branch] pianpwk/unbacked_should_swap_2 -> origin/pianpwk/unbacked_should_swap_2 2025-08-26T20:40:03.5123655Z * [new branch] pianpwk/unbacked_slice_binding -> origin/pianpwk/unbacked_slice_binding 2025-08-26T20:40:03.5124264Z * [new branch] pianpwk/unbacked_slice_forward -> origin/pianpwk/unbacked_slice_forward 2025-08-26T20:40:03.5124818Z * [new branch] pianpwk/wan21_reshape -> origin/pianpwk/wan21_reshape 2025-08-26T20:40:03.5125491Z * [new branch] pianpwk/whitelist_optimizer -> origin/pianpwk/whitelist_optimizer 2025-08-26T20:40:03.5126016Z * [new branch] pin-torchao -> origin/pin-torchao 2025-08-26T20:40:03.5126504Z * [new branch] piz/fall_back_missing_0716 -> origin/piz/fall_back_missing_0716 2025-08-26T20:40:03.5127005Z * [new branch] piz/fix_sort_ -> origin/piz/fix_sort_ 2025-08-26T20:40:03.5127495Z * [new branch] piz/improve_scatter_0808 -> origin/piz/improve_scatter_0808 2025-08-26T20:40:03.5127995Z * [new branch] pool-separate -> origin/pool-separate 2025-08-26T20:40:03.5128438Z * [new branch] pr-156087 -> origin/pr-156087 2025-08-26T20:40:03.5128842Z * [new branch] pr/131860 -> origin/pr/131860 2025-08-26T20:40:03.5129291Z * [new branch] predispatch_to -> origin/predispatch_to 2025-08-26T20:40:03.5129741Z * [new branch] pt-opt-cuda3 -> origin/pt-opt-cuda3 2025-08-26T20:40:03.5130244Z * [new branch] pt2e-cache-model-device -> origin/pt2e-cache-model-device 2025-08-26T20:40:03.5130751Z * [new branch] pyobjectslot -> origin/pyobjectslot 2025-08-26T20:40:03.5131243Z * [new branch] python_compiled_autograd -> origin/python_compiled_autograd 2025-08-26T20:40:03.5131786Z * [new branch] qchip/export-D54134695 -> origin/qchip/export-D54134695 2025-08-26T20:40:03.5132256Z * [new branch] quint-bits -> origin/quint-bits 2025-08-26T20:40:03.5132692Z * [new branch] release/1.10 -> origin/release/1.10 2025-08-26T20:40:03.5133120Z * [new branch] release/1.11 -> origin/release/1.11 2025-08-26T20:40:03.5133560Z * [new branch] release/1.12 -> origin/release/1.12 2025-08-26T20:40:03.5133991Z * [new branch] release/1.13 -> origin/release/1.13 2025-08-26T20:40:03.5134417Z * [new branch] release/1.4 -> origin/release/1.4 2025-08-26T20:40:03.5134847Z * [new branch] release/1.4.1 -> origin/release/1.4.1 2025-08-26T20:40:03.5135277Z * [new branch] release/1.5 -> origin/release/1.5 2025-08-26T20:40:03.5135710Z * [new branch] release/1.6 -> origin/release/1.6 2025-08-26T20:40:03.5136141Z * [new branch] release/1.7 -> origin/release/1.7 2025-08-26T20:40:03.5530610Z * [new branch] release/1.8 -> origin/release/1.8 2025-08-26T20:40:03.5531200Z * [new branch] release/1.9 -> origin/release/1.9 2025-08-26T20:40:03.5531675Z * [new branch] release/2.0 -> origin/release/2.0 2025-08-26T20:40:03.5532170Z * [new branch] release/2.1 -> origin/release/2.1 2025-08-26T20:40:03.5532742Z * [new branch] release/2.2 -> origin/release/2.2 2025-08-26T20:40:03.5533208Z * [new branch] release/2.3 -> origin/release/2.3 2025-08-26T20:40:03.5533685Z * [new branch] release/2.4 -> origin/release/2.4 2025-08-26T20:40:03.5534196Z * [new branch] release/2.5 -> origin/release/2.5 2025-08-26T20:40:03.5534855Z * [new branch] release/2.6 -> origin/release/2.6 2025-08-26T20:40:03.5535379Z * [new branch] release/2.7 -> origin/release/2.7 2025-08-26T20:40:03.5535856Z * [new branch] release/2.8 -> origin/release/2.8 2025-08-26T20:40:03.5536334Z * [new branch] release_notes -> origin/release_notes 2025-08-26T20:40:03.5536931Z * [new branch] remove-actionable-label -> origin/remove-actionable-label 2025-08-26T20:40:03.5537618Z * [new branch] remove-ao -> origin/remove-ao 2025-08-26T20:40:03.5538273Z * [new branch] replace-pytorch-labs-20250812-195836 -> origin/replace-pytorch-labs-20250812-195836 2025-08-26T20:40:03.5539135Z * [new branch] replace-pytorch-labs-20250812-200248 -> origin/replace-pytorch-labs-20250812-200248 2025-08-26T20:40:03.5539978Z * [new branch] replace-pytorch-labs-20250812-200324 -> origin/replace-pytorch-labs-20250812-200324 2025-08-26T20:40:03.5540702Z * [new branch] replace-pytorch-labs-20250812-204020 -> origin/replace-pytorch-labs-20250812-204020 2025-08-26T20:40:03.5541437Z * [new branch] replace-pytorch-labs-20250812-204125 -> origin/replace-pytorch-labs-20250812-204125 2025-08-26T20:40:03.5542167Z * [new branch] replace-pytorch-labs-20250812-205624 -> origin/replace-pytorch-labs-20250812-205624 2025-08-26T20:40:03.5542922Z * [new branch] revert-131069-gh/krzysztofjordan/1/head -> origin/revert-131069-gh/krzysztofjordan/1/head 2025-08-26T20:40:03.5543648Z * [new branch] revert-131469-gh/andrewor14/51/head -> origin/revert-131469-gh/andrewor14/51/head 2025-08-26T20:40:03.5544301Z * [new branch] revert-156870-gh/skarjala/3/head -> origin/revert-156870-gh/skarjala/3/head 2025-08-26T20:40:03.5545152Z * [new branch] revert-157914-cherry-pick-157503-by-pytorch_bot_bot_ -> origin/revert-157914-cherry-pick-157503-by-pytorch_bot_bot_ 2025-08-26T20:40:03.5546033Z * [new branch] revert-direct-updates -> origin/revert-direct-updates 2025-08-26T20:40:03.5546540Z * [new branch] rocm-monitoring -> origin/rocm-monitoring 2025-08-26T20:40:03.5547202Z * [new branch] ryanguo99/cleanup-dynamo-expected-failures -> origin/ryanguo99/cleanup-dynamo-expected-failures 2025-08-26T20:40:03.5547901Z * [new branch] ryanguo99/fix-closure-var -> origin/ryanguo99/fix-closure-var 2025-08-26T20:40:03.5548444Z * [new branch] rzou/faketensor_bench -> origin/rzou/faketensor_bench 2025-08-26T20:40:03.5548917Z * [new branch] rzou/njt -> origin/rzou/njt 2025-08-26T20:40:03.5549347Z * [new branch] rzou/operator -> origin/rzou/operator 2025-08-26T20:40:03.5549792Z * [new branch] rzou/pca -> origin/rzou/pca 2025-08-26T20:40:03.5550220Z * [new branch] rzou/realprop -> origin/rzou/realprop 2025-08-26T20:40:03.5550689Z * [new branch] rzou/setup_context -> origin/rzou/setup_context 2025-08-26T20:40:03.5551356Z * [new branch] sanchitintel/refactor_aten_int8_woq_gemm -> origin/sanchitintel/refactor_aten_int8_woq_gemm 2025-08-26T20:40:03.5552312Z * [new branch] sanchitintel/weird_thing_with_test_cpu_select_algorithm -> origin/sanchitintel/weird_thing_with_test_cpu_select_algorithm 2025-08-26T20:40:03.5553089Z * [new branch] sapling-pr-archive-SS-JIA -> origin/sapling-pr-archive-SS-JIA 2025-08-26T20:40:03.5553573Z * [new branch] save -> origin/save 2025-08-26T20:40:03.5553981Z * [new branch] sdym/2.5.1 -> origin/sdym/2.5.1 2025-08-26T20:40:03.5554451Z * [new branch] seemethere-patch-1 -> origin/seemethere-patch-1 2025-08-26T20:40:03.5555054Z * [new branch] setup-torchci -> origin/setup-torchci 2025-08-26T20:40:03.5555497Z * [new branch] setupvllm -> origin/setupvllm 2025-08-26T20:40:03.5555939Z * [new branch] share_and_pin_fork -> origin/share_and_pin_fork 2025-08-26T20:40:03.5556446Z * [new branch] shengf/fx-xform-perf -> origin/shengf/fx-xform-perf 2025-08-26T20:40:03.5963711Z * [new branch] shikaili_fp8_allgather -> origin/shikaili_fp8_allgather 2025-08-26T20:40:03.5964397Z * [new branch] shoumikhin-patch-12 -> origin/shoumikhin-patch-12 2025-08-26T20:40:03.5964999Z * [new branch] simplify-fq-per-channel -> origin/simplify-fq-per-channel 2025-08-26T20:40:03.5965580Z * [new branch] solve-accuracy-fix -> origin/solve-accuracy-fix 2025-08-26T20:40:03.5966060Z * [new branch] sqzhang/flight4 -> origin/sqzhang/flight4 2025-08-26T20:40:03.5966565Z * [new branch] sqzhang/flight4plus -> origin/sqzhang/flight4plus 2025-08-26T20:40:03.5967085Z * [new branch] sraikund/record_funct_test -> origin/sraikund/record_funct_test 2025-08-26T20:40:03.5967592Z * [new branch] sraikund16/test -> origin/sraikund16/test 2025-08-26T20:40:03.5968116Z * [new branch] stablize-compilation-time -> origin/stablize-compilation-time 2025-08-26T20:40:03.5968679Z * [new branch] standalone-templates -> origin/standalone-templates 2025-08-26T20:40:03.5969223Z * [new branch] standalone_package_weights -> origin/standalone_package_weights 2025-08-26T20:40:03.5969741Z * [new branch] starterTaskUpdate -> origin/starterTaskUpdate 2025-08-26T20:40:03.5970213Z * [new branch] subgraph_fuse -> origin/subgraph_fuse 2025-08-26T20:40:03.5970761Z * [new branch] support-uv-in-collect_env -> origin/support-uv-in-collect_env 2025-08-26T20:40:03.5971310Z * [new branch] sve-poc -> origin/sve-poc 2025-08-26T20:40:03.5971852Z * [new branch] svekars-patch-1 -> origin/svekars-patch-1 2025-08-26T20:40:03.5972344Z * [new branch] switch-bn -> origin/switch-bn 2025-08-26T20:40:03.5972901Z * [new branch] sympy-bottleneck-repro -> origin/sympy-bottleneck-repro 2025-08-26T20:40:03.5973542Z * [new branch] tenpercent/ck_inductor_gfx950 -> origin/tenpercent/ck_inductor_gfx950 2025-08-26T20:40:03.5974208Z * [new branch] tensordict_integration -> origin/tensordict_integration 2025-08-26T20:40:03.5974741Z * [new branch] test-7054 -> origin/test-7054 2025-08-26T20:40:03.5975376Z * [new branch] test-half-migration-internally -> origin/test-half-migration-internally 2025-08-26T20:40:03.5976077Z * [new branch] test-move-conda-builds -> origin/test-move-conda-builds 2025-08-26T20:40:03.5976692Z * [new branch] test-myst-markdown-docstring -> origin/test-myst-markdown-docstring 2025-08-26T20:40:03.5977309Z * [new branch] test-old -> origin/test-old 2025-08-26T20:40:03.5977877Z * [new branch] test-vec-migration-internally -> origin/test-vec-migration-internally 2025-08-26T20:40:03.5978513Z * [new branch] test/bmm_heur -> origin/test/bmm_heur 2025-08-26T20:40:03.5979019Z * [new branch] test/inductor -> origin/test/inductor 2025-08-26T20:40:03.5979611Z * [new branch] tianren/flex_paged_attn_fix -> origin/tianren/flex_paged_attn_fix 2025-08-26T20:40:03.5980225Z * [new branch] tidy_performance_cyy -> origin/tidy_performance_cyy 2025-08-26T20:40:03.5980769Z * [new branch] torchtitan_ep -> origin/torchtitan_ep 2025-08-26T20:40:03.5981483Z * [new branch] trace_fsdp_torchtune_lora -> origin/trace_fsdp_torchtune_lora 2025-08-26T20:40:03.5982069Z * [new branch] traceable_fsdp_unit_tests -> origin/traceable_fsdp_unit_tests 2025-08-26T20:40:03.5982663Z * [new branch] tree_loop_vec_base -> origin/tree_loop_vec_base 2025-08-26T20:40:03.5983169Z * [new branch] tree_vec_base -> origin/tree_vec_base 2025-08-26T20:40:03.5983686Z * [new branch] triton-update -> origin/triton-update 2025-08-26T20:40:03.5984283Z * [new branch] triton_kernel -> origin/triton_kernel 2025-08-26T20:40:03.5984823Z * [new branch] triton_kernel_perf -> origin/triton_kernel_perf 2025-08-26T20:40:03.5985357Z * [new branch] try-runllm -> origin/try-runllm 2025-08-26T20:40:03.5985832Z * [new branch] tt_pkg_1908 -> origin/tt_pkg_1908 2025-08-26T20:40:03.5986451Z * [new branch] tweak-transformer-dependabot -> origin/tweak-transformer-dependabot 2025-08-26T20:40:03.5987029Z * [new branch] type_dec -> origin/type_dec 2025-08-26T20:40:03.5987619Z * [new branch] udate-sphinx-dependancies -> origin/udate-sphinx-dependancies 2025-08-26T20:40:03.5988403Z * [new branch] update-audio-commit-hash/16583472358-1693-1 -> origin/update-audio-commit-hash/16583472358-1693-1 2025-08-26T20:40:03.5989215Z * [new branch] update-audio-commit-hash/16663082088-1700-1 -> origin/update-audio-commit-hash/16663082088-1700-1 2025-08-26T20:40:03.5990002Z * [new branch] update-audio-commit-hash/16737365217-1704-1 -> origin/update-audio-commit-hash/16737365217-1704-1 2025-08-26T20:40:03.6294408Z * [new branch] update-audio-commit-hash/16791960928-1711-1 -> origin/update-audio-commit-hash/16791960928-1711-1 2025-08-26T20:40:03.6295343Z * [new branch] update-audio-commit-hash/16818882925-1712-1 -> origin/update-audio-commit-hash/16818882925-1712-1 2025-08-26T20:40:03.6296141Z * [new branch] update-audio-commit-hash/16895560422-1720-1 -> origin/update-audio-commit-hash/16895560422-1720-1 2025-08-26T20:40:03.6296933Z * [new branch] update-audio-commit-hash/16924174496-1738-1 -> origin/update-audio-commit-hash/16924174496-1738-1 2025-08-26T20:40:03.6297717Z * [new branch] update-audio-commit-hash/17002010821-1749-1 -> origin/update-audio-commit-hash/17002010821-1749-1 2025-08-26T20:40:03.6298506Z * [new branch] update-audio-commit-hash/17056004427-1766-1 -> origin/update-audio-commit-hash/17056004427-1766-1 2025-08-26T20:40:03.6299300Z * [new branch] update-audio-commit-hash/17085054029-1767-1 -> origin/update-audio-commit-hash/17085054029-1767-1 2025-08-26T20:40:03.6300080Z * [new branch] update-audio-commit-hash/17142507405-1771-1 -> origin/update-audio-commit-hash/17142507405-1771-1 2025-08-26T20:40:03.6300970Z * [new branch] update-audio-commit-hash/17168762740-1773-1 -> origin/update-audio-commit-hash/17168762740-1773-1 2025-08-26T20:40:03.6301669Z * [new branch] update-dynamic-shapes-doc -> origin/update-dynamic-shapes-doc 2025-08-26T20:40:03.6302409Z * [new branch] update-executorch-commit-hash/15694981040-1626-1 -> origin/update-executorch-commit-hash/15694981040-1626-1 2025-08-26T20:40:03.6303269Z * [new branch] update-triton-commit-hash/13663274526-1487-2 -> origin/update-triton-commit-hash/13663274526-1487-2 2025-08-26T20:40:03.6304073Z * [new branch] update-vision-commit-hash/15336342773-1607-1 -> origin/update-vision-commit-hash/15336342773-1607-1 2025-08-26T20:40:03.6304866Z * [new branch] update-vllm-commit-hash/16545403308-1687-1 -> origin/update-vllm-commit-hash/16545403308-1687-1 2025-08-26T20:40:03.6305630Z * [new branch] update-vllm-commit-hash/16557202787-1688-1 -> origin/update-vllm-commit-hash/16557202787-1688-1 2025-08-26T20:40:03.6306644Z * [new branch] update-vllm-commit-hash/16583472358-1693-1 -> origin/update-vllm-commit-hash/16583472358-1693-1 2025-08-26T20:40:03.6307422Z * [new branch] update-vllm-commit-hash/16663082088-1700-1 -> origin/update-vllm-commit-hash/16663082088-1700-1 2025-08-26T20:40:03.6308190Z * [new branch] update-vllm-commit-hash/16737365217-1704-1 -> origin/update-vllm-commit-hash/16737365217-1704-1 2025-08-26T20:40:03.6309045Z * [new branch] update-vllm-commit-hash/16843157111-1713-1 -> origin/update-vllm-commit-hash/16843157111-1713-1 2025-08-26T20:40:03.6309826Z * [new branch] update-vllm-commit-hash/16855312394-1714-1 -> origin/update-vllm-commit-hash/16855312394-1714-1 2025-08-26T20:40:03.6310583Z * [new branch] update-vllm-commit-hash/16924174496-1738-1 -> origin/update-vllm-commit-hash/16924174496-1738-1 2025-08-26T20:40:03.6311355Z * [new branch] update-vllm-commit-hash/16952608705-1745-1 -> origin/update-vllm-commit-hash/16952608705-1745-1 2025-08-26T20:40:03.6312175Z * [new branch] update-vllm-commit-hash/16979836546-1748-1 -> origin/update-vllm-commit-hash/16979836546-1748-1 2025-08-26T20:40:03.6312988Z * [new branch] update-vllm-commit-hash/17014576881-1756-1 -> origin/update-vllm-commit-hash/17014576881-1756-1 2025-08-26T20:40:03.6313749Z * [new branch] update-vllm-commit-hash/17027830869-1761-1 -> origin/update-vllm-commit-hash/17027830869-1761-1 2025-08-26T20:40:03.6314519Z * [new branch] update-vllm-commit-hash/17056004427-1766-1 -> origin/update-vllm-commit-hash/17056004427-1766-1 2025-08-26T20:40:03.6315276Z * [new branch] update-vllm-commit-hash/17085054029-1767-1 -> origin/update-vllm-commit-hash/17085054029-1767-1 2025-08-26T20:40:03.6316050Z * [new branch] update-vllm-commit-hash/17113610216-1768-1 -> origin/update-vllm-commit-hash/17113610216-1768-1 2025-08-26T20:40:03.6316816Z * [new branch] update-vllm-commit-hash/17142507405-1771-1 -> origin/update-vllm-commit-hash/17142507405-1771-1 2025-08-26T20:40:03.6317624Z * [new branch] update-vllm-commit-hash/17181878974-1774-1 -> origin/update-vllm-commit-hash/17181878974-1774-1 2025-08-26T20:40:03.6318428Z * [new branch] update-xla-commit-hash/16260974441-194-1 -> origin/update-xla-commit-hash/16260974441-194-1 2025-08-26T20:40:03.6319168Z * [new branch] update-xla-commit-hash/16717126778-197-1 -> origin/update-xla-commit-hash/16717126778-197-1 2025-08-26T20:40:03.6319906Z * [new branch] update-xla-commit-hash/16873912760-198-1 -> origin/update-xla-commit-hash/16873912760-198-1 2025-08-26T20:40:03.6746360Z * [new branch] update-xla-commit-hash/17034266655-199-1 -> origin/update-xla-commit-hash/17034266655-199-1 2025-08-26T20:40:03.6747157Z * [new branch] update-xla-commit-hash/17202464405-200-1 -> origin/update-xla-commit-hash/17202464405-200-1 2025-08-26T20:40:03.6747912Z * [new branch] update_docs_torch_multinomial_issue#125388 -> origin/update_docs_torch_multinomial_issue#125388 2025-08-26T20:40:03.6748563Z * [new branch] update_executorch_pin -> origin/update_executorch_pin 2025-08-26T20:40:03.6749106Z * [new branch] update_slow_tests_1722488736 -> origin/update_slow_tests_1722488736 2025-08-26T20:40:03.6749656Z * [new branch] update_slow_tests_1722879173 -> origin/update_slow_tests_1722879173 2025-08-26T20:40:03.6750208Z * [new branch] update_slow_tests_1752478971 -> origin/update_slow_tests_1752478971 2025-08-26T20:40:03.6750742Z * [new branch] update_slow_tests_1755502951 -> origin/update_slow_tests_1755502951 2025-08-26T20:40:03.6751281Z * [new branch] update_slow_tests_1756107664 -> origin/update_slow_tests_1756107664 2025-08-26T20:40:03.6751958Z * [new branch] update_submodule_FBGEMM -> origin/update_submodule_FBGEMM 2025-08-26T20:40:03.6752486Z * [new branch] update_submodule_kineto -> origin/update_submodule_kineto 2025-08-26T20:40:03.6753038Z * [new branch] update_submodule_tensorpipe -> origin/update_submodule_tensorpipe 2025-08-26T20:40:03.6753526Z * [new branch] v0.1.2 -> origin/v0.1.2 2025-08-26T20:40:03.6753948Z * [new branch] v1.0.1 -> origin/v1.0.1 2025-08-26T20:40:03.6754445Z * [new branch] v1.0.3 -> origin/v1.0.3 2025-08-26T20:40:03.6754837Z * [new branch] v1.1.0 -> origin/v1.1.0 2025-08-26T20:40:03.6755243Z * [new branch] v1.2.0 -> origin/v1.2.0 2025-08-26T20:40:03.6755635Z * [new branch] v1.3.0 -> origin/v1.3.0 2025-08-26T20:40:03.6756036Z * [new branch] v1.3.1 -> origin/v1.3.1 2025-08-26T20:40:03.6756440Z * [new branch] validate_fn -> origin/validate_fn 2025-08-26T20:40:03.6756888Z * [new branch] validations_2.6 -> origin/validations_2.6 2025-08-26T20:40:03.6757353Z * [new branch] validations_2.8 -> origin/validations_2.8 2025-08-26T20:40:03.6757809Z * [new branch] viable/strict -> origin/viable/strict 2025-08-26T20:40:03.6758256Z * [new branch] vllmbuildci -> origin/vllmbuildci 2025-08-26T20:40:03.6758672Z * [new branch] vllmpin -> origin/vllmpin 2025-08-26T20:40:03.6759147Z * [new branch] wdvr/conda_devcontainer -> origin/wdvr/conda_devcontainer 2025-08-26T20:40:03.6759662Z * [new branch] wdvr/fix_logging_test -> origin/wdvr/fix_logging_test 2025-08-26T20:40:03.6760134Z * [new branch] wdvr/iss_145259 -> origin/wdvr/iss_145259 2025-08-26T20:40:03.6760604Z * [new branch] weight_sharing_cpp -> origin/weight_sharing_cpp 2025-08-26T20:40:03.6761062Z * [new branch] whc/flight4 -> origin/whc/flight4 2025-08-26T20:40:03.6761497Z * [new branch] whc/flight51 -> origin/whc/flight51 2025-08-26T20:40:03.6761925Z * [new branch] whc/flight53 -> origin/whc/flight53 2025-08-26T20:40:03.6762378Z * [new branch] whc/p2phang -> origin/whc/p2phang 2025-08-26T20:40:03.6762812Z * [new branch] whc/stage2 -> origin/whc/stage2 2025-08-26T20:40:03.6763324Z * [new branch] whc/uneven -> origin/whc/uneven 2025-08-26T20:40:03.6763782Z * [new branch] whc/uneven-merge -> origin/whc/uneven-merge 2025-08-26T20:40:03.6764229Z * [new branch] win_warnings -> origin/win_warnings 2025-08-26T20:40:03.6764696Z * [new branch] workonoldcommit -> origin/workonoldcommit 2025-08-26T20:40:03.6765242Z * [new branch] wwen/programming-model-2.8 -> origin/wwen/programming-model-2.8 2025-08-26T20:40:03.6765752Z * [new branch] xmfan/ca_0516 -> origin/xmfan/ca_0516 2025-08-26T20:40:03.6766215Z * [new branch] xmfan/ca_1051b93192 -> origin/xmfan/ca_1051b93192 2025-08-26T20:40:03.6766889Z * [new branch] xmfan/ca_1a722f62c248391fc4a542e8851a5559aa356ae8 -> origin/xmfan/ca_1a722f62c248391fc4a542e8851a5559aa356ae8 2025-08-26T20:40:03.6767566Z * [new branch] xmfan/ca_5a2be192d1 -> origin/xmfan/ca_5a2be192d1 2025-08-26T20:40:03.6768048Z * [new branch] xmfan/ca_9d59b516e9 -> origin/xmfan/ca_9d59b516e9 2025-08-26T20:40:03.6768498Z * [new branch] xmfan/ca_api -> origin/xmfan/ca_api 2025-08-26T20:40:03.6769051Z * [new branch] xmfan/ca_apr8 -> origin/xmfan/ca_apr8 2025-08-26T20:40:03.7203240Z * [new branch] xmfan/ca_base -> origin/xmfan/ca_base 2025-08-26T20:40:03.7203779Z * [new branch] xmfan/ca_cudagraphs -> origin/xmfan/ca_cudagraphs 2025-08-26T20:40:03.7204263Z * [new branch] xmfan/ca_dynamic -> origin/xmfan/ca_dynamic 2025-08-26T20:40:03.7204719Z * [new branch] xmfan/ca_fix_dyn -> origin/xmfan/ca_fix_dyn 2025-08-26T20:40:03.7205354Z * [new branch] xmfan/ca_fix_lowering -> origin/xmfan/ca_fix_lowering 2025-08-26T20:40:03.7205863Z * [new branch] xmfan/ca_fix_polyfills -> origin/xmfan/ca_fix_polyfills 2025-08-26T20:40:03.7206342Z * [new branch] xmfan/ca_jan3 -> origin/xmfan/ca_jan3 2025-08-26T20:40:03.7206793Z * [new branch] xmfan/ca_jun18 -> origin/xmfan/ca_jun18 2025-08-26T20:40:03.7207250Z * [new branch] xmfan/ca_jun24 -> origin/xmfan/ca_jun24 2025-08-26T20:40:03.7207702Z * [new branch] xmfan/ca_mem_base -> origin/xmfan/ca_mem_base 2025-08-26T20:40:03.7208162Z * [new branch] xmfan/ca_mem_fix -> origin/xmfan/ca_mem_fix 2025-08-26T20:40:03.7208627Z * [new branch] xmfan/ca_memory_fix -> origin/xmfan/ca_memory_fix 2025-08-26T20:40:03.7209147Z * [new branch] xmfan/ca_memory_fix_rebased -> origin/xmfan/ca_memory_fix_rebased 2025-08-26T20:40:03.7209696Z * [new branch] xmfan/ca_memory_fix_rebased2 -> origin/xmfan/ca_memory_fix_rebased2 2025-08-26T20:40:03.7210212Z * [new branch] xmfan/ca_move_to_cuda -> origin/xmfan/ca_move_to_cuda 2025-08-26T20:40:03.7210688Z * [new branch] xmfan/ca_nested -> origin/xmfan/ca_nested 2025-08-26T20:40:03.7211154Z * [new branch] xmfan/ca_overhead -> origin/xmfan/ca_overhead 2025-08-26T20:40:03.7211676Z * [new branch] xmfan/ca_overhead_0eba7e5451 -> origin/xmfan/ca_overhead_0eba7e5451 2025-08-26T20:40:03.7212171Z * [new branch] xmfan/ca_scalar -> origin/xmfan/ca_scalar 2025-08-26T20:40:03.7212662Z * [new branch] xmfan/ca_subclass_mem_fix -> origin/xmfan/ca_subclass_mem_fix 2025-08-26T20:40:03.7213146Z * [new branch] xmfan/ca_warm_mem -> origin/xmfan/ca_warm_mem 2025-08-26T20:40:03.7213628Z * [new branch] xmfan/ca_warm_mem_base -> origin/xmfan/ca_warm_mem_base 2025-08-26T20:40:03.7214102Z * [new branch] xmfan/cacu_jun18 -> origin/xmfan/cacu_jun18 2025-08-26T20:40:03.7214560Z * [new branch] xmfan/cacu_jun19 -> origin/xmfan/cacu_jun19 2025-08-26T20:40:03.7215018Z * [new branch] xmfan/cacu_jun4 -> origin/xmfan/cacu_jun4 2025-08-26T20:40:03.7215464Z * [new branch] xmfan/cacu_may27 -> origin/xmfan/cacu_may27 2025-08-26T20:40:03.7215944Z * [new branch] xmfan/circular_dep -> origin/xmfan/circular_dep 2025-08-26T20:40:03.7216486Z * [new branch] xmfan/compiled_autograd_feb_29 -> origin/xmfan/compiled_autograd_feb_29 2025-08-26T20:40:03.7217060Z * [new branch] xmfan/disable_duck_shape -> origin/xmfan/disable_duck_shape 2025-08-26T20:40:03.7217634Z * [new branch] xmfan/fca_cpp_node_passthrough -> origin/xmfan/fca_cpp_node_passthrough 2025-08-26T20:40:03.7218168Z * [new branch] xmfan/issue_123374 -> origin/xmfan/issue_123374 2025-08-26T20:40:03.7218864Z * [new branch] xmfan/post_3945954741e2d37023c5d6954f9483008e0892f9 -> origin/xmfan/post_3945954741e2d37023c5d6954f9483008e0892f9 2025-08-26T20:40:03.7219748Z * [new branch] xmfan/pre_3945954741e2d37023c5d6954f9483008e0892f9 -> origin/xmfan/pre_3945954741e2d37023c5d6954f9483008e0892f9 2025-08-26T20:40:03.7220540Z * [new branch] xmfan/segfault_test -> origin/xmfan/segfault_test 2025-08-26T20:40:03.7221037Z * [new branch] xmfan/single_step -> origin/xmfan/single_step 2025-08-26T20:40:03.7221498Z * [new branch] xmfan/sth_0829 -> origin/xmfan/sth_0829 2025-08-26T20:40:03.7221943Z * [new branch] xmfan/test -> origin/xmfan/test 2025-08-26T20:40:03.7222440Z * [new branch] yguo/debug-0226-constexpr -> origin/yguo/debug-0226-constexpr 2025-08-26T20:40:03.7223068Z * [new branch] yguo/new_latest_changes -> origin/yguo/new_latest_changes 2025-08-26T20:40:03.7223633Z * [new branch] yguo/patch_constexpr_changes -> origin/yguo/patch_constexpr_changes 2025-08-26T20:40:03.7224171Z * [new branch] yihan_quantization -> origin/yihan_quantization 2025-08-26T20:40:03.7224717Z * [new branch] yiming/add_jit_trace_benchmark -> origin/yiming/add_jit_trace_benchmark 2025-08-26T20:40:03.7225310Z * [new branch] yiming/add_nativert_benchmark -> origin/yiming/add_nativert_benchmark 2025-08-26T20:40:03.7234113Z * [new branch] yiming/bootcamp -> origin/yiming/bootcamp 2025-08-26T20:40:03.7234717Z * [new branch] zainr/canary-test -> origin/zainr/canary-test 2025-08-26T20:40:03.7235251Z * [new branch] zainr/cleanup-gh-runners -> origin/zainr/cleanup-gh-runners 2025-08-26T20:40:03.7582084Z * [new branch] zainr/git-push-v2 -> origin/zainr/git-push-v2 2025-08-26T20:40:03.7582679Z * [new branch] zainr/pull-migration-c -> origin/zainr/pull-migration-c 2025-08-26T20:40:03.7583202Z * [new branch] zainr/test2 -> origin/zainr/test2 2025-08-26T20:40:03.7583659Z * [new branch] zainr/unstable -> origin/zainr/unstable 2025-08-26T20:40:03.7584138Z * [new branch] zainr/unstable-xla -> origin/zainr/unstable-xla 2025-08-26T20:40:03.7584634Z * [new branch] zainr/uv-pip-fix -> origin/zainr/uv-pip-fix 2025-08-26T20:40:03.7585117Z * [new branch] zainr/vs-aarch64 -> origin/zainr/vs-aarch64 2025-08-26T20:40:03.7585595Z * [new branch] zasdfgbnm-patch-3 -> origin/zasdfgbnm-patch-3 2025-08-26T20:40:03.7586046Z * [new branch] zb2p -> origin/zb2p 2025-08-26T20:40:03.7586475Z * [new branch] zdevito-patch-1 -> origin/zdevito-patch-1 2025-08-26T20:40:03.7586973Z * [new branch] zero_grad_optimization -> origin/zero_grad_optimization 2025-08-26T20:40:03.7587501Z * [new branch] zeros-and-scatter-part2 -> origin/zeros-and-scatter-part2 2025-08-26T20:40:03.7588025Z * [new branch] zhxchen17/scratch/0 -> origin/zhxchen17/scratch/0 2025-08-26T20:40:03.7588528Z * [new branch] zhxhcen17/moodycamel -> origin/zhxhcen17/moodycamel 2025-08-26T20:40:03.7588995Z * [new branch] zxiiro/main -> origin/zxiiro/main 2025-08-26T20:40:03.7589427Z * [new branch] zxiiro/test -> origin/zxiiro/test 2025-08-26T20:40:03.7590139Z * [new tag] bc2caa7fdf006894eff7af936babde69ab5a40f8-huydhn-debug -> bc2caa7fdf006894eff7af936babde69ab5a40f8-huydhn-debug 2025-08-26T20:40:03.7590847Z * [new tag] ci/binaries/77164 -> ci/binaries/77164 2025-08-26T20:40:03.7591281Z * [new tag] ciflow/binaries/153920 -> ciflow/binaries/153920 2025-08-26T20:40:03.7591715Z * [new tag] ciflow/binaries/158104 -> ciflow/binaries/158104 2025-08-26T20:40:03.7592159Z * [new tag] ciflow/binaries/160229 -> ciflow/binaries/160229 2025-08-26T20:40:03.7592583Z * [new tag] ciflow/binaries/160853 -> ciflow/binaries/160853 2025-08-26T20:40:03.7593176Z * [new tag] ciflow/binaries/161257 -> ciflow/binaries/161257 2025-08-26T20:40:03.7593681Z * [new tag] ciflow/binaries_libtorch/156049 -> ciflow/binaries_libtorch/156049 2025-08-26T20:40:03.7594208Z * [new tag] ciflow/binaries_wheel/156049 -> ciflow/binaries_wheel/156049 2025-08-26T20:40:03.7594719Z * [new tag] ciflow/binaries_wheel/158733 -> ciflow/binaries_wheel/158733 2025-08-26T20:40:03.7595203Z * [new tag] ciflow/binaries_wheel/160207 -> ciflow/binaries_wheel/160207 2025-08-26T20:40:03.7595792Z * [new tag] ciflow/h100-symm-mem/151845 -> ciflow/h100-symm-mem/151845 2025-08-26T20:40:03.7596266Z * [new tag] ciflow/h100-symm-mem/155923 -> ciflow/h100-symm-mem/155923 2025-08-26T20:40:03.7596728Z * [new tag] ciflow/h100-symm-mem/157635 -> ciflow/h100-symm-mem/157635 2025-08-26T20:40:03.7597207Z * [new tag] ciflow/h100-symm-mem/159562 -> ciflow/h100-symm-mem/159562 2025-08-26T20:40:03.7597672Z * [new tag] ciflow/h100-symm-mem/159889 -> ciflow/h100-symm-mem/159889 2025-08-26T20:40:03.7598149Z * [new tag] ciflow/h100-symm-mem/160825 -> ciflow/h100-symm-mem/160825 2025-08-26T20:40:03.7598604Z * [new tag] ciflow/h100-symm-mem/161008 -> ciflow/h100-symm-mem/161008 2025-08-26T20:40:03.7599073Z * [new tag] ciflow/h100-symm-mem/161090 -> ciflow/h100-symm-mem/161090 2025-08-26T20:40:03.7599548Z * [new tag] ciflow/h100-symm-mem/161214 -> ciflow/h100-symm-mem/161214 2025-08-26T20:40:03.7600008Z * [new tag] ciflow/h100-symm-mem/161217 -> ciflow/h100-symm-mem/161217 2025-08-26T20:40:03.7600485Z * [new tag] ciflow/h100-symm-mem/161232 -> ciflow/h100-symm-mem/161232 2025-08-26T20:40:03.7600941Z * [new tag] ciflow/h100-symm-mem/161257 -> ciflow/h100-symm-mem/161257 2025-08-26T20:40:03.7601424Z * [new tag] ciflow/h100-symm-mem/161309 -> ciflow/h100-symm-mem/161309 2025-08-26T20:40:03.7601888Z * [new tag] ciflow/h100-symm-mem/161470 -> ciflow/h100-symm-mem/161470 2025-08-26T20:40:03.7602349Z * [new tag] ciflow/h100-symm-mem/161471 -> ciflow/h100-symm-mem/161471 2025-08-26T20:40:03.7602815Z * [new tag] ciflow/h100-symm-mem/161532 -> ciflow/h100-symm-mem/161532 2025-08-26T20:40:03.7603347Z * [new tag] ciflow/h100-symm-mem/161533 -> ciflow/h100-symm-mem/161533 2025-08-26T20:40:03.7603791Z * [new tag] ciflow/h100/159158 -> ciflow/h100/159158 2025-08-26T20:40:03.7604206Z * [new tag] ciflow/h100/161225 -> ciflow/h100/161225 2025-08-26T20:40:03.7903625Z * [new tag] ciflow/inductor-perf-test-nightly-rocm/151845 -> ciflow/inductor-perf-test-nightly-rocm/151845 2025-08-26T20:40:03.7904553Z * [new tag] ciflow/inductor-perf-test-nightly-x86-zen/161512 -> ciflow/inductor-perf-test-nightly-x86-zen/161512 2025-08-26T20:40:03.7905302Z * [new tag] ciflow/inductor-periodic/158137 -> ciflow/inductor-periodic/158137 2025-08-26T20:40:03.7905860Z * [new tag] ciflow/inductor-periodic/160807 -> ciflow/inductor-periodic/160807 2025-08-26T20:40:03.7906422Z * [new tag] ciflow/inductor-periodic/161461 -> ciflow/inductor-periodic/161461 2025-08-26T20:40:03.7906978Z * [new tag] ciflow/inductor-periodic/161536 -> ciflow/inductor-periodic/161536 2025-08-26T20:40:03.7907921Z * [new tag] ciflow/inductor-periodic/2f0de0ff9361ca4f2b1e6f9edbc600b5fb6abcd6 -> ciflow/inductor-periodic/2f0de0ff9361ca4f2b1e6f9edbc600b5fb6abcd6 2025-08-26T20:40:03.7909132Z * [new tag] ciflow/inductor-periodic/3e5b021f217a42ae55dc690083f67a28126808ed -> ciflow/inductor-periodic/3e5b021f217a42ae55dc690083f67a28126808ed 2025-08-26T20:40:03.7910252Z * [new tag] ciflow/inductor-periodic/f912c93344caa74e24c8164a2e25fe84a8203073 -> ciflow/inductor-periodic/f912c93344caa74e24c8164a2e25fe84a8203073 2025-08-26T20:40:03.7911212Z * [new tag] ciflow/inductor-rocm/151845 -> ciflow/inductor-rocm/151845 2025-08-26T20:40:03.7911702Z * [new tag] ciflow/inductor-rocm/159158 -> ciflow/inductor-rocm/159158 2025-08-26T20:40:03.7912203Z * [new tag] ciflow/inductor-rocm/160671 -> ciflow/inductor-rocm/160671 2025-08-26T20:40:03.7912689Z * [new tag] ciflow/inductor-rocm/161180 -> ciflow/inductor-rocm/161180 2025-08-26T20:40:03.7913262Z * [new tag] ciflow/inductor-rocm/161225 -> ciflow/inductor-rocm/161225 2025-08-26T20:40:03.7913801Z * [new tag] ciflow/inductor-rocm/161521 -> ciflow/inductor-rocm/161521 2025-08-26T20:40:03.7914365Z * [new tag] ciflow/inductor-windows/160406 -> ciflow/inductor-windows/160406 2025-08-26T20:40:03.7914869Z * [new tag] ciflow/inductor/148492 -> ciflow/inductor/148492 2025-08-26T20:40:03.7915325Z * [new tag] ciflow/inductor/151845 -> ciflow/inductor/151845 2025-08-26T20:40:03.7915761Z * [new tag] ciflow/inductor/154694 -> ciflow/inductor/154694 2025-08-26T20:40:03.7916209Z * [new tag] ciflow/inductor/155072 -> ciflow/inductor/155072 2025-08-26T20:40:03.7916643Z * [new tag] ciflow/inductor/155152 -> ciflow/inductor/155152 2025-08-26T20:40:03.7917087Z * [new tag] ciflow/inductor/155153 -> ciflow/inductor/155153 2025-08-26T20:40:03.7917528Z * [new tag] ciflow/inductor/155154 -> ciflow/inductor/155154 2025-08-26T20:40:03.7917958Z * [new tag] ciflow/inductor/155501 -> ciflow/inductor/155501 2025-08-26T20:40:03.7918407Z * [new tag] ciflow/inductor/155502 -> ciflow/inductor/155502 2025-08-26T20:40:03.7918841Z * [new tag] ciflow/inductor/155503 -> ciflow/inductor/155503 2025-08-26T20:40:03.7919333Z * [new tag] ciflow/inductor/155557 -> ciflow/inductor/155557 2025-08-26T20:40:03.7919812Z * [new tag] ciflow/inductor/155608 -> ciflow/inductor/155608 2025-08-26T20:40:03.7920252Z * [new tag] ciflow/inductor/155923 -> ciflow/inductor/155923 2025-08-26T20:40:03.7920694Z * [new tag] ciflow/inductor/155928 -> ciflow/inductor/155928 2025-08-26T20:40:03.7921126Z * [new tag] ciflow/inductor/156875 -> ciflow/inductor/156875 2025-08-26T20:40:03.7921573Z * [new tag] ciflow/inductor/156967 -> ciflow/inductor/156967 2025-08-26T20:40:03.7922004Z * [new tag] ciflow/inductor/157298 -> ciflow/inductor/157298 2025-08-26T20:40:03.7922449Z * [new tag] ciflow/inductor/157572 -> ciflow/inductor/157572 2025-08-26T20:40:03.7922893Z * [new tag] ciflow/inductor/157635 -> ciflow/inductor/157635 2025-08-26T20:40:03.7923435Z * [new tag] ciflow/inductor/157743 -> ciflow/inductor/157743 2025-08-26T20:40:03.7923888Z * [new tag] ciflow/inductor/157767 -> ciflow/inductor/157767 2025-08-26T20:40:03.7924321Z * [new tag] ciflow/inductor/157944 -> ciflow/inductor/157944 2025-08-26T20:40:03.7924770Z * [new tag] ciflow/inductor/158061 -> ciflow/inductor/158061 2025-08-26T20:40:03.7925270Z * [new tag] ciflow/inductor/158097 -> ciflow/inductor/158097 2025-08-26T20:40:03.7925757Z * [new tag] ciflow/inductor/158098 -> ciflow/inductor/158098 2025-08-26T20:40:03.7926200Z * [new tag] ciflow/inductor/158104 -> ciflow/inductor/158104 2025-08-26T20:40:03.7926628Z * [new tag] ciflow/inductor/158137 -> ciflow/inductor/158137 2025-08-26T20:40:03.7927076Z * [new tag] ciflow/inductor/158321 -> ciflow/inductor/158321 2025-08-26T20:40:03.7927610Z * [new tag] ciflow/inductor/158609 -> ciflow/inductor/158609 2025-08-26T20:40:03.8255019Z * [new tag] ciflow/inductor/158932 -> ciflow/inductor/158932 2025-08-26T20:40:03.8255541Z * [new tag] ciflow/inductor/159003 -> ciflow/inductor/159003 2025-08-26T20:40:03.8256021Z * [new tag] ciflow/inductor/159158 -> ciflow/inductor/159158 2025-08-26T20:40:03.8256502Z * [new tag] ciflow/inductor/159274 -> ciflow/inductor/159274 2025-08-26T20:40:03.8257190Z * [new tag] ciflow/inductor/159329 -> ciflow/inductor/159329 2025-08-26T20:40:03.8257679Z * [new tag] ciflow/inductor/159387 -> ciflow/inductor/159387 2025-08-26T20:40:03.8258156Z * [new tag] ciflow/inductor/159473 -> ciflow/inductor/159473 2025-08-26T20:40:03.8258684Z * [new tag] ciflow/inductor/159664 -> ciflow/inductor/159664 2025-08-26T20:40:03.8259171Z * [new tag] ciflow/inductor/159678 -> ciflow/inductor/159678 2025-08-26T20:40:03.8259636Z * [new tag] ciflow/inductor/159778 -> ciflow/inductor/159778 2025-08-26T20:40:03.8260120Z * [new tag] ciflow/inductor/159786 -> ciflow/inductor/159786 2025-08-26T20:40:03.8260620Z * [new tag] ciflow/inductor/159817 -> ciflow/inductor/159817 2025-08-26T20:40:03.8261096Z * [new tag] ciflow/inductor/159835 -> ciflow/inductor/159835 2025-08-26T20:40:03.8261586Z * [new tag] ciflow/inductor/159889 -> ciflow/inductor/159889 2025-08-26T20:40:03.8262081Z * [new tag] ciflow/inductor/159923 -> ciflow/inductor/159923 2025-08-26T20:40:03.8262564Z * [new tag] ciflow/inductor/159944 -> ciflow/inductor/159944 2025-08-26T20:40:03.8263026Z * [new tag] ciflow/inductor/160080 -> ciflow/inductor/160080 2025-08-26T20:40:03.8263505Z * [new tag] ciflow/inductor/160111 -> ciflow/inductor/160111 2025-08-26T20:40:03.8264017Z * [new tag] ciflow/inductor/160138 -> ciflow/inductor/160138 2025-08-26T20:40:03.8264481Z * [new tag] ciflow/inductor/160156 -> ciflow/inductor/160156 2025-08-26T20:40:03.8264953Z * [new tag] ciflow/inductor/160180 -> ciflow/inductor/160180 2025-08-26T20:40:03.8265417Z * [new tag] ciflow/inductor/160198 -> ciflow/inductor/160198 2025-08-26T20:40:03.8265934Z * [new tag] ciflow/inductor/160258 -> ciflow/inductor/160258 2025-08-26T20:40:03.8266400Z * [new tag] ciflow/inductor/160266 -> ciflow/inductor/160266 2025-08-26T20:40:03.8266871Z * [new tag] ciflow/inductor/160282 -> ciflow/inductor/160282 2025-08-26T20:40:03.8267349Z * [new tag] ciflow/inductor/160323 -> ciflow/inductor/160323 2025-08-26T20:40:03.8267853Z * [new tag] ciflow/inductor/160324 -> ciflow/inductor/160324 2025-08-26T20:40:03.8268338Z * [new tag] ciflow/inductor/160325 -> ciflow/inductor/160325 2025-08-26T20:40:03.8268810Z * [new tag] ciflow/inductor/160326 -> ciflow/inductor/160326 2025-08-26T20:40:03.8269280Z * [new tag] ciflow/inductor/160327 -> ciflow/inductor/160327 2025-08-26T20:40:03.8269801Z * [new tag] ciflow/inductor/160328 -> ciflow/inductor/160328 2025-08-26T20:40:03.8270276Z * [new tag] ciflow/inductor/160329 -> ciflow/inductor/160329 2025-08-26T20:40:03.8270749Z * [new tag] ciflow/inductor/160431 -> ciflow/inductor/160431 2025-08-26T20:40:03.8271222Z * [new tag] ciflow/inductor/160448 -> ciflow/inductor/160448 2025-08-26T20:40:03.8271741Z * [new tag] ciflow/inductor/160449 -> ciflow/inductor/160449 2025-08-26T20:40:03.8273030Z * [new tag] ciflow/inductor/160467 -> ciflow/inductor/160467 2025-08-26T20:40:03.8273506Z * [new tag] ciflow/inductor/160470 -> ciflow/inductor/160470 2025-08-26T20:40:03.8274033Z * [new tag] ciflow/inductor/160483 -> ciflow/inductor/160483 2025-08-26T20:40:03.8274506Z * [new tag] ciflow/inductor/160527 -> ciflow/inductor/160527 2025-08-26T20:40:03.8274977Z * [new tag] ciflow/inductor/160532 -> ciflow/inductor/160532 2025-08-26T20:40:03.8275580Z * [new tag] ciflow/inductor/160539 -> ciflow/inductor/160539 2025-08-26T20:40:03.8276069Z * [new tag] ciflow/inductor/160580 -> ciflow/inductor/160580 2025-08-26T20:40:03.8276546Z * [new tag] ciflow/inductor/160601 -> ciflow/inductor/160601 2025-08-26T20:40:03.8277056Z * [new tag] ciflow/inductor/160611 -> ciflow/inductor/160611 2025-08-26T20:40:03.8277538Z * [new tag] ciflow/inductor/160669 -> ciflow/inductor/160669 2025-08-26T20:40:03.8278004Z * [new tag] ciflow/inductor/160670 -> ciflow/inductor/160670 2025-08-26T20:40:03.8278485Z * [new tag] ciflow/inductor/160671 -> ciflow/inductor/160671 2025-08-26T20:40:03.8279006Z * [new tag] ciflow/inductor/160677 -> ciflow/inductor/160677 2025-08-26T20:40:03.8279473Z * [new tag] ciflow/inductor/160690 -> ciflow/inductor/160690 2025-08-26T20:40:03.8279954Z * [new tag] ciflow/inductor/160763 -> ciflow/inductor/160763 2025-08-26T20:40:03.8607147Z * [new tag] ciflow/inductor/160772 -> ciflow/inductor/160772 2025-08-26T20:40:03.8607666Z * [new tag] ciflow/inductor/160798 -> ciflow/inductor/160798 2025-08-26T20:40:03.8608103Z * [new tag] ciflow/inductor/160807 -> ciflow/inductor/160807 2025-08-26T20:40:03.8608544Z * [new tag] ciflow/inductor/160836 -> ciflow/inductor/160836 2025-08-26T20:40:03.8608983Z * [new tag] ciflow/inductor/160861 -> ciflow/inductor/160861 2025-08-26T20:40:03.8609407Z * [new tag] ciflow/inductor/160883 -> ciflow/inductor/160883 2025-08-26T20:40:03.8609839Z * [new tag] ciflow/inductor/160888 -> ciflow/inductor/160888 2025-08-26T20:40:03.8610291Z * [new tag] ciflow/inductor/160903 -> ciflow/inductor/160903 2025-08-26T20:40:03.8610721Z * [new tag] ciflow/inductor/160913 -> ciflow/inductor/160913 2025-08-26T20:40:03.8611153Z * [new tag] ciflow/inductor/160941 -> ciflow/inductor/160941 2025-08-26T20:40:03.8611577Z * [new tag] ciflow/inductor/160943 -> ciflow/inductor/160943 2025-08-26T20:40:03.8612012Z * [new tag] ciflow/inductor/160991 -> ciflow/inductor/160991 2025-08-26T20:40:03.8612453Z * [new tag] ciflow/inductor/160997 -> ciflow/inductor/160997 2025-08-26T20:40:03.8612871Z * [new tag] ciflow/inductor/161003 -> ciflow/inductor/161003 2025-08-26T20:40:03.8613310Z * [new tag] ciflow/inductor/161026 -> ciflow/inductor/161026 2025-08-26T20:40:03.8613734Z * [new tag] ciflow/inductor/161032 -> ciflow/inductor/161032 2025-08-26T20:40:03.8614180Z * [new tag] ciflow/inductor/161040 -> ciflow/inductor/161040 2025-08-26T20:40:03.8614623Z * [new tag] ciflow/inductor/161055 -> ciflow/inductor/161055 2025-08-26T20:40:03.8615050Z * [new tag] ciflow/inductor/161062 -> ciflow/inductor/161062 2025-08-26T20:40:03.8615483Z * [new tag] ciflow/inductor/161069 -> ciflow/inductor/161069 2025-08-26T20:40:03.8615917Z * [new tag] ciflow/inductor/161092 -> ciflow/inductor/161092 2025-08-26T20:40:03.8616515Z * [new tag] ciflow/inductor/161093 -> ciflow/inductor/161093 2025-08-26T20:40:03.8616964Z * [new tag] ciflow/inductor/161097 -> ciflow/inductor/161097 2025-08-26T20:40:03.8617395Z * [new tag] ciflow/inductor/161098 -> ciflow/inductor/161098 2025-08-26T20:40:03.8617838Z * [new tag] ciflow/inductor/161100 -> ciflow/inductor/161100 2025-08-26T20:40:03.8618269Z * [new tag] ciflow/inductor/161107 -> ciflow/inductor/161107 2025-08-26T20:40:03.8618709Z * [new tag] ciflow/inductor/161110 -> ciflow/inductor/161110 2025-08-26T20:40:03.8619227Z * [new tag] ciflow/inductor/161117 -> ciflow/inductor/161117 2025-08-26T20:40:03.8619662Z * [new tag] ciflow/inductor/161118 -> ciflow/inductor/161118 2025-08-26T20:40:03.8620107Z * [new tag] ciflow/inductor/161123 -> ciflow/inductor/161123 2025-08-26T20:40:03.8620541Z * [new tag] ciflow/inductor/161124 -> ciflow/inductor/161124 2025-08-26T20:40:03.8620981Z * [new tag] ciflow/inductor/161125 -> ciflow/inductor/161125 2025-08-26T20:40:03.8621406Z * [new tag] ciflow/inductor/161126 -> ciflow/inductor/161126 2025-08-26T20:40:03.8621840Z * [new tag] ciflow/inductor/161144 -> ciflow/inductor/161144 2025-08-26T20:40:03.8622273Z * [new tag] ciflow/inductor/161148 -> ciflow/inductor/161148 2025-08-26T20:40:03.8622709Z * [new tag] ciflow/inductor/161158 -> ciflow/inductor/161158 2025-08-26T20:40:03.8623144Z * [new tag] ciflow/inductor/161178 -> ciflow/inductor/161178 2025-08-26T20:40:03.8623568Z * [new tag] ciflow/inductor/161190 -> ciflow/inductor/161190 2025-08-26T20:40:03.8623997Z * [new tag] ciflow/inductor/161208 -> ciflow/inductor/161208 2025-08-26T20:40:03.8624421Z * [new tag] ciflow/inductor/161225 -> ciflow/inductor/161225 2025-08-26T20:40:03.8624857Z * [new tag] ciflow/inductor/161229 -> ciflow/inductor/161229 2025-08-26T20:40:03.8625303Z * [new tag] ciflow/inductor/161237 -> ciflow/inductor/161237 2025-08-26T20:40:03.8625737Z * [new tag] ciflow/inductor/161241 -> ciflow/inductor/161241 2025-08-26T20:40:03.8626174Z * [new tag] ciflow/inductor/161246 -> ciflow/inductor/161246 2025-08-26T20:40:03.8626595Z * [new tag] ciflow/inductor/161274 -> ciflow/inductor/161274 2025-08-26T20:40:03.8627040Z * [new tag] ciflow/inductor/161278 -> ciflow/inductor/161278 2025-08-26T20:40:03.8627459Z * [new tag] ciflow/inductor/161279 -> ciflow/inductor/161279 2025-08-26T20:40:03.8627888Z * [new tag] ciflow/inductor/161288 -> ciflow/inductor/161288 2025-08-26T20:40:03.8628324Z * [new tag] ciflow/inductor/161314 -> ciflow/inductor/161314 2025-08-26T20:40:03.8953863Z * [new tag] ciflow/inductor/161320 -> ciflow/inductor/161320 2025-08-26T20:40:03.8954332Z * [new tag] ciflow/inductor/161336 -> ciflow/inductor/161336 2025-08-26T20:40:03.8954782Z * [new tag] ciflow/inductor/161337 -> ciflow/inductor/161337 2025-08-26T20:40:03.8955224Z * [new tag] ciflow/inductor/161338 -> ciflow/inductor/161338 2025-08-26T20:40:03.8955655Z * [new tag] ciflow/inductor/161339 -> ciflow/inductor/161339 2025-08-26T20:40:03.8956106Z * [new tag] ciflow/inductor/161340 -> ciflow/inductor/161340 2025-08-26T20:40:03.8956532Z * [new tag] ciflow/inductor/161341 -> ciflow/inductor/161341 2025-08-26T20:40:03.8956955Z * [new tag] ciflow/inductor/161342 -> ciflow/inductor/161342 2025-08-26T20:40:03.8957386Z * [new tag] ciflow/inductor/161343 -> ciflow/inductor/161343 2025-08-26T20:40:03.8957963Z * [new tag] ciflow/inductor/161344 -> ciflow/inductor/161344 2025-08-26T20:40:03.8958396Z * [new tag] ciflow/inductor/161345 -> ciflow/inductor/161345 2025-08-26T20:40:03.8958879Z * [new tag] ciflow/inductor/161346 -> ciflow/inductor/161346 2025-08-26T20:40:03.8959349Z * [new tag] ciflow/inductor/161347 -> ciflow/inductor/161347 2025-08-26T20:40:03.8959772Z * [new tag] ciflow/inductor/161348 -> ciflow/inductor/161348 2025-08-26T20:40:03.8960740Z * [new tag] ciflow/inductor/161349 -> ciflow/inductor/161349 2025-08-26T20:40:03.8961173Z * [new tag] ciflow/inductor/161350 -> ciflow/inductor/161350 2025-08-26T20:40:03.8961611Z * [new tag] ciflow/inductor/161351 -> ciflow/inductor/161351 2025-08-26T20:40:03.8962033Z * [new tag] ciflow/inductor/161353 -> ciflow/inductor/161353 2025-08-26T20:40:03.8962467Z * [new tag] ciflow/inductor/161354 -> ciflow/inductor/161354 2025-08-26T20:40:03.8962894Z * [new tag] ciflow/inductor/161355 -> ciflow/inductor/161355 2025-08-26T20:40:03.8963392Z * [new tag] ciflow/inductor/161362 -> ciflow/inductor/161362 2025-08-26T20:40:03.8963828Z * [new tag] ciflow/inductor/161363 -> ciflow/inductor/161363 2025-08-26T20:40:03.8964255Z * [new tag] ciflow/inductor/161382 -> ciflow/inductor/161382 2025-08-26T20:40:03.8964735Z * [new tag] ciflow/inductor/161383 -> ciflow/inductor/161383 2025-08-26T20:40:03.8965199Z * [new tag] ciflow/inductor/161385 -> ciflow/inductor/161385 2025-08-26T20:40:03.8965624Z * [new tag] ciflow/inductor/161396 -> ciflow/inductor/161396 2025-08-26T20:40:03.8966054Z * [new tag] ciflow/inductor/161397 -> ciflow/inductor/161397 2025-08-26T20:40:03.8966481Z * [new tag] ciflow/inductor/161404 -> ciflow/inductor/161404 2025-08-26T20:40:03.8966910Z * [new tag] ciflow/inductor/161405 -> ciflow/inductor/161405 2025-08-26T20:40:03.8967332Z * [new tag] ciflow/inductor/161406 -> ciflow/inductor/161406 2025-08-26T20:40:03.8967761Z * [new tag] ciflow/inductor/161409 -> ciflow/inductor/161409 2025-08-26T20:40:03.8968198Z * [new tag] ciflow/inductor/161410 -> ciflow/inductor/161410 2025-08-26T20:40:03.8968621Z * [new tag] ciflow/inductor/161414 -> ciflow/inductor/161414 2025-08-26T20:40:03.8969056Z * [new tag] ciflow/inductor/161416 -> ciflow/inductor/161416 2025-08-26T20:40:03.8969483Z * [new tag] ciflow/inductor/161420 -> ciflow/inductor/161420 2025-08-26T20:40:03.8969920Z * [new tag] ciflow/inductor/161431 -> ciflow/inductor/161431 2025-08-26T20:40:03.8970386Z * [new tag] ciflow/inductor/161435 -> ciflow/inductor/161435 2025-08-26T20:40:03.8970855Z * [new tag] ciflow/inductor/161440 -> ciflow/inductor/161440 2025-08-26T20:40:03.8971284Z * [new tag] ciflow/inductor/161447 -> ciflow/inductor/161447 2025-08-26T20:40:03.8971708Z * [new tag] ciflow/inductor/161452 -> ciflow/inductor/161452 2025-08-26T20:40:03.8972138Z * [new tag] ciflow/inductor/161453 -> ciflow/inductor/161453 2025-08-26T20:40:03.8972564Z * [new tag] ciflow/inductor/161458 -> ciflow/inductor/161458 2025-08-26T20:40:03.8973001Z * [new tag] ciflow/inductor/161461 -> ciflow/inductor/161461 2025-08-26T20:40:03.8973431Z * [new tag] ciflow/inductor/161464 -> ciflow/inductor/161464 2025-08-26T20:40:03.8973853Z * [new tag] ciflow/inductor/161466 -> ciflow/inductor/161466 2025-08-26T20:40:03.8974389Z * [new tag] ciflow/inductor/161468 -> ciflow/inductor/161468 2025-08-26T20:40:03.8974811Z * [new tag] ciflow/inductor/161469 -> ciflow/inductor/161469 2025-08-26T20:40:03.8975247Z * [new tag] ciflow/inductor/161474 -> ciflow/inductor/161474 2025-08-26T20:40:03.8975679Z * [new tag] ciflow/inductor/161477 -> ciflow/inductor/161477 2025-08-26T20:40:03.9288834Z * [new tag] ciflow/inductor/161479 -> ciflow/inductor/161479 2025-08-26T20:40:03.9289394Z * [new tag] ciflow/inductor/161485 -> ciflow/inductor/161485 2025-08-26T20:40:03.9289838Z * [new tag] ciflow/inductor/161486 -> ciflow/inductor/161486 2025-08-26T20:40:03.9290279Z * [new tag] ciflow/inductor/161487 -> ciflow/inductor/161487 2025-08-26T20:40:03.9290718Z * [new tag] ciflow/inductor/161495 -> ciflow/inductor/161495 2025-08-26T20:40:03.9291154Z * [new tag] ciflow/inductor/161497 -> ciflow/inductor/161497 2025-08-26T20:40:03.9291595Z * [new tag] ciflow/inductor/161499 -> ciflow/inductor/161499 2025-08-26T20:40:03.9292021Z * [new tag] ciflow/inductor/161512 -> ciflow/inductor/161512 2025-08-26T20:40:03.9292461Z * [new tag] ciflow/inductor/161521 -> ciflow/inductor/161521 2025-08-26T20:40:03.9292888Z * [new tag] ciflow/inductor/161526 -> ciflow/inductor/161526 2025-08-26T20:40:03.9293332Z * [new tag] ciflow/inductor/161530 -> ciflow/inductor/161530 2025-08-26T20:40:03.9293772Z * [new tag] ciflow/inductor/161534 -> ciflow/inductor/161534 2025-08-26T20:40:03.9294204Z * [new tag] ciflow/inductor/161536 -> ciflow/inductor/161536 2025-08-26T20:40:03.9294653Z * [new tag] ciflow/inductor/3b9a386 -> ciflow/inductor/3b9a386 2025-08-26T20:40:03.9295098Z * [new tag] ciflow/inductor/3d4b92b -> ciflow/inductor/3d4b92b 2025-08-26T20:40:03.9295543Z * [new tag] ciflow/inductor/d224ac7 -> ciflow/inductor/d224ac7 2025-08-26T20:40:03.9296009Z * [new tag] ciflow/linux-aarch64/159737 -> ciflow/linux-aarch64/159737 2025-08-26T20:40:03.9296486Z * [new tag] ciflow/linux-aarch64/160078 -> ciflow/linux-aarch64/160078 2025-08-26T20:40:03.9296966Z * [new tag] ciflow/linux-aarch64/160080 -> ciflow/linux-aarch64/160080 2025-08-26T20:40:03.9297404Z * [new tag] ciflow/mps/155923 -> ciflow/mps/155923 2025-08-26T20:40:03.9297812Z * [new tag] ciflow/mps/157553 -> ciflow/mps/157553 2025-08-26T20:40:03.9298213Z * [new tag] ciflow/mps/157635 -> ciflow/mps/157635 2025-08-26T20:40:03.9298606Z * [new tag] ciflow/mps/160839 -> ciflow/mps/160839 2025-08-26T20:40:03.9299005Z * [new tag] ciflow/mps/161511 -> ciflow/mps/161511 2025-08-26T20:40:03.9299414Z * [new tag] ciflow/nightly/158104 -> ciflow/nightly/158104 2025-08-26T20:40:03.9299934Z * [new tag] ciflow/periodic-rocm-mi300/161180 -> ciflow/periodic-rocm-mi300/161180 2025-08-26T20:40:03.9300450Z * [new tag] ciflow/periodic/054a2fd -> ciflow/periodic/054a2fd 2025-08-26T20:40:03.9301296Z * [new tag] ciflow/periodic/0dea191ff7b844352dc2cd5e3b5ef5ea13a76756 -> ciflow/periodic/0dea191ff7b844352dc2cd5e3b5ef5ea13a76756 2025-08-26T20:40:03.9302052Z * [new tag] ciflow/periodic/161013 -> ciflow/periodic/161013 2025-08-26T20:40:03.9302496Z * [new tag] ciflow/periodic/2a6d37d -> ciflow/periodic/2a6d37d 2025-08-26T20:40:03.9302960Z * [new tag] ciflow/periodic/317eeb8 -> ciflow/periodic/317eeb8 2025-08-26T20:40:03.9303519Z * [new tag] ciflow/periodic/3c32 -> ciflow/periodic/3c32 2025-08-26T20:40:03.9303957Z * [new tag] ciflow/periodic/3e98831 -> ciflow/periodic/3e98831 2025-08-26T20:40:03.9304432Z * [new tag] ciflow/periodic/94512-point -> ciflow/periodic/94512-point 2025-08-26T20:40:03.9305199Z * [new tag] ciflow/periodic/bc7eaa0d8a1f5ca8ec0eaac461d1df500dcaea84 -> ciflow/periodic/bc7eaa0d8a1f5ca8ec0eaac461d1df500dcaea84 2025-08-26T20:40:03.9305991Z * [new tag] ciflow/periodic/csl/test87519 -> ciflow/periodic/csl/test87519 2025-08-26T20:40:03.9306648Z * [new tag] ciflow/periodic/csltest88275 -> ciflow/periodic/csltest88275 2025-08-26T20:40:03.9307203Z * [new tag] ciflow/periodic/csltest88761 -> ciflow/periodic/csltest88761 2025-08-26T20:40:03.9307715Z * [new tag] ciflow/periodic/release_1.12 -> ciflow/periodic/release_1.12 2025-08-26T20:40:03.9308230Z * [new tag] ciflow/periodic/release_1.12.0 -> ciflow/periodic/release_1.12.0 2025-08-26T20:40:03.9308755Z * [new tag] ciflow/periodic/sha-ec5b83 -> ciflow/periodic/sha-ec5b83 2025-08-26T20:40:03.9309220Z * [new tag] ciflow/rocm-mi300/159158 -> ciflow/rocm-mi300/159158 2025-08-26T20:40:03.9309672Z * [new tag] ciflow/rocm-mi300/161040 -> ciflow/rocm-mi300/161040 2025-08-26T20:40:03.9310115Z * [new tag] ciflow/rocm-mi300/161180 -> ciflow/rocm-mi300/161180 2025-08-26T20:40:03.9310543Z * [new tag] ciflow/rocm-mi300/161225 -> ciflow/rocm-mi300/161225 2025-08-26T20:40:03.9310980Z * [new tag] ciflow/rocm-mi300/161429 -> ciflow/rocm-mi300/161429 2025-08-26T20:40:03.9311408Z * [new tag] ciflow/rocm-mi355/160215 -> ciflow/rocm-mi355/160215 2025-08-26T20:40:03.9645639Z * [new tag] ciflow/rocm/148492 -> ciflow/rocm/148492 2025-08-26T20:40:03.9646105Z * [new tag] ciflow/rocm/151845 -> ciflow/rocm/151845 2025-08-26T20:40:03.9646510Z * [new tag] ciflow/rocm/152526 -> ciflow/rocm/152526 2025-08-26T20:40:03.9646912Z * [new tag] ciflow/rocm/154864 -> ciflow/rocm/154864 2025-08-26T20:40:03.9647300Z * [new tag] ciflow/rocm/158352 -> ciflow/rocm/158352 2025-08-26T20:40:03.9647697Z * [new tag] ciflow/rocm/159158 -> ciflow/rocm/159158 2025-08-26T20:40:03.9648100Z * [new tag] ciflow/rocm/160215 -> ciflow/rocm/160215 2025-08-26T20:40:03.9648498Z * [new tag] ciflow/rocm/160671 -> ciflow/rocm/160671 2025-08-26T20:40:03.9648902Z * [new tag] ciflow/rocm/160676 -> ciflow/rocm/160676 2025-08-26T20:40:03.9649288Z * [new tag] ciflow/rocm/161180 -> ciflow/rocm/161180 2025-08-26T20:40:03.9649682Z * [new tag] ciflow/rocm/161225 -> ciflow/rocm/161225 2025-08-26T20:40:03.9650088Z * [new tag] ciflow/rocm/161277 -> ciflow/rocm/161277 2025-08-26T20:40:03.9650477Z * [new tag] ciflow/rocm/161429 -> ciflow/rocm/161429 2025-08-26T20:40:03.9650876Z * [new tag] ciflow/rocm/161496 -> ciflow/rocm/161496 2025-08-26T20:40:03.9651265Z * [new tag] ciflow/s390/160893 -> ciflow/s390/160893 2025-08-26T20:40:03.9651677Z * [new tag] ciflow/slow/01c7106 -> ciflow/slow/01c7106 2025-08-26T20:40:03.9652088Z * [new tag] ciflow/slow/0577043 -> ciflow/slow/0577043 2025-08-26T20:40:03.9652815Z * [new tag] ciflow/slow/0d5b74da0cab798fbfdb9caa53fad816999c8386-sdym -> ciflow/slow/0d5b74da0cab798fbfdb9caa53fad816999c8386-sdym 2025-08-26T20:40:03.9653538Z * [new tag] ciflow/slow/0e81104 -> ciflow/slow/0e81104 2025-08-26T20:40:03.9653934Z * [new tag] ciflow/slow/161182 -> ciflow/slow/161182 2025-08-26T20:40:03.9654473Z * [new tag] ciflow/slow/161395 -> ciflow/slow/161395 2025-08-26T20:40:03.9654878Z * [new tag] ciflow/slow/1732077 -> ciflow/slow/1732077 2025-08-26T20:40:03.9655281Z * [new tag] ciflow/slow/187eb7c -> ciflow/slow/187eb7c 2025-08-26T20:40:03.9655700Z * [new tag] ciflow/slow/1faef89 -> ciflow/slow/1faef89 2025-08-26T20:40:03.9656100Z * [new tag] ciflow/slow/3920ec1 -> ciflow/slow/3920ec1 2025-08-26T20:40:03.9656601Z * [new tag] ciflow/slow/3b7c6b2 -> ciflow/slow/3b7c6b2 2025-08-26T20:40:03.9657003Z * [new tag] ciflow/slow/59a3759 -> ciflow/slow/59a3759 2025-08-26T20:40:03.9657424Z * [new tag] ciflow/slow/70ef0bb -> ciflow/slow/70ef0bb 2025-08-26T20:40:03.9657831Z * [new tag] ciflow/slow/788ff06 -> ciflow/slow/788ff06 2025-08-26T20:40:03.9658523Z * [new tag] ciflow/slow/8751002215790a3a88750faa8f4366933e296693-sdym -> ciflow/slow/8751002215790a3a88750faa8f4366933e296693-sdym 2025-08-26T20:40:03.9659231Z * [new tag] ciflow/slow/9d85864 -> ciflow/slow/9d85864 2025-08-26T20:40:03.9659638Z * [new tag] ciflow/slow/9ffad5b -> ciflow/slow/9ffad5b 2025-08-26T20:40:03.9660051Z * [new tag] ciflow/slow/a206e8b -> ciflow/slow/a206e8b 2025-08-26T20:40:03.9660458Z * [new tag] ciflow/slow/a837609 -> ciflow/slow/a837609 2025-08-26T20:40:03.9660861Z * [new tag] ciflow/slow/af841f3 -> ciflow/slow/af841f3 2025-08-26T20:40:03.9661586Z * [new tag] ciflow/slow/da3aba1e46157c4df504b067477cdf2b3c96b194-sdym -> ciflow/slow/da3aba1e46157c4df504b067477cdf2b3c96b194-sdym 2025-08-26T20:40:03.9662320Z * [new tag] ciflow/torchbench/158137 -> ciflow/torchbench/158137 2025-08-26T20:40:03.9662763Z * [new tag] ciflow/trunk/148492 -> ciflow/trunk/148492 2025-08-26T20:40:03.9663172Z * [new tag] ciflow/trunk/151845 -> ciflow/trunk/151845 2025-08-26T20:40:03.9663567Z * [new tag] ciflow/trunk/153784 -> ciflow/trunk/153784 2025-08-26T20:40:03.9663979Z * [new tag] ciflow/trunk/154694 -> ciflow/trunk/154694 2025-08-26T20:40:03.9664380Z * [new tag] ciflow/trunk/154864 -> ciflow/trunk/154864 2025-08-26T20:40:03.9664789Z * [new tag] ciflow/trunk/156418 -> ciflow/trunk/156418 2025-08-26T20:40:03.9665196Z * [new tag] ciflow/trunk/157196 -> ciflow/trunk/157196 2025-08-26T20:40:03.9665590Z * [new tag] ciflow/trunk/157537 -> ciflow/trunk/157537 2025-08-26T20:40:03.9665998Z * [new tag] ciflow/trunk/157767 -> ciflow/trunk/157767 2025-08-26T20:40:03.9666396Z * [new tag] ciflow/trunk/157944 -> ciflow/trunk/157944 2025-08-26T20:40:03.9666805Z * [new tag] ciflow/trunk/158104 -> ciflow/trunk/158104 2025-08-26T20:40:03.9667202Z * [new tag] ciflow/trunk/158541 -> ciflow/trunk/158541 2025-08-26T20:40:04.0027132Z * [new tag] ciflow/trunk/158733 -> ciflow/trunk/158733 2025-08-26T20:40:04.0027636Z * [new tag] ciflow/trunk/158747 -> ciflow/trunk/158747 2025-08-26T20:40:04.0028045Z * [new tag] ciflow/trunk/159158 -> ciflow/trunk/159158 2025-08-26T20:40:04.0028475Z * [new tag] ciflow/trunk/159387 -> ciflow/trunk/159387 2025-08-26T20:40:04.0028870Z * [new tag] ciflow/trunk/159562 -> ciflow/trunk/159562 2025-08-26T20:40:04.0029276Z * [new tag] ciflow/trunk/159786 -> ciflow/trunk/159786 2025-08-26T20:40:04.0029704Z * [new tag] ciflow/trunk/159835 -> ciflow/trunk/159835 2025-08-26T20:40:04.0030237Z * [new tag] ciflow/trunk/159889 -> ciflow/trunk/159889 2025-08-26T20:40:04.0030647Z * [new tag] ciflow/trunk/159923 -> ciflow/trunk/159923 2025-08-26T20:40:04.0031056Z * [new tag] ciflow/trunk/160156 -> ciflow/trunk/160156 2025-08-26T20:40:04.0031459Z * [new tag] ciflow/trunk/160180 -> ciflow/trunk/160180 2025-08-26T20:40:04.0031874Z * [new tag] ciflow/trunk/160198 -> ciflow/trunk/160198 2025-08-26T20:40:04.0032354Z * [new tag] ciflow/trunk/160258 -> ciflow/trunk/160258 2025-08-26T20:40:04.0032837Z * [new tag] ciflow/trunk/160431 -> ciflow/trunk/160431 2025-08-26T20:40:04.0033280Z * [new tag] ciflow/trunk/160448 -> ciflow/trunk/160448 2025-08-26T20:40:04.0033738Z * [new tag] ciflow/trunk/160449 -> ciflow/trunk/160449 2025-08-26T20:40:04.0034143Z * [new tag] ciflow/trunk/160527 -> ciflow/trunk/160527 2025-08-26T20:40:04.0034538Z * [new tag] ciflow/trunk/160532 -> ciflow/trunk/160532 2025-08-26T20:40:04.0034941Z * [new tag] ciflow/trunk/160671 -> ciflow/trunk/160671 2025-08-26T20:40:04.0035341Z * [new tag] ciflow/trunk/160677 -> ciflow/trunk/160677 2025-08-26T20:40:04.0035744Z * [new tag] ciflow/trunk/160692 -> ciflow/trunk/160692 2025-08-26T20:40:04.0036155Z * [new tag] ciflow/trunk/160781 -> ciflow/trunk/160781 2025-08-26T20:40:04.0036549Z * [new tag] ciflow/trunk/160825 -> ciflow/trunk/160825 2025-08-26T20:40:04.0036959Z * [new tag] ciflow/trunk/160836 -> ciflow/trunk/160836 2025-08-26T20:40:04.0037356Z * [new tag] ciflow/trunk/160866 -> ciflow/trunk/160866 2025-08-26T20:40:04.0037763Z * [new tag] ciflow/trunk/160915 -> ciflow/trunk/160915 2025-08-26T20:40:04.0038157Z * [new tag] ciflow/trunk/160991 -> ciflow/trunk/160991 2025-08-26T20:40:04.0038589Z * [new tag] ciflow/trunk/160992 -> ciflow/trunk/160992 2025-08-26T20:40:04.0039047Z * [new tag] ciflow/trunk/161004 -> ciflow/trunk/161004 2025-08-26T20:40:04.0039495Z * [new tag] ciflow/trunk/161016 -> ciflow/trunk/161016 2025-08-26T20:40:04.0039898Z * [new tag] ciflow/trunk/161023 -> ciflow/trunk/161023 2025-08-26T20:40:04.0040301Z * [new tag] ciflow/trunk/161026 -> ciflow/trunk/161026 2025-08-26T20:40:04.0040702Z * [new tag] ciflow/trunk/161032 -> ciflow/trunk/161032 2025-08-26T20:40:04.0041105Z * [new tag] ciflow/trunk/161035 -> ciflow/trunk/161035 2025-08-26T20:40:04.0041507Z * [new tag] ciflow/trunk/161040 -> ciflow/trunk/161040 2025-08-26T20:40:04.0041909Z * [new tag] ciflow/trunk/161094 -> ciflow/trunk/161094 2025-08-26T20:40:04.0042302Z * [new tag] ciflow/trunk/161097 -> ciflow/trunk/161097 2025-08-26T20:40:04.0042706Z * [new tag] ciflow/trunk/161098 -> ciflow/trunk/161098 2025-08-26T20:40:04.0043183Z * [new tag] ciflow/trunk/161100 -> ciflow/trunk/161100 2025-08-26T20:40:04.0043592Z * [new tag] ciflow/trunk/161106 -> ciflow/trunk/161106 2025-08-26T20:40:04.0044003Z * [new tag] ciflow/trunk/161110 -> ciflow/trunk/161110 2025-08-26T20:40:04.0044405Z * [new tag] ciflow/trunk/161114 -> ciflow/trunk/161114 2025-08-26T20:40:04.0044869Z * [new tag] ciflow/trunk/161117 -> ciflow/trunk/161117 2025-08-26T20:40:04.0045307Z * [new tag] ciflow/trunk/161123 -> ciflow/trunk/161123 2025-08-26T20:40:04.0045858Z * [new tag] ciflow/trunk/161124 -> ciflow/trunk/161124 2025-08-26T20:40:04.0046274Z * [new tag] ciflow/trunk/161126 -> ciflow/trunk/161126 2025-08-26T20:40:04.0046671Z * [new tag] ciflow/trunk/161131 -> ciflow/trunk/161131 2025-08-26T20:40:04.0047076Z * [new tag] ciflow/trunk/161143 -> ciflow/trunk/161143 2025-08-26T20:40:04.0047472Z * [new tag] ciflow/trunk/161144 -> ciflow/trunk/161144 2025-08-26T20:40:04.0047950Z * [new tag] ciflow/trunk/161164 -> ciflow/trunk/161164 2025-08-26T20:40:04.0048352Z * [new tag] ciflow/trunk/161180 -> ciflow/trunk/161180 2025-08-26T20:40:04.0405978Z * [new tag] ciflow/trunk/161214 -> ciflow/trunk/161214 2025-08-26T20:40:04.0406481Z * [new tag] ciflow/trunk/161217 -> ciflow/trunk/161217 2025-08-26T20:40:04.0406907Z * [new tag] ciflow/trunk/161225 -> ciflow/trunk/161225 2025-08-26T20:40:04.0407326Z * [new tag] ciflow/trunk/161236 -> ciflow/trunk/161236 2025-08-26T20:40:04.0407733Z * [new tag] ciflow/trunk/161237 -> ciflow/trunk/161237 2025-08-26T20:40:04.0408129Z * [new tag] ciflow/trunk/161241 -> ciflow/trunk/161241 2025-08-26T20:40:04.0408538Z * [new tag] ciflow/trunk/161262 -> ciflow/trunk/161262 2025-08-26T20:40:04.0408928Z * [new tag] ciflow/trunk/161263 -> ciflow/trunk/161263 2025-08-26T20:40:04.0409341Z * [new tag] ciflow/trunk/161279 -> ciflow/trunk/161279 2025-08-26T20:40:04.0409742Z * [new tag] ciflow/trunk/161288 -> ciflow/trunk/161288 2025-08-26T20:40:04.0410195Z * [new tag] ciflow/trunk/161306 -> ciflow/trunk/161306 2025-08-26T20:40:04.0410650Z * [new tag] ciflow/trunk/161311 -> ciflow/trunk/161311 2025-08-26T20:40:04.0411042Z * [new tag] ciflow/trunk/161354 -> ciflow/trunk/161354 2025-08-26T20:40:04.0411451Z * [new tag] ciflow/trunk/161355 -> ciflow/trunk/161355 2025-08-26T20:40:04.0411847Z * [new tag] ciflow/trunk/161362 -> ciflow/trunk/161362 2025-08-26T20:40:04.0412246Z * [new tag] ciflow/trunk/161363 -> ciflow/trunk/161363 2025-08-26T20:40:04.0412647Z * [new tag] ciflow/trunk/161370 -> ciflow/trunk/161370 2025-08-26T20:40:04.0413044Z * [new tag] ciflow/trunk/161383 -> ciflow/trunk/161383 2025-08-26T20:40:04.0413444Z * [new tag] ciflow/trunk/161385 -> ciflow/trunk/161385 2025-08-26T20:40:04.0413834Z * [new tag] ciflow/trunk/161389 -> ciflow/trunk/161389 2025-08-26T20:40:04.0414230Z * [new tag] ciflow/trunk/161392 -> ciflow/trunk/161392 2025-08-26T20:40:04.0414639Z * [new tag] ciflow/trunk/161395 -> ciflow/trunk/161395 2025-08-26T20:40:04.0415036Z * [new tag] ciflow/trunk/161396 -> ciflow/trunk/161396 2025-08-26T20:40:04.0415439Z * [new tag] ciflow/trunk/161409 -> ciflow/trunk/161409 2025-08-26T20:40:04.0415879Z * [new tag] ciflow/trunk/161410 -> ciflow/trunk/161410 2025-08-26T20:40:04.0416335Z * [new tag] ciflow/trunk/161435 -> ciflow/trunk/161435 2025-08-26T20:40:04.0416730Z * [new tag] ciflow/trunk/161437 -> ciflow/trunk/161437 2025-08-26T20:40:04.0417138Z * [new tag] ciflow/trunk/161451 -> ciflow/trunk/161451 2025-08-26T20:40:04.0417544Z * [new tag] ciflow/trunk/161453 -> ciflow/trunk/161453 2025-08-26T20:40:04.0417942Z * [new tag] ciflow/trunk/161454 -> ciflow/trunk/161454 2025-08-26T20:40:04.0418488Z * [new tag] ciflow/trunk/161489 -> ciflow/trunk/161489 2025-08-26T20:40:04.0418899Z * [new tag] ciflow/trunk/161517 -> ciflow/trunk/161517 2025-08-26T20:40:04.0419313Z * [new tag] ciflow/trunk/161538 -> ciflow/trunk/161538 2025-08-26T20:40:04.0419726Z * [new tag] ciflow/unstable/123 -> ciflow/unstable/123 2025-08-26T20:40:04.0420131Z * [new tag] ciflow/vllm/161537 -> ciflow/vllm/161537 2025-08-26T20:40:04.0420636Z * [new tag] ciflow/win-arm64/158104 -> ciflow/win-arm64/158104 2025-08-26T20:40:04.0421079Z * [new tag] ciflow/win-arm64/159562 -> ciflow/win-arm64/159562 2025-08-26T20:40:04.0421559Z * [new tag] ciflow/win-arm64/160258 -> ciflow/win-arm64/160258 2025-08-26T20:40:04.0422030Z * [new tag] ciflow/win-arm64/161504 -> ciflow/win-arm64/161504 2025-08-26T20:40:04.0422457Z * [new tag] ciflow/xpu/143553 -> ciflow/xpu/143553 2025-08-26T20:40:04.0422852Z * [new tag] ciflow/xpu/158733 -> ciflow/xpu/158733 2025-08-26T20:40:04.0423250Z * [new tag] ciflow/xpu/159473 -> ciflow/xpu/159473 2025-08-26T20:40:04.0423645Z * [new tag] ciflow/xpu/159944 -> ciflow/xpu/159944 2025-08-26T20:40:04.0424033Z * [new tag] ciflow/xpu/160067 -> ciflow/xpu/160067 2025-08-26T20:40:04.0424426Z * [new tag] ciflow/xpu/160158 -> ciflow/xpu/160158 2025-08-26T20:40:04.0424824Z * [new tag] ciflow/xpu/160940 -> ciflow/xpu/160940 2025-08-26T20:40:04.0425209Z * [new tag] ciflow/xpu/161041 -> ciflow/xpu/161041 2025-08-26T20:40:04.0425602Z * [new tag] ciflow/xpu/161045 -> ciflow/xpu/161045 2025-08-26T20:40:04.0425988Z * [new tag] ciflow/xpu/161142 -> ciflow/xpu/161142 2025-08-26T20:40:04.0426382Z * [new tag] ciflow/xpu/161152 -> ciflow/xpu/161152 2025-08-26T20:40:04.0426772Z * [new tag] ciflow/xpu/161246 -> ciflow/xpu/161246 2025-08-26T20:40:04.0427209Z * [new tag] ciflow/xpu/161389 -> ciflow/xpu/161389 2025-08-26T20:40:04.0728452Z * [new tag] ciflow/xpu/161392 -> ciflow/xpu/161392 2025-08-26T20:40:04.0729071Z * [new tag] ciflow/xpu/161397 -> ciflow/xpu/161397 2025-08-26T20:40:04.0729685Z * [new tag] ciflow/xpu/161477 -> ciflow/xpu/161477 2025-08-26T20:40:04.0730101Z * [new tag] ciflow/xpu/161489 -> ciflow/xpu/161489 2025-08-26T20:40:04.0730481Z * [new tag] cslpull75 -> cslpull75 2025-08-26T20:40:04.0730852Z * [new tag] cslpull76 -> cslpull76 2025-08-26T20:40:04.0731223Z * [new tag] cslpull77 -> cslpull77 2025-08-26T20:40:04.0731581Z * [new tag] cslpull78 -> cslpull78 2025-08-26T20:40:04.0731930Z * [new tag] cslpull79 -> cslpull79 2025-08-26T20:40:04.0732295Z * [new tag] cslpull80 -> cslpull80 2025-08-26T20:40:04.0732655Z * [new tag] cslpull81 -> cslpull81 2025-08-26T20:40:04.0733002Z * [new tag] cslpull82 -> cslpull82 2025-08-26T20:40:04.0733363Z * [new tag] cslpull83 -> cslpull83 2025-08-26T20:40:04.0733717Z * [new tag] cslpull84 -> cslpull84 2025-08-26T20:40:04.0734075Z * [new tag] cslpull85 -> cslpull85 2025-08-26T20:40:04.0734436Z * [new tag] cslpull86 -> cslpull86 2025-08-26T20:40:04.0734789Z * [new tag] cslpull87 -> cslpull87 2025-08-26T20:40:04.0735301Z * [new tag] cslpull88 -> cslpull88 2025-08-26T20:40:04.0735654Z * [new tag] cslpull89 -> cslpull89 2025-08-26T20:40:04.0736024Z * [new tag] cslpull90 -> cslpull90 2025-08-26T20:40:04.0736381Z * [new tag] cslpull91 -> cslpull91 2025-08-26T20:40:04.0736750Z * [new tag] cslpull92 -> cslpull92 2025-08-26T20:40:04.0737114Z * [new tag] flight_5 -> flight_5 2025-08-26T20:40:04.0737547Z * [new tag] flight_5.1 -> flight_5.1 2025-08-26T20:40:04.0737913Z * [new tag] flight_5.2 -> flight_5.2 2025-08-26T20:40:04.0738265Z * [new tag] flight_5.3 -> flight_5.3 2025-08-26T20:40:04.0738627Z * [new tag] forpull1 -> forpull1 2025-08-26T20:40:04.0739017Z * [new tag] malfet/tag-2ef5611 -> malfet/tag-2ef5611 2025-08-26T20:40:04.0739444Z * [new tag] malfet/tag-317b1a0 -> malfet/tag-317b1a0 2025-08-26T20:40:04.0739856Z * [new tag] malfet/tag-ec6f767 -> malfet/tag-ec6f767 2025-08-26T20:40:04.0740258Z * [new tag] nightly-binary -> nightly-binary 2025-08-26T20:40:04.0740675Z * [new tag] sqzhang_flight4_plus -> sqzhang_flight4_plus 2025-08-26T20:40:04.0741089Z * [new tag] sqzhang_flight_3 -> sqzhang_flight_3 2025-08-26T20:40:04.0741708Z * [new tag] trunk/00efeabc295e072fb9d6e68b008a31fb04201fd1 -> trunk/00efeabc295e072fb9d6e68b008a31fb04201fd1 2025-08-26T20:40:04.0742533Z * [new tag] trunk/037c43d3b24d4db733011cb904c385eaa6e11bcf -> trunk/037c43d3b24d4db733011cb904c385eaa6e11bcf 2025-08-26T20:40:04.0743337Z * [new tag] trunk/0533ff2ccba7e77622ac3c6758f1032bdc10feff -> trunk/0533ff2ccba7e77622ac3c6758f1032bdc10feff 2025-08-26T20:40:04.0744152Z * [new tag] trunk/05e8fac4f374c4dbf0cd0e85e925e9112cf234a2 -> trunk/05e8fac4f374c4dbf0cd0e85e925e9112cf234a2 2025-08-26T20:40:04.0744959Z * [new tag] trunk/089ad1d88bf31ddab769a4f87750b474ed1214c8 -> trunk/089ad1d88bf31ddab769a4f87750b474ed1214c8 2025-08-26T20:40:04.0745756Z * [new tag] trunk/0924304e728b9507a54eced28c812fbd5b13c397 -> trunk/0924304e728b9507a54eced28c812fbd5b13c397 2025-08-26T20:40:04.0746566Z * [new tag] trunk/0a5ab612dd2b9fc5bb2e1281ec7ca8730c5c3c89 -> trunk/0a5ab612dd2b9fc5bb2e1281ec7ca8730c5c3c89 2025-08-26T20:40:04.0747360Z * [new tag] trunk/0d19541284c38212235f78db24e3ac3ae4787e45 -> trunk/0d19541284c38212235f78db24e3ac3ae4787e45 2025-08-26T20:40:04.0748157Z * [new tag] trunk/0d9da384ef76e3ce2e7eaf951252ae9edb922863 -> trunk/0d9da384ef76e3ce2e7eaf951252ae9edb922863 2025-08-26T20:40:04.0748974Z * [new tag] trunk/0dea191ff7b844352dc2cd5e3b5ef5ea13a76756 -> trunk/0dea191ff7b844352dc2cd5e3b5ef5ea13a76756 2025-08-26T20:40:04.0749765Z * [new tag] trunk/0f801a510f5f185543388717241adb7237c3d46a -> trunk/0f801a510f5f185543388717241adb7237c3d46a 2025-08-26T20:40:04.0750558Z * [new tag] trunk/10e67f5ec3834da93fc2022caa7ac69cf97c01f0 -> trunk/10e67f5ec3834da93fc2022caa7ac69cf97c01f0 2025-08-26T20:40:04.0751358Z * [new tag] trunk/1113e7de30da95973c1eac7921601f9a0e94f2db -> trunk/1113e7de30da95973c1eac7921601f9a0e94f2db 2025-08-26T20:40:04.1015260Z * [new tag] trunk/117f11adb4b41a5485b570c4337c22ecc8e00aeb -> trunk/117f11adb4b41a5485b570c4337c22ecc8e00aeb 2025-08-26T20:40:04.1016228Z * [new tag] trunk/1471b20cb3fc502931ef12b1420414e32facd5b0 -> trunk/1471b20cb3fc502931ef12b1420414e32facd5b0 2025-08-26T20:40:04.1017106Z * [new tag] trunk/16e811e0b5073c7b42fe76f650ca2b79e339e053 -> trunk/16e811e0b5073c7b42fe76f650ca2b79e339e053 2025-08-26T20:40:04.1018174Z * [new tag] trunk/17b0263e86aec8aed068bb8b6744b129233e8084 -> trunk/17b0263e86aec8aed068bb8b6744b129233e8084 2025-08-26T20:40:04.1019059Z * [new tag] trunk/18271148d32da3d48897e9e7515de45066fce5bc -> trunk/18271148d32da3d48897e9e7515de45066fce5bc 2025-08-26T20:40:04.1019958Z * [new tag] trunk/19c70c2f3dc345a6555318f5f8b46cd55c42d0b4 -> trunk/19c70c2f3dc345a6555318f5f8b46cd55c42d0b4 2025-08-26T20:40:04.1020931Z * [new tag] trunk/1a566c4909ccf16ace1fbf1f65d90c995b362712 -> trunk/1a566c4909ccf16ace1fbf1f65d90c995b362712 2025-08-26T20:40:04.1021824Z * [new tag] trunk/1d458e294755ff2bfa314c67ddc5cb1dacc2aee8 -> trunk/1d458e294755ff2bfa314c67ddc5cb1dacc2aee8 2025-08-26T20:40:04.1022699Z * [new tag] trunk/1d46aa736fc8870dc88015c729a8c64470fa985c -> trunk/1d46aa736fc8870dc88015c729a8c64470fa985c 2025-08-26T20:40:04.1023512Z * [new tag] trunk/1de4540449ad6b9df8f452ab72da30ce8908af60 -> trunk/1de4540449ad6b9df8f452ab72da30ce8908af60 2025-08-26T20:40:04.1024295Z * [new tag] trunk/1e3fe78a104776cd708f150116348540346dae25 -> trunk/1e3fe78a104776cd708f150116348540346dae25 2025-08-26T20:40:04.1025086Z * [new tag] trunk/1ea918caf990c84bcb4e4ee5eee90f1102815b0a -> trunk/1ea918caf990c84bcb4e4ee5eee90f1102815b0a 2025-08-26T20:40:04.1025893Z * [new tag] trunk/1eccfb157ab9855b3f81872a23502fb15f455e0a -> trunk/1eccfb157ab9855b3f81872a23502fb15f455e0a 2025-08-26T20:40:04.1026692Z * [new tag] trunk/1fbe230b0d82251c6de8b5ae86c4da456b1db05c -> trunk/1fbe230b0d82251c6de8b5ae86c4da456b1db05c 2025-08-26T20:40:04.1027528Z * [new tag] trunk/209143ddeb99b0b075d16525088cee4893be7492 -> trunk/209143ddeb99b0b075d16525088cee4893be7492 2025-08-26T20:40:04.1028398Z * [new tag] trunk/22df59efc0a845b3ff37019029efd07c5a25c456 -> trunk/22df59efc0a845b3ff37019029efd07c5a25c456 2025-08-26T20:40:04.1029200Z * [new tag] trunk/23b033452fb1d4b404216279bbf5b6d06d8570c3 -> trunk/23b033452fb1d4b404216279bbf5b6d06d8570c3 2025-08-26T20:40:04.1029989Z * [new tag] trunk/24e7f3c21c9452c81d72bbd4b0c6b1f96f33536a -> trunk/24e7f3c21c9452c81d72bbd4b0c6b1f96f33536a 2025-08-26T20:40:04.1030800Z * [new tag] trunk/25df65afd8b5e2fffbcaf2b7ed63ef7a1e37ecb9 -> trunk/25df65afd8b5e2fffbcaf2b7ed63ef7a1e37ecb9 2025-08-26T20:40:04.1031604Z * [new tag] trunk/262640fd220236042fbf4443cc163c8838c84c3d -> trunk/262640fd220236042fbf4443cc163c8838c84c3d 2025-08-26T20:40:04.1032383Z * [new tag] trunk/266784ec6ae82f823abe406582e7a91f2ebb564a -> trunk/266784ec6ae82f823abe406582e7a91f2ebb564a 2025-08-26T20:40:04.1033173Z * [new tag] trunk/2835cc5e91eda8cbc4ac59de2ca990fa17107409 -> trunk/2835cc5e91eda8cbc4ac59de2ca990fa17107409 2025-08-26T20:40:04.1034055Z * [new tag] trunk/284b7190054686e68d9cc683b6ce43e45dd22338 -> trunk/284b7190054686e68d9cc683b6ce43e45dd22338 2025-08-26T20:40:04.1034870Z * [new tag] trunk/29afde20203ee6773641b4e3552942a37315316f -> trunk/29afde20203ee6773641b4e3552942a37315316f 2025-08-26T20:40:04.1035667Z * [new tag] trunk/2a7a7ad7116d930fde86cda02f668e624d26ec3e -> trunk/2a7a7ad7116d930fde86cda02f668e624d26ec3e 2025-08-26T20:40:04.1036467Z * [new tag] trunk/2b62ef74208792c7c4bf923f872e54b5f384efc8 -> trunk/2b62ef74208792c7c4bf923f872e54b5f384efc8 2025-08-26T20:40:04.1037251Z * [new tag] trunk/2beffb3311a41589021c121dac543994a7cbdff2 -> trunk/2beffb3311a41589021c121dac543994a7cbdff2 2025-08-26T20:40:04.1038047Z * [new tag] trunk/2c0650a00a0a0dd2bbf25ed22780fdd881bcda54 -> trunk/2c0650a00a0a0dd2bbf25ed22780fdd881bcda54 2025-08-26T20:40:04.1038848Z * [new tag] trunk/2cf69fe0e1bdb1413fe9e802c4b84d8958708421 -> trunk/2cf69fe0e1bdb1413fe9e802c4b84d8958708421 2025-08-26T20:40:04.1039784Z * [new tag] trunk/2cf7ac2fb7ab4067e17cc5ca71034b1c61a4fb10 -> trunk/2cf7ac2fb7ab4067e17cc5ca71034b1c61a4fb10 2025-08-26T20:40:04.1040679Z * [new tag] trunk/2f0cba934de7094a66c6ce68f5e937254f23142a -> trunk/2f0cba934de7094a66c6ce68f5e937254f23142a 2025-08-26T20:40:04.1041490Z * [new tag] trunk/2f0de0ff9361ca4f2b1e6f9edbc600b5fb6abcd6 -> trunk/2f0de0ff9361ca4f2b1e6f9edbc600b5fb6abcd6 2025-08-26T20:40:04.1042371Z * [new tag] trunk/2f50ae7d2022cb096c4156f5a207c291e36ddecf -> trunk/2f50ae7d2022cb096c4156f5a207c291e36ddecf 2025-08-26T20:40:04.1251977Z * [new tag] trunk/2fdd4f918cdc5fc8070e4c9c0d87b9045d316c06 -> trunk/2fdd4f918cdc5fc8070e4c9c0d87b9045d316c06 2025-08-26T20:40:04.1252837Z * [new tag] trunk/30384abcb1d181e774c0ac21b580aa34336a96c6 -> trunk/30384abcb1d181e774c0ac21b580aa34336a96c6 2025-08-26T20:40:04.1253680Z * [new tag] trunk/31a41daff49f2cde941d8b9e35cb2eaeeb606c0d -> trunk/31a41daff49f2cde941d8b9e35cb2eaeeb606c0d 2025-08-26T20:40:04.1254484Z * [new tag] trunk/332fa5b388521c05a19217649745c6edfdc2836d -> trunk/332fa5b388521c05a19217649745c6edfdc2836d 2025-08-26T20:40:04.1255244Z * [new tag] trunk/33346b58148c55592994a43385c321ae8c8808f2 -> trunk/33346b58148c55592994a43385c321ae8c8808f2 2025-08-26T20:40:04.1256025Z * [new tag] trunk/3373b074f5ea5277974fa6e945544fdfb16bb446 -> trunk/3373b074f5ea5277974fa6e945544fdfb16bb446 2025-08-26T20:40:04.1256802Z * [new tag] trunk/33c3794533844236a6e30ba377e0a6802b279fc8 -> trunk/33c3794533844236a6e30ba377e0a6802b279fc8 2025-08-26T20:40:04.1257593Z * [new tag] trunk/35e4d97e047bff8b38fee1dcf6ef6503f0fc9208 -> trunk/35e4d97e047bff8b38fee1dcf6ef6503f0fc9208 2025-08-26T20:40:04.1258384Z * [new tag] trunk/36ac916929ca67b533cc45932970297e9824324e -> trunk/36ac916929ca67b533cc45932970297e9824324e 2025-08-26T20:40:04.1259169Z * [new tag] trunk/371909cfd10e0da1bab1e12fb54a2403c37c5f76 -> trunk/371909cfd10e0da1bab1e12fb54a2403c37c5f76 2025-08-26T20:40:04.1259972Z * [new tag] trunk/373e25c2eb9f882356a9c7a2f18020935ff1d78b -> trunk/373e25c2eb9f882356a9c7a2f18020935ff1d78b 2025-08-26T20:40:04.1260761Z * [new tag] trunk/37a34022b59a6ff2757e5cec0fdc72278418f339 -> trunk/37a34022b59a6ff2757e5cec0fdc72278418f339 2025-08-26T20:40:04.1261554Z * [new tag] trunk/38a492d40d7ebb2856cb120df337c6cdac244528 -> trunk/38a492d40d7ebb2856cb120df337c6cdac244528 2025-08-26T20:40:04.1262360Z * [new tag] trunk/394728bab2de21e8002fc6a47aa4d3acb2d7a728 -> trunk/394728bab2de21e8002fc6a47aa4d3acb2d7a728 2025-08-26T20:40:04.1263151Z * [new tag] trunk/39862acb2e320783245d2a03acfd1b14cae28038 -> trunk/39862acb2e320783245d2a03acfd1b14cae28038 2025-08-26T20:40:04.1263944Z * [new tag] trunk/3a4140bf8e783db3f0094d2a2ce1d8534066432f -> trunk/3a4140bf8e783db3f0094d2a2ce1d8534066432f 2025-08-26T20:40:04.1264758Z * [new tag] trunk/3caddd4daa5b1a167663c07219e065e86247ad76 -> trunk/3caddd4daa5b1a167663c07219e065e86247ad76 2025-08-26T20:40:04.1265573Z * [new tag] trunk/3dacaf0e1eb3286e70bf8d572000ecebf2c1f4c9 -> trunk/3dacaf0e1eb3286e70bf8d572000ecebf2c1f4c9 2025-08-26T20:40:04.1266383Z * [new tag] trunk/3e210f90c2cbd5817aa23d430da10cad200a3ffa -> trunk/3e210f90c2cbd5817aa23d430da10cad200a3ffa 2025-08-26T20:40:04.1267177Z * [new tag] trunk/3e3e83418d0f6b1495f79380f3a3dbc8b2d23062 -> trunk/3e3e83418d0f6b1495f79380f3a3dbc8b2d23062 2025-08-26T20:40:04.1267964Z * [new tag] trunk/3e5b021f217a42ae55dc690083f67a28126808ed -> trunk/3e5b021f217a42ae55dc690083f67a28126808ed 2025-08-26T20:40:04.1268756Z * [new tag] trunk/3ea6cc8c2d443d6104159d50e8328c144f6caa39 -> trunk/3ea6cc8c2d443d6104159d50e8328c144f6caa39 2025-08-26T20:40:04.1269693Z * [new tag] trunk/3f1a97a99cad4cc682b20b43c1178ed9e1b81f24 -> trunk/3f1a97a99cad4cc682b20b43c1178ed9e1b81f24 2025-08-26T20:40:04.1270499Z * [new tag] trunk/3f5a8e2003f2234ca8be19fdc307ba7b995f9be3 -> trunk/3f5a8e2003f2234ca8be19fdc307ba7b995f9be3 2025-08-26T20:40:04.1271306Z * [new tag] trunk/40c0e700a488191cd8f541b30d8e3b9f2c0bc759 -> trunk/40c0e700a488191cd8f541b30d8e3b9f2c0bc759 2025-08-26T20:40:04.1272092Z * [new tag] trunk/419a2dbf5f69cee52382090200b532a81da92c69 -> trunk/419a2dbf5f69cee52382090200b532a81da92c69 2025-08-26T20:40:04.1272994Z * [new tag] trunk/431846a6323c6f1d02da49e311ac694324f386f4 -> trunk/431846a6323c6f1d02da49e311ac694324f386f4 2025-08-26T20:40:04.1273775Z * [new tag] trunk/44549c7146bd6c4166f97e856037babe1b7f4f49 -> trunk/44549c7146bd6c4166f97e856037babe1b7f4f49 2025-08-26T20:40:04.1274571Z * [new tag] trunk/447d34b5f80fb7350f79decd855cb599cab39083 -> trunk/447d34b5f80fb7350f79decd855cb599cab39083 2025-08-26T20:40:04.1275369Z * [new tag] trunk/46429be72323c1807a785234164bd91011f68d08 -> trunk/46429be72323c1807a785234164bd91011f68d08 2025-08-26T20:40:04.1276156Z * [new tag] trunk/4651aaac47ff855e08a74e2fdbfa605bc53afba8 -> trunk/4651aaac47ff855e08a74e2fdbfa605bc53afba8 2025-08-26T20:40:04.1276983Z * [new tag] trunk/46576f5a164fcf95ec7fceaa13516bcb1ca4f6ab -> trunk/46576f5a164fcf95ec7fceaa13516bcb1ca4f6ab 2025-08-26T20:40:04.1480326Z * [new tag] trunk/47d267364cad407b5612bf4a5faa160d2f4a7121 -> trunk/47d267364cad407b5612bf4a5faa160d2f4a7121 2025-08-26T20:40:04.1481146Z * [new tag] trunk/49ff884b1edc3b872eeb2387ec60ef230cae7f24 -> trunk/49ff884b1edc3b872eeb2387ec60ef230cae7f24 2025-08-26T20:40:04.1481974Z * [new tag] trunk/4a1aca11c20cfa29a1513b9f289d75bfe32d05d4 -> trunk/4a1aca11c20cfa29a1513b9f289d75bfe32d05d4 2025-08-26T20:40:04.1482818Z * [new tag] trunk/4acdbb8311f760513556e2e4fdd7bfd88c225e52 -> trunk/4acdbb8311f760513556e2e4fdd7bfd88c225e52 2025-08-26T20:40:04.1483651Z * [new tag] trunk/4c36c8a99463c898190a462300ba7f05b5b3384e -> trunk/4c36c8a99463c898190a462300ba7f05b5b3384e 2025-08-26T20:40:04.1484482Z * [new tag] trunk/4e19c1906a830714c1d9d71361357ce616a034d6 -> trunk/4e19c1906a830714c1d9d71361357ce616a034d6 2025-08-26T20:40:04.1485315Z * [new tag] trunk/4ed3184dee1bf4f775839bfd1448a7a34fe5a898 -> trunk/4ed3184dee1bf4f775839bfd1448a7a34fe5a898 2025-08-26T20:40:04.1486127Z * [new tag] trunk/50cfe76231768ee2c784f68a1eba03369f386019 -> trunk/50cfe76231768ee2c784f68a1eba03369f386019 2025-08-26T20:40:04.1486928Z * [new tag] trunk/510825e5fed8b56eb5e9352c12f0df1feeadb810 -> trunk/510825e5fed8b56eb5e9352c12f0df1feeadb810 2025-08-26T20:40:04.1487716Z * [new tag] trunk/512fc768e94c937df350911aaa4ebce757d1f9df -> trunk/512fc768e94c937df350911aaa4ebce757d1f9df 2025-08-26T20:40:04.1488512Z * [new tag] trunk/517d38d3406abbba35d0694bff259a698cad3ec9 -> trunk/517d38d3406abbba35d0694bff259a698cad3ec9 2025-08-26T20:40:04.1489318Z * [new tag] trunk/5255e65c01bf48bbcd916ecf16ed81cf28d3c6e2 -> trunk/5255e65c01bf48bbcd916ecf16ed81cf28d3c6e2 2025-08-26T20:40:04.1490164Z * [new tag] trunk/543896fcf3312f2053018edf9ee74c0fbb1d28ed -> trunk/543896fcf3312f2053018edf9ee74c0fbb1d28ed 2025-08-26T20:40:04.1491111Z * [new tag] trunk/54c2b66592d168e4a7525f7a58f8ca020517a9cb -> trunk/54c2b66592d168e4a7525f7a58f8ca020517a9cb 2025-08-26T20:40:04.1492372Z * [new tag] trunk/54cc63b467f24242cf0d6538d3e1df39e553daf1 -> trunk/54cc63b467f24242cf0d6538d3e1df39e553daf1 2025-08-26T20:40:04.1493709Z * [new tag] trunk/56ebed627a23eea36190e1ced5024a18ffcedbd7 -> trunk/56ebed627a23eea36190e1ced5024a18ffcedbd7 2025-08-26T20:40:04.1495241Z * [new tag] trunk/576a0e64ed2470abd2c430205d1984a11951ce05 -> trunk/576a0e64ed2470abd2c430205d1984a11951ce05 2025-08-26T20:40:04.1496625Z * [new tag] trunk/5805c4210b477f0a7315d6038078dc4a8be1c8fa -> trunk/5805c4210b477f0a7315d6038078dc4a8be1c8fa 2025-08-26T20:40:04.1497932Z * [new tag] trunk/58f9a3dd6391397e439c5f5075837e8f983735aa -> trunk/58f9a3dd6391397e439c5f5075837e8f983735aa 2025-08-26T20:40:04.1499266Z * [new tag] trunk/595987d28d4c8aee68de83734af919c7710ad58b -> trunk/595987d28d4c8aee68de83734af919c7710ad58b 2025-08-26T20:40:04.1500786Z * [new tag] trunk/599f639ddb8bb45abb2dc305542f38288427183d -> trunk/599f639ddb8bb45abb2dc305542f38288427183d 2025-08-26T20:40:04.1501923Z * [new tag] trunk/5afa4187dfe1e99278f8e372ec09102d5b937572 -> trunk/5afa4187dfe1e99278f8e372ec09102d5b937572 2025-08-26T20:40:04.1502726Z * [new tag] trunk/5d9653d90ee003173dd03f93e09fed236500ef06 -> trunk/5d9653d90ee003173dd03f93e09fed236500ef06 2025-08-26T20:40:04.1503547Z * [new tag] trunk/5dad5b4f57ade4001c0f421dbdad2e418304870e -> trunk/5dad5b4f57ade4001c0f421dbdad2e418304870e 2025-08-26T20:40:04.1504358Z * [new tag] trunk/5ee464db5c4293ac09521f9069fa7d2106680a7f -> trunk/5ee464db5c4293ac09521f9069fa7d2106680a7f 2025-08-26T20:40:04.1505143Z * [new tag] trunk/6096d277c543f5dd40351431ef9a8d556134c74d -> trunk/6096d277c543f5dd40351431ef9a8d556134c74d 2025-08-26T20:40:04.1505922Z * [new tag] trunk/62db8ec39116544ae247f876b3e06753178db49b -> trunk/62db8ec39116544ae247f876b3e06753178db49b 2025-08-26T20:40:04.1506713Z * [new tag] trunk/639b8cc51ddebf10361f3840a6b0a244eb6092a1 -> trunk/639b8cc51ddebf10361f3840a6b0a244eb6092a1 2025-08-26T20:40:04.1507593Z * [new tag] trunk/6443ea337df843681bc558d99efa84a3e5559b7f -> trunk/6443ea337df843681bc558d99efa84a3e5559b7f 2025-08-26T20:40:04.1508437Z * [new tag] trunk/6598f00c18dfcc4fc50427305b6b5724e617246f -> trunk/6598f00c18dfcc4fc50427305b6b5724e617246f 2025-08-26T20:40:04.1509285Z * [new tag] trunk/65d21dae18a34e8bd1b2f0e5aec7144b9dd33611 -> trunk/65d21dae18a34e8bd1b2f0e5aec7144b9dd33611 2025-08-26T20:40:04.1510102Z * [new tag] trunk/660b5656a436dcccb0275ea5421d3eb4f1157b43 -> trunk/660b5656a436dcccb0275ea5421d3eb4f1157b43 2025-08-26T20:40:04.1510896Z * [new tag] trunk/66166cf1e7696bf25f6f7bb815a93df367db48dc -> trunk/66166cf1e7696bf25f6f7bb815a93df367db48dc 2025-08-26T20:40:04.1704380Z * [new tag] trunk/667245dc60242a35ae0a6b0072628eb8e15a6d03 -> trunk/667245dc60242a35ae0a6b0072628eb8e15a6d03 2025-08-26T20:40:04.1705192Z * [new tag] trunk/67b98da1b262317f9c0375d64a4b467c82712548 -> trunk/67b98da1b262317f9c0375d64a4b467c82712548 2025-08-26T20:40:04.1705979Z * [new tag] trunk/67d31f6b281d3b15b205756fc7ebc450cdde1dab -> trunk/67d31f6b281d3b15b205756fc7ebc450cdde1dab 2025-08-26T20:40:04.1706782Z * [new tag] trunk/67fc16c7447f4fc04e7d28bfe201a4a0c78f3ea4 -> trunk/67fc16c7447f4fc04e7d28bfe201a4a0c78f3ea4 2025-08-26T20:40:04.1707591Z * [new tag] trunk/6aef9f3a6906c011a57541c1de7a246222bc9ac9 -> trunk/6aef9f3a6906c011a57541c1de7a246222bc9ac9 2025-08-26T20:40:04.1708369Z * [new tag] trunk/6afd766401659e0ba40589939c2576a29e9c64e7 -> trunk/6afd766401659e0ba40589939c2576a29e9c64e7 2025-08-26T20:40:04.1709174Z * [new tag] trunk/6ea4be1e2eca952ea66090182bd2eede89799a45 -> trunk/6ea4be1e2eca952ea66090182bd2eede89799a45 2025-08-26T20:40:04.1709985Z * [new tag] trunk/7006fd0c8874cb0228d3f2bfd83a989bde4b7021 -> trunk/7006fd0c8874cb0228d3f2bfd83a989bde4b7021 2025-08-26T20:40:04.1710771Z * [new tag] trunk/710514a2a51facaba445d2c188541d778f9fdb59 -> trunk/710514a2a51facaba445d2c188541d778f9fdb59 2025-08-26T20:40:04.1711583Z * [new tag] trunk/7131bfab89c46ffe31b61ea4937a8727e9cf33c1 -> trunk/7131bfab89c46ffe31b61ea4937a8727e9cf33c1 2025-08-26T20:40:04.1712517Z * [new tag] trunk/726dce3c944cbda16e54d3b15cdb4b6ced05af72 -> trunk/726dce3c944cbda16e54d3b15cdb4b6ced05af72 2025-08-26T20:40:04.1713318Z * [new tag] trunk/72e4786d1635681b8d053d0168c7d16b980e5124 -> trunk/72e4786d1635681b8d053d0168c7d16b980e5124 2025-08-26T20:40:04.1714078Z * [new tag] trunk/7376111d59f3170c2814d565c09d09435189692a -> trunk/7376111d59f3170c2814d565c09d09435189692a 2025-08-26T20:40:04.1714937Z * [new tag] trunk/74124d1b46774f2a73aa1aadc2b0874cb523b1c1 -> trunk/74124d1b46774f2a73aa1aadc2b0874cb523b1c1 2025-08-26T20:40:04.1715716Z * [new tag] trunk/74280d091321343b47a2975e17584b973d7c22c4 -> trunk/74280d091321343b47a2975e17584b973d7c22c4 2025-08-26T20:40:04.1716502Z * [new tag] trunk/74c4c758afa8c28162f00a456c185552e1159fd3 -> trunk/74c4c758afa8c28162f00a456c185552e1159fd3 2025-08-26T20:40:04.1717275Z * [new tag] trunk/763053dc536341997641e920d8887b3010901b3b -> trunk/763053dc536341997641e920d8887b3010901b3b 2025-08-26T20:40:04.1718057Z * [new tag] trunk/774b4befa18741b3115802cae71000168a40c384 -> trunk/774b4befa18741b3115802cae71000168a40c384 2025-08-26T20:40:04.1718850Z * [new tag] trunk/77bc959fe122bfd131e339ca36cab445a1860806 -> trunk/77bc959fe122bfd131e339ca36cab445a1860806 2025-08-26T20:40:04.1719643Z * [new tag] trunk/78a8e6a671c5631bc0e89b0e674790a424540547 -> trunk/78a8e6a671c5631bc0e89b0e674790a424540547 2025-08-26T20:40:04.1720452Z * [new tag] trunk/7e4bfa74eafab994b01f8b5501d4d061cbf64808 -> trunk/7e4bfa74eafab994b01f8b5501d4d061cbf64808 2025-08-26T20:40:04.1721245Z * [new tag] trunk/7e6ce41555d595e3fa0d91059491f21cee3eb5ea -> trunk/7e6ce41555d595e3fa0d91059491f21cee3eb5ea 2025-08-26T20:40:04.1722034Z * [new tag] trunk/7f201baf414301b3312576893b7f6f2698acd9ba -> trunk/7f201baf414301b3312576893b7f6f2698acd9ba 2025-08-26T20:40:04.1722842Z * [new tag] trunk/7fcdd8d6afeda6a4c8630816e12bf7cca44b8f8a -> trunk/7fcdd8d6afeda6a4c8630816e12bf7cca44b8f8a 2025-08-26T20:40:04.1723698Z * [new tag] trunk/801851086d09506d081800108c9e214edb3f5b7d -> trunk/801851086d09506d081800108c9e214edb3f5b7d 2025-08-26T20:40:04.1724479Z * [new tag] trunk/8047cde0f3a27f3afa218792b8464d5e0c9d942f -> trunk/8047cde0f3a27f3afa218792b8464d5e0c9d942f 2025-08-26T20:40:04.1725270Z * [new tag] trunk/80df27a612be3433516d7e6dfc8d8be058425d3e -> trunk/80df27a612be3433516d7e6dfc8d8be058425d3e 2025-08-26T20:40:04.1726066Z * [new tag] trunk/818ba434c7de4cd604184b2857d544e0ad95735f -> trunk/818ba434c7de4cd604184b2857d544e0ad95735f 2025-08-26T20:40:04.1726863Z * [new tag] trunk/83283ce7f5a7847b4e561e22be9b0f4530b05527 -> trunk/83283ce7f5a7847b4e561e22be9b0f4530b05527 2025-08-26T20:40:04.1727659Z * [new tag] trunk/85adf80cf15538a7e010fa235036fe8e06f8bede -> trunk/85adf80cf15538a7e010fa235036fe8e06f8bede 2025-08-26T20:40:04.1728473Z * [new tag] trunk/8aad3a60ce16a4acab17a8e46e5df339db2ff740 -> trunk/8aad3a60ce16a4acab17a8e46e5df339db2ff740 2025-08-26T20:40:04.1729277Z * [new tag] trunk/8c442e4fd3310e15f57770944f883ac1d73e77e2 -> trunk/8c442e4fd3310e15f57770944f883ac1d73e77e2 2025-08-26T20:40:04.1930390Z * [new tag] trunk/8c506e6310b9b5295151fb725be479d0f80ce5e8 -> trunk/8c506e6310b9b5295151fb725be479d0f80ce5e8 2025-08-26T20:40:04.1931323Z * [new tag] trunk/8cfc119491f533c4edded4263a78eb0af782a2d5 -> trunk/8cfc119491f533c4edded4263a78eb0af782a2d5 2025-08-26T20:40:04.1932157Z * [new tag] trunk/8dbe7f99bd707ee28ae12ecb9cab54e1785bf13e -> trunk/8dbe7f99bd707ee28ae12ecb9cab54e1785bf13e 2025-08-26T20:40:04.1932967Z * [new tag] trunk/8e1770905565cd67d6c3a91c7afa462f4ef6e6aa -> trunk/8e1770905565cd67d6c3a91c7afa462f4ef6e6aa 2025-08-26T20:40:04.1933924Z * [new tag] trunk/8f31aa97a3e1e17bed29b6cedf9884f0c6b145e9 -> trunk/8f31aa97a3e1e17bed29b6cedf9884f0c6b145e9 2025-08-26T20:40:04.1934718Z * [new tag] trunk/8f766d68397736053883aa281cae0eb46bb233bb -> trunk/8f766d68397736053883aa281cae0eb46bb233bb 2025-08-26T20:40:04.1935517Z * [new tag] trunk/908b0ccb1f70ed2cfa830484e05ee32af13b1836 -> trunk/908b0ccb1f70ed2cfa830484e05ee32af13b1836 2025-08-26T20:40:04.1936522Z * [new tag] trunk/90ea9ccefe3e2d9a9e4840016d1af10c1814d48b -> trunk/90ea9ccefe3e2d9a9e4840016d1af10c1814d48b 2025-08-26T20:40:04.1937323Z * [new tag] trunk/9225c6199412f8a2ee99b7c29f533fb98b9ff62e -> trunk/9225c6199412f8a2ee99b7c29f533fb98b9ff62e 2025-08-26T20:40:04.1938110Z * [new tag] trunk/923bc46122d173a7964c646311a3bea3cd8dd561 -> trunk/923bc46122d173a7964c646311a3bea3cd8dd561 2025-08-26T20:40:04.1938884Z * [new tag] trunk/92ab18482459a63e97f1374e27e8411964da9762 -> trunk/92ab18482459a63e97f1374e27e8411964da9762 2025-08-26T20:40:04.1939674Z * [new tag] trunk/94b9569c4a86e12b944ca66e3125357a14d0eb9e -> trunk/94b9569c4a86e12b944ca66e3125357a14d0eb9e 2025-08-26T20:40:04.1940474Z * [new tag] trunk/957b170d8efe2a51147e0cdb7515acc345ba81da -> trunk/957b170d8efe2a51147e0cdb7515acc345ba81da 2025-08-26T20:40:04.1941273Z * [new tag] trunk/958f9ca88e9a1580de7c94a5a2ca8a750b1335ae -> trunk/958f9ca88e9a1580de7c94a5a2ca8a750b1335ae 2025-08-26T20:40:04.1942113Z * [new tag] trunk/96682103026b5ea27f19e6db9303e17572095b0e -> trunk/96682103026b5ea27f19e6db9303e17572095b0e 2025-08-26T20:40:04.1942936Z * [new tag] trunk/97200c971110d54030feaad999698c7341f8acc7 -> trunk/97200c971110d54030feaad999698c7341f8acc7 2025-08-26T20:40:04.1943714Z * [new tag] trunk/981ac533c6e69a77538aaa7a9747c3d840dfa8be -> trunk/981ac533c6e69a77538aaa7a9747c3d840dfa8be 2025-08-26T20:40:04.1944504Z * [new tag] trunk/995397d47a0e27394ee1010f158e181eb304100a -> trunk/995397d47a0e27394ee1010f158e181eb304100a 2025-08-26T20:40:04.1945275Z * [new tag] trunk/9a41570199155eee92ebd28452a556075e34e1b4 -> trunk/9a41570199155eee92ebd28452a556075e34e1b4 2025-08-26T20:40:04.1946077Z * [new tag] trunk/9b3ebd25acfd2ff4e9b7428079ba364d6f8a14da -> trunk/9b3ebd25acfd2ff4e9b7428079ba364d6f8a14da 2025-08-26T20:40:04.1946907Z * [new tag] trunk/9b4adc4db7494dbc4dbbac5dd85ccbf5babaef44 -> trunk/9b4adc4db7494dbc4dbbac5dd85ccbf5babaef44 2025-08-26T20:40:04.1947775Z * [new tag] trunk/9d18bf01b1661d227f6af41ac07a1e9ef20a9e1a -> trunk/9d18bf01b1661d227f6af41ac07a1e9ef20a9e1a 2025-08-26T20:40:04.1948638Z * [new tag] trunk/9d7cecdd6c44c5421d341bcc359be4097ea9a2f5 -> trunk/9d7cecdd6c44c5421d341bcc359be4097ea9a2f5 2025-08-26T20:40:04.1949462Z * [new tag] trunk/9d882fd9ffc6ad2a292fee548740aabfea745002 -> trunk/9d882fd9ffc6ad2a292fee548740aabfea745002 2025-08-26T20:40:04.1950276Z * [new tag] trunk/9d9cc9897ac44a1a8df38211b03d8342a8af48c3 -> trunk/9d9cc9897ac44a1a8df38211b03d8342a8af48c3 2025-08-26T20:40:04.1951069Z * [new tag] trunk/9e1c9541344b2aa1c946edb779d275072f3b8f4a -> trunk/9e1c9541344b2aa1c946edb779d275072f3b8f4a 2025-08-26T20:40:04.1951862Z * [new tag] trunk/9e491f753ee521a70e6a7e7dbb36f96c9350f5ea -> trunk/9e491f753ee521a70e6a7e7dbb36f96c9350f5ea 2025-08-26T20:40:04.1952664Z * [new tag] trunk/9f6e1b8730d6a7a7d012be90ae08674294aa4933 -> trunk/9f6e1b8730d6a7a7d012be90ae08674294aa4933 2025-08-26T20:40:04.1953516Z * [new tag] trunk/a03cc53e6f6e2fe67316cb8c74c25f5b953f445b -> trunk/a03cc53e6f6e2fe67316cb8c74c25f5b953f445b 2025-08-26T20:40:04.1954348Z * [new tag] trunk/a154c2093c0f2646346f032e1f30012779b3c51d -> trunk/a154c2093c0f2646346f032e1f30012779b3c51d 2025-08-26T20:40:04.1955746Z * [new tag] trunk/a391fa1c42dd32e32a2e5b1cb196bac56daaca88 -> trunk/a391fa1c42dd32e32a2e5b1cb196bac56daaca88 2025-08-26T20:40:04.1956568Z * [new tag] trunk/a3a82e3da85a53afc4bbf3d75bd3d3dcc2e06645 -> trunk/a3a82e3da85a53afc4bbf3d75bd3d3dcc2e06645 2025-08-26T20:40:04.1957395Z * [new tag] trunk/a3fe1ced409d186628ff2975f05ba529a86fae84 -> trunk/a3fe1ced409d186628ff2975f05ba529a86fae84 2025-08-26T20:40:04.2155193Z * [new tag] trunk/a43480d19cdd68e544163b1a07c328a9c54723b8 -> trunk/a43480d19cdd68e544163b1a07c328a9c54723b8 2025-08-26T20:40:04.2156203Z * [new tag] trunk/a445b41e4f11daa82a53a21ec413c15d5079ae77 -> trunk/a445b41e4f11daa82a53a21ec413c15d5079ae77 2025-08-26T20:40:04.2157026Z * [new tag] trunk/a44a0d3671b4ccf2fe915896a8a5204fe79b1e7b -> trunk/a44a0d3671b4ccf2fe915896a8a5204fe79b1e7b 2025-08-26T20:40:04.2157824Z * [new tag] trunk/a4fb65701b1b6408a949529442f26248b40f139b -> trunk/a4fb65701b1b6408a949529442f26248b40f139b 2025-08-26T20:40:04.2158613Z * [new tag] trunk/a6401cb5aa51622045c3f9a03b2cebef236e4182 -> trunk/a6401cb5aa51622045c3f9a03b2cebef236e4182 2025-08-26T20:40:04.2159403Z * [new tag] trunk/a68f63e33161b4665e0f4c399bf8072135a35a57 -> trunk/a68f63e33161b4665e0f4c399bf8072135a35a57 2025-08-26T20:40:04.2160296Z * [new tag] trunk/a72803f1e3c69c780b7d7bcdd9b35360fd98148b -> trunk/a72803f1e3c69c780b7d7bcdd9b35360fd98148b 2025-08-26T20:40:04.2161157Z * [new tag] trunk/a7aa480e55ef5cdf56af53d93b381eca6680e2ae -> trunk/a7aa480e55ef5cdf56af53d93b381eca6680e2ae 2025-08-26T20:40:04.2161958Z * [new tag] trunk/a7b5955ea8851d73e35f50a0de5bb0626bae24cb -> trunk/a7b5955ea8851d73e35f50a0de5bb0626bae24cb 2025-08-26T20:40:04.2162754Z * [new tag] trunk/a818fa77e3a72271f144514ef349c5a666313205 -> trunk/a818fa77e3a72271f144514ef349c5a666313205 2025-08-26T20:40:04.2163618Z * [new tag] trunk/a825557ed53507e85ac613862311a81eb88710a4 -> trunk/a825557ed53507e85ac613862311a81eb88710a4 2025-08-26T20:40:04.2164407Z * [new tag] trunk/a85711d565f37b0095af9f7dafa77f392c9aa31e -> trunk/a85711d565f37b0095af9f7dafa77f392c9aa31e 2025-08-26T20:40:04.2165214Z * [new tag] trunk/a941d7ffe54b5f256c1fbd3959ddbf608b7eea88 -> trunk/a941d7ffe54b5f256c1fbd3959ddbf608b7eea88 2025-08-26T20:40:04.2166037Z * [new tag] trunk/a9fabeb012a4b804836a2b8d4b3742b92c9a6b58 -> trunk/a9fabeb012a4b804836a2b8d4b3742b92c9a6b58 2025-08-26T20:40:04.2166849Z * [new tag] trunk/ab7787fb82dd777b2f777ef58bc20dbb7bd8289b -> trunk/ab7787fb82dd777b2f777ef58bc20dbb7bd8289b 2025-08-26T20:40:04.2167664Z * [new tag] trunk/ab8d60f4c86ca19ed00d6e79ae8e6939266f28e6 -> trunk/ab8d60f4c86ca19ed00d6e79ae8e6939266f28e6 2025-08-26T20:40:04.2168489Z * [new tag] trunk/ac8d9418aee4543fa193c86ae0bc3e63707bcd3b -> trunk/ac8d9418aee4543fa193c86ae0bc3e63707bcd3b 2025-08-26T20:40:04.2169300Z * [new tag] trunk/acb00d3ccf5f2d566225f07ed66bd579d5d3e44e -> trunk/acb00d3ccf5f2d566225f07ed66bd579d5d3e44e 2025-08-26T20:40:04.2170127Z * [new tag] trunk/adecb0c9e89e0dfe18d944d292c98c97b686fc83 -> trunk/adecb0c9e89e0dfe18d944d292c98c97b686fc83 2025-08-26T20:40:04.2170940Z * [new tag] trunk/ae8d319fd4a0b0fa7b1372aa07690a36ce823abc -> trunk/ae8d319fd4a0b0fa7b1372aa07690a36ce823abc 2025-08-26T20:40:04.2171742Z * [new tag] trunk/af3265d20f763e5366bfa37e3d4a6307036d0c18 -> trunk/af3265d20f763e5366bfa37e3d4a6307036d0c18 2025-08-26T20:40:04.2172525Z * [new tag] trunk/b0420d24386263f2727fd5714b63cfa6bc89f3e6 -> trunk/b0420d24386263f2727fd5714b63cfa6bc89f3e6 2025-08-26T20:40:04.2173305Z * [new tag] trunk/b1380f434da2fa2de0e5ff6fd70f73082dc08687 -> trunk/b1380f434da2fa2de0e5ff6fd70f73082dc08687 2025-08-26T20:40:04.2174211Z * [new tag] trunk/b2632e79828300302fd11e093d765196c3c0db58 -> trunk/b2632e79828300302fd11e093d765196c3c0db58 2025-08-26T20:40:04.2174991Z * [new tag] trunk/b2e06e0194c3fa8f7578a1b48751cc027394fb67 -> trunk/b2e06e0194c3fa8f7578a1b48751cc027394fb67 2025-08-26T20:40:04.2175785Z * [new tag] trunk/b3e215b864e6ca43b2c4e50ce666673f80feee27 -> trunk/b3e215b864e6ca43b2c4e50ce666673f80feee27 2025-08-26T20:40:04.2176573Z * [new tag] trunk/b708966201811b31ee765ec57715ac21d06ef652 -> trunk/b708966201811b31ee765ec57715ac21d06ef652 2025-08-26T20:40:04.2177425Z * [new tag] trunk/b9e9e92817fd7d1a778f074105603efb07e05004 -> trunk/b9e9e92817fd7d1a778f074105603efb07e05004 2025-08-26T20:40:04.2178246Z * [new tag] trunk/bc7eaa0d8a1f5ca8ec0eaac461d1df500dcaea84 -> trunk/bc7eaa0d8a1f5ca8ec0eaac461d1df500dcaea84 2025-08-26T20:40:04.2179073Z * [new tag] trunk/bcfe1b2d714cbb2716495e09ae010e7c34daf045 -> trunk/bcfe1b2d714cbb2716495e09ae010e7c34daf045 2025-08-26T20:40:04.2179882Z * [new tag] trunk/bd5857a1d6d5455d4f0057c182dff5e8ad2a4c8a -> trunk/bd5857a1d6d5455d4f0057c182dff5e8ad2a4c8a 2025-08-26T20:40:04.2180682Z * [new tag] trunk/be2e6b3158552405acc13ef7829a0217826fb271 -> trunk/be2e6b3158552405acc13ef7829a0217826fb271 2025-08-26T20:40:04.2383898Z * [new tag] trunk/be87f22dfba4488963fcc854699829e2782ee0f2 -> trunk/be87f22dfba4488963fcc854699829e2782ee0f2 2025-08-26T20:40:04.2384759Z * [new tag] trunk/becd6cd744bdf950578519437652a0d1f4b48781 -> trunk/becd6cd744bdf950578519437652a0d1f4b48781 2025-08-26T20:40:04.2385661Z * [new tag] trunk/bf8431ba062efa9ff0cdd5032a3ddf2e007a3216 -> trunk/bf8431ba062efa9ff0cdd5032a3ddf2e007a3216 2025-08-26T20:40:04.2386492Z * [new tag] trunk/c02e26bf31eb3da301158a061aa68527dbfb4d32 -> trunk/c02e26bf31eb3da301158a061aa68527dbfb4d32 2025-08-26T20:40:04.2387287Z * [new tag] trunk/c081481bbebdb568d07ee19cfe2cd3125de6cba7 -> trunk/c081481bbebdb568d07ee19cfe2cd3125de6cba7 2025-08-26T20:40:04.2388156Z * [new tag] trunk/c2390087c34c964ef648addf43efb8c6a34e30c2 -> trunk/c2390087c34c964ef648addf43efb8c6a34e30c2 2025-08-26T20:40:04.2388987Z * [new tag] trunk/c4670e40c9b741d50a79b714e3830149833be908 -> trunk/c4670e40c9b741d50a79b714e3830149833be908 2025-08-26T20:40:04.2389777Z * [new tag] trunk/c5cb255625deb4cdbc5780e6911b73498e17ed5a -> trunk/c5cb255625deb4cdbc5780e6911b73498e17ed5a 2025-08-26T20:40:04.2390580Z * [new tag] trunk/c60dea5261d9648d1da51528a07731966bb6823e -> trunk/c60dea5261d9648d1da51528a07731966bb6823e 2025-08-26T20:40:04.2391369Z * [new tag] trunk/c74e5f60611b7eac4321f53a9e4a15b077fb1bcc -> trunk/c74e5f60611b7eac4321f53a9e4a15b077fb1bcc 2025-08-26T20:40:04.2392156Z * [new tag] trunk/c7a77470c54b28e555319e34048af14d1d66198a -> trunk/c7a77470c54b28e555319e34048af14d1d66198a 2025-08-26T20:40:04.2392950Z * [new tag] trunk/c7fb031706330684fc3a2d8d169bebea874d4e95 -> trunk/c7fb031706330684fc3a2d8d169bebea874d4e95 2025-08-26T20:40:04.2393883Z * [new tag] trunk/c8bb0e4720ddddf3cd1b0b48b336978f763c71ca -> trunk/c8bb0e4720ddddf3cd1b0b48b336978f763c71ca 2025-08-26T20:40:04.2394734Z * [new tag] trunk/ca9fe0107e165a4a4147325ff6d34235ebde447f -> trunk/ca9fe0107e165a4a4147325ff6d34235ebde447f 2025-08-26T20:40:04.2395533Z * [new tag] trunk/caf98fde0d5c47452af45dc77099449edd521579 -> trunk/caf98fde0d5c47452af45dc77099449edd521579 2025-08-26T20:40:04.2396351Z * [new tag] trunk/cb579532150c9e87e7c143adcb020fb7de7cc6b1 -> trunk/cb579532150c9e87e7c143adcb020fb7de7cc6b1 2025-08-26T20:40:04.2397160Z * [new tag] trunk/cc2b65a91ae7773d4ecf9a600dda48fc3e69aa8f -> trunk/cc2b65a91ae7773d4ecf9a600dda48fc3e69aa8f 2025-08-26T20:40:04.2398036Z * [new tag] trunk/cc791d5857f4aa06b8d4e567b1fb2852e3ae963d -> trunk/cc791d5857f4aa06b8d4e567b1fb2852e3ae963d 2025-08-26T20:40:04.2399016Z * [new tag] trunk/cd31be28ec5cd0c4d9cdb6742efe151eee1406ec -> trunk/cd31be28ec5cd0c4d9cdb6742efe151eee1406ec 2025-08-26T20:40:04.2399929Z * [new tag] trunk/cd87f3029582cedb3b88747a3bd7d200b05c1138 -> trunk/cd87f3029582cedb3b88747a3bd7d200b05c1138 2025-08-26T20:40:04.2400721Z * [new tag] trunk/ce048de608180fa88335e5821070472539968b54 -> trunk/ce048de608180fa88335e5821070472539968b54 2025-08-26T20:40:04.2402121Z * [new tag] trunk/ce467df5d1d763d1648aee51c93ce3e9a4699936 -> trunk/ce467df5d1d763d1648aee51c93ce3e9a4699936 2025-08-26T20:40:04.2402999Z * [new tag] trunk/cee72119b2dec7776bc2550dd39a9b1349772751 -> trunk/cee72119b2dec7776bc2550dd39a9b1349772751 2025-08-26T20:40:04.2403828Z * [new tag] trunk/cf94cadbeee31a4d1d46a57f11bce7c9fd1cebc0 -> trunk/cf94cadbeee31a4d1d46a57f11bce7c9fd1cebc0 2025-08-26T20:40:04.2404669Z * [new tag] trunk/cfdaaaaa26d7f34427ba941569eca46f02f79f3e -> trunk/cfdaaaaa26d7f34427ba941569eca46f02f79f3e 2025-08-26T20:40:04.2405586Z * [new tag] trunk/d1faf2ef0476eb60b42c057baee9af0f48ae849a -> trunk/d1faf2ef0476eb60b42c057baee9af0f48ae849a 2025-08-26T20:40:04.2406399Z * [new tag] trunk/d228a776e90368bb693837ae23285ad8fc33def5 -> trunk/d228a776e90368bb693837ae23285ad8fc33def5 2025-08-26T20:40:04.2407180Z * [new tag] trunk/d2b8c0d431e00ad57354c5247e46c1bea0b8cd31 -> trunk/d2b8c0d431e00ad57354c5247e46c1bea0b8cd31 2025-08-26T20:40:04.2407988Z * [new tag] trunk/d2bd55d8de784df439b38378f161271dc43b744c -> trunk/d2bd55d8de784df439b38378f161271dc43b744c 2025-08-26T20:40:04.2408778Z * [new tag] trunk/d4703fb91c3510460d71f648da113177edf593c8 -> trunk/d4703fb91c3510460d71f648da113177edf593c8 2025-08-26T20:40:04.2409557Z * [new tag] trunk/d875d3ca1e5099636c766c9df70ac5888c25215a -> trunk/d875d3ca1e5099636c766c9df70ac5888c25215a 2025-08-26T20:40:04.2410364Z * [new tag] trunk/d8fcb2a4acb506f9c72a1f44fc8b857158bda892 -> trunk/d8fcb2a4acb506f9c72a1f44fc8b857158bda892 2025-08-26T20:40:04.2411272Z * [new tag] trunk/daeb3a6094c62d1881ea68091fcadb02d1dc687e -> trunk/daeb3a6094c62d1881ea68091fcadb02d1dc687e 2025-08-26T20:40:04.2607481Z * [new tag] trunk/db38c44ad639e7ada3e9df2ba026a2cb5e40feb0 -> trunk/db38c44ad639e7ada3e9df2ba026a2cb5e40feb0 2025-08-26T20:40:04.2608386Z * [new tag] trunk/db44de4c0d3e9f1fe5334ff4cc261fb8fe4390c8 -> trunk/db44de4c0d3e9f1fe5334ff4cc261fb8fe4390c8 2025-08-26T20:40:04.2609207Z * [new tag] trunk/dbef6066311a1ce6e60e1f2b6084249d1ad45769 -> trunk/dbef6066311a1ce6e60e1f2b6084249d1ad45769 2025-08-26T20:40:04.2610015Z * [new tag] trunk/df571ae7ad7dacf77ce42c00189cf369d7993387 -> trunk/df571ae7ad7dacf77ce42c00189cf369d7993387 2025-08-26T20:40:04.2610837Z * [new tag] trunk/df6073641079c781e66a905e4f15ee49ac257eb2 -> trunk/df6073641079c781e66a905e4f15ee49ac257eb2 2025-08-26T20:40:04.2611617Z * [new tag] trunk/e1a64b75ff3dc834774a9174c2e7b1c46dea35ec -> trunk/e1a64b75ff3dc834774a9174c2e7b1c46dea35ec 2025-08-26T20:40:04.2612406Z * [new tag] trunk/e20f6d798606f3245686e950c43635bbe526232d -> trunk/e20f6d798606f3245686e950c43635bbe526232d 2025-08-26T20:40:04.2613254Z * [new tag] trunk/e25ee0290ef16503f178e04890c15717f6e9ea44 -> trunk/e25ee0290ef16503f178e04890c15717f6e9ea44 2025-08-26T20:40:04.2614056Z * [new tag] trunk/e34b6a01039df5d8940acdccd8d8989f3cd827aa -> trunk/e34b6a01039df5d8940acdccd8d8989f3cd827aa 2025-08-26T20:40:04.2614872Z * [new tag] trunk/e3d68dfae2dee15e74d3b95beaed7149b6afb94a -> trunk/e3d68dfae2dee15e74d3b95beaed7149b6afb94a 2025-08-26T20:40:04.2615697Z * [new tag] trunk/e3ebf364e6d2fb8008da113a596d3cc426ba9c79 -> trunk/e3ebf364e6d2fb8008da113a596d3cc426ba9c79 2025-08-26T20:40:04.2616628Z * [new tag] trunk/e4839470470168648dee5997f57347bb8541ea2b -> trunk/e4839470470168648dee5997f57347bb8541ea2b 2025-08-26T20:40:04.2617405Z * [new tag] trunk/e63155751825ba026ced3a1fc89563231bc85ccc -> trunk/e63155751825ba026ced3a1fc89563231bc85ccc 2025-08-26T20:40:04.2618208Z * [new tag] trunk/e6aa7287f8c8cac76d792097f20ba1dae6dc8717 -> trunk/e6aa7287f8c8cac76d792097f20ba1dae6dc8717 2025-08-26T20:40:04.2619100Z * [new tag] trunk/e6e45e6ae8452f0bc5e3e258027c42eb9a1394fb -> trunk/e6e45e6ae8452f0bc5e3e258027c42eb9a1394fb 2025-08-26T20:40:04.2619896Z * [new tag] trunk/e795450a35bca909902e12de99245e1c0e7e2872 -> trunk/e795450a35bca909902e12de99245e1c0e7e2872 2025-08-26T20:40:04.2620688Z * [new tag] trunk/e7e270a33a3f368c3ef0c3339950a47fdbfadd71 -> trunk/e7e270a33a3f368c3ef0c3339950a47fdbfadd71 2025-08-26T20:40:04.2621493Z * [new tag] trunk/e836323a23f5750e800abe04ef8ca386b3066b58 -> trunk/e836323a23f5750e800abe04ef8ca386b3066b58 2025-08-26T20:40:04.2622278Z * [new tag] trunk/e83825f91cb2901567fedbf31ba7cc434a897271 -> trunk/e83825f91cb2901567fedbf31ba7cc434a897271 2025-08-26T20:40:04.2623095Z * [new tag] trunk/e9d42b3880dcdbd823bbdc9370c8b0b3af0ba2e3 -> trunk/e9d42b3880dcdbd823bbdc9370c8b0b3af0ba2e3 2025-08-26T20:40:04.2623922Z * [new tag] trunk/eb5549a43164cdf8689cd7d177c03b2508c699f4 -> trunk/eb5549a43164cdf8689cd7d177c03b2508c699f4 2025-08-26T20:40:04.2624716Z * [new tag] trunk/eba1ad09e47b66478f973e03cece7f314ac3b412 -> trunk/eba1ad09e47b66478f973e03cece7f314ac3b412 2025-08-26T20:40:04.2625526Z * [new tag] trunk/eba20d2d748cb17dce9aa26e5513e4567bfd8282 -> trunk/eba20d2d748cb17dce9aa26e5513e4567bfd8282 2025-08-26T20:40:04.2626343Z * [new tag] trunk/ec21cafd85d491d2d220e4e54080fe340a37c4c2 -> trunk/ec21cafd85d491d2d220e4e54080fe340a37c4c2 2025-08-26T20:40:04.2627161Z * [new tag] trunk/ed8bcccf31e1ba01a35e818a4afbb74c333e8dc3 -> trunk/ed8bcccf31e1ba01a35e818a4afbb74c333e8dc3 2025-08-26T20:40:04.2627992Z * [new tag] trunk/eddaaa6c2a66a84e17b17bf8af5131852067b259 -> trunk/eddaaa6c2a66a84e17b17bf8af5131852067b259 2025-08-26T20:40:04.2628881Z * [new tag] trunk/ef761c43538abae5bccc0c4b6ebaf42ff676db7a -> trunk/ef761c43538abae5bccc0c4b6ebaf42ff676db7a 2025-08-26T20:40:04.2629715Z * [new tag] trunk/f085f299584b06a2a7d8855eda2a411313e782ad -> trunk/f085f299584b06a2a7d8855eda2a411313e782ad 2025-08-26T20:40:04.2630513Z * [new tag] trunk/f09458c2e16b4fe7063d73d80fd3e7e354bad3f8 -> trunk/f09458c2e16b4fe7063d73d80fd3e7e354bad3f8 2025-08-26T20:40:04.2631320Z * [new tag] trunk/f0e0a6897ee5cb31ccee10ee8e2d3c01140ff999 -> trunk/f0e0a6897ee5cb31ccee10ee8e2d3c01140ff999 2025-08-26T20:40:04.2632126Z * [new tag] trunk/f30501937738a2440f90988d1d46920529309ba8 -> trunk/f30501937738a2440f90988d1d46920529309ba8 2025-08-26T20:40:04.2632929Z * [new tag] trunk/f391afe9bf8c542fdbb822423d2a1e454b3d9744 -> trunk/f391afe9bf8c542fdbb822423d2a1e454b3d9744 2025-08-26T20:40:04.2938365Z * [new tag] trunk/f521e82a4e80df502fa57e5852af14d8779dcbd1 -> trunk/f521e82a4e80df502fa57e5852af14d8779dcbd1 2025-08-26T20:40:04.2939219Z * [new tag] trunk/f5bf5147ad18994c9a6e0f565d7831362bf5a18a -> trunk/f5bf5147ad18994c9a6e0f565d7831362bf5a18a 2025-08-26T20:40:04.2940028Z * [new tag] trunk/f795e92802c55608ad4f4f198726d250056d0232 -> trunk/f795e92802c55608ad4f4f198726d250056d0232 2025-08-26T20:40:04.2940814Z * [new tag] trunk/f8bd85827d465a8a2a610c27ed9e62a4c27ac07d -> trunk/f8bd85827d465a8a2a610c27ed9e62a4c27ac07d 2025-08-26T20:40:04.2941622Z * [new tag] trunk/f90ccad1651b5a1698b2232acc3e92e2829b7935 -> trunk/f90ccad1651b5a1698b2232acc3e92e2829b7935 2025-08-26T20:40:04.2942623Z * [new tag] trunk/f912c93344caa74e24c8164a2e25fe84a8203073 -> trunk/f912c93344caa74e24c8164a2e25fe84a8203073 2025-08-26T20:40:04.2943417Z * [new tag] trunk/f9875166a953a51bbd454d963ee03d41818a27e8 -> trunk/f9875166a953a51bbd454d963ee03d41818a27e8 2025-08-26T20:40:04.2944219Z * [new tag] trunk/f9df4ec2af0ac19b42f658ae87acf12067e67b36 -> trunk/f9df4ec2af0ac19b42f658ae87acf12067e67b36 2025-08-26T20:40:04.2945028Z * [new tag] trunk/fab5dac734344105ae107e85c08151758a4a9b4d -> trunk/fab5dac734344105ae107e85c08151758a4a9b4d 2025-08-26T20:40:04.2945926Z * [new tag] trunk/fb241d0a448f1dd88471098ac149418124a7c4aa -> trunk/fb241d0a448f1dd88471098ac149418124a7c4aa 2025-08-26T20:40:04.2946720Z * [new tag] trunk/fc0683b1e75fdf3182e0855b3f79e80fe0124ef1 -> trunk/fc0683b1e75fdf3182e0855b3f79e80fe0124ef1 2025-08-26T20:40:04.2947514Z * [new tag] trunk/fc69c2bc67672c3b2d0c62c1821895f09288f1c0 -> trunk/fc69c2bc67672c3b2d0c62c1821895f09288f1c0 2025-08-26T20:40:04.2948331Z * [new tag] trunk/febfc3ec03004116dfd6d504e6853ff02a1dd6e0 -> trunk/febfc3ec03004116dfd6d504e6853ff02a1dd6e0 2025-08-26T20:40:04.2949143Z * [new tag] trunk/fecc5f600110209aaaedead11770a445b3c879e6 -> trunk/fecc5f600110209aaaedead11770a445b3c879e6 2025-08-26T20:40:04.2949978Z * [new tag] trunk/ff4f5dd8ed8e2aaee903c7d30cd4f8bd04d883c8 -> trunk/ff4f5dd8ed8e2aaee903c7d30cd4f8bd04d883c8 2025-08-26T20:40:04.2950816Z * [new tag] trunk/ffa1ce7650766c2ae6eaa96415dfc29e9eb0b3ec -> trunk/ffa1ce7650766c2ae6eaa96415dfc29e9eb0b3ec 2025-08-26T20:40:04.2951399Z * [new tag] v0.1.1 -> v0.1.1 2025-08-26T20:40:04.2951752Z * [new tag] v0.1.10 -> v0.1.10 2025-08-26T20:40:04.2952085Z * [new tag] v0.1.11 -> v0.1.11 2025-08-26T20:40:04.2952433Z * [new tag] v0.1.12 -> v0.1.12 2025-08-26T20:40:04.2952780Z * [new tag] v0.1.2 -> v0.1.2 2025-08-26T20:40:04.2953111Z * [new tag] v0.1.3 -> v0.1.3 2025-08-26T20:40:04.2953451Z * [new tag] v0.1.4 -> v0.1.4 2025-08-26T20:40:04.2953777Z * [new tag] v0.1.5 -> v0.1.5 2025-08-26T20:40:04.2954116Z * [new tag] v0.1.6 -> v0.1.6 2025-08-26T20:40:04.2954445Z * [new tag] v0.1.7 -> v0.1.7 2025-08-26T20:40:04.2954780Z * [new tag] v0.1.8 -> v0.1.8 2025-08-26T20:40:04.2955112Z * [new tag] v0.1.9 -> v0.1.9 2025-08-26T20:40:04.2955438Z * [new tag] v0.2.0 -> v0.2.0 2025-08-26T20:40:04.2955767Z * [new tag] v0.3.0 -> v0.3.0 2025-08-26T20:40:04.2956095Z * [new tag] v0.3.1 -> v0.3.1 2025-08-26T20:40:04.2956421Z * [new tag] v0.4.0 -> v0.4.0 2025-08-26T20:40:04.2956746Z * [new tag] v0.4.1 -> v0.4.1 2025-08-26T20:40:04.2957087Z * [new tag] v1.0.0 -> v1.0.0 2025-08-26T20:40:04.2957438Z * [new tag] v1.0.0a0 -> v1.0.0a0 2025-08-26T20:40:04.2957778Z * [new tag] v1.0.1 -> v1.0.1 2025-08-26T20:40:04.2958117Z * [new tag] v1.0rc0 -> v1.0rc0 2025-08-26T20:40:04.2958454Z * [new tag] v1.0rc1 -> v1.0rc1 2025-08-26T20:40:04.2958792Z * [new tag] v1.1.0 -> v1.1.0 2025-08-26T20:40:04.2959129Z * [new tag] v1.1.0a0 -> v1.1.0a0 2025-08-26T20:40:04.2959588Z * [new tag] v1.10.0 -> v1.10.0 2025-08-26T20:40:04.2959948Z * [new tag] v1.10.0-rc1 -> v1.10.0-rc1 2025-08-26T20:40:04.2960308Z * [new tag] v1.10.0-rc2 -> v1.10.0-rc2 2025-08-26T20:40:04.2960679Z * [new tag] v1.10.0-rc3 -> v1.10.0-rc3 2025-08-26T20:40:04.2961028Z * [new tag] v1.10.1 -> v1.10.1 2025-08-26T20:40:04.2961386Z * [new tag] v1.10.1-rc1 -> v1.10.1-rc1 2025-08-26T20:40:04.2961814Z * [new tag] v1.10.2 -> v1.10.2 2025-08-26T20:40:04.3353574Z * [new tag] v1.10.2-rc1 -> v1.10.2-rc1 2025-08-26T20:40:04.3354017Z * [new tag] v1.11.0 -> v1.11.0 2025-08-26T20:40:04.3354380Z * [new tag] v1.11.0-rc1 -> v1.11.0-rc1 2025-08-26T20:40:04.3354752Z * [new tag] v1.11.0-rc2 -> v1.11.0-rc2 2025-08-26T20:40:04.3355128Z * [new tag] v1.11.0-rc3 -> v1.11.0-rc3 2025-08-26T20:40:04.3355472Z * [new tag] v1.11.0-rc4 -> v1.11.0-rc4 2025-08-26T20:40:04.3355830Z * [new tag] v1.11.0-rc5 -> v1.11.0-rc5 2025-08-26T20:40:04.3356181Z * [new tag] v1.11.0-rc6 -> v1.11.0-rc6 2025-08-26T20:40:04.3356546Z * [new tag] v1.11.0-rc7 -> v1.11.0-rc7 2025-08-26T20:40:04.3356899Z * [new tag] v1.12.0 -> v1.12.0 2025-08-26T20:40:04.3357253Z * [new tag] v1.12.0-rc1 -> v1.12.0-rc1 2025-08-26T20:40:04.3357609Z * [new tag] v1.12.0-rc2 -> v1.12.0-rc2 2025-08-26T20:40:04.3357956Z * [new tag] v1.12.0-rc3 -> v1.12.0-rc3 2025-08-26T20:40:04.3358317Z * [new tag] v1.12.0-rc4 -> v1.12.0-rc4 2025-08-26T20:40:04.3358669Z * [new tag] v1.12.0-rc5 -> v1.12.0-rc5 2025-08-26T20:40:04.3359027Z * [new tag] v1.12.0-rc6 -> v1.12.0-rc6 2025-08-26T20:40:04.3359385Z * [new tag] v1.12.0-rc7 -> v1.12.0-rc7 2025-08-26T20:40:04.3359735Z * [new tag] v1.12.0-rc8 -> v1.12.0-rc8 2025-08-26T20:40:04.3360092Z * [new tag] v1.12.1 -> v1.12.1 2025-08-26T20:40:04.3360434Z * [new tag] v1.12.1-rc1 -> v1.12.1-rc1 2025-08-26T20:40:04.3360795Z * [new tag] v1.12.1-rc2 -> v1.12.1-rc2 2025-08-26T20:40:04.3361142Z * [new tag] v1.12.1-rc3 -> v1.12.1-rc3 2025-08-26T20:40:04.3361501Z * [new tag] v1.12.1-rc4 -> v1.12.1-rc4 2025-08-26T20:40:04.3361857Z * [new tag] v1.12.1-rc5 -> v1.12.1-rc5 2025-08-26T20:40:04.3362209Z * [new tag] v1.13.0 -> v1.13.0 2025-08-26T20:40:04.3362554Z * [new tag] v1.13.0-rc1 -> v1.13.0-rc1 2025-08-26T20:40:04.3362990Z * [new tag] v1.13.0-rc2 -> v1.13.0-rc2 2025-08-26T20:40:04.3363362Z * [new tag] v1.13.0-rc3 -> v1.13.0-rc3 2025-08-26T20:40:04.3363797Z * [new tag] v1.13.0-rc4 -> v1.13.0-rc4 2025-08-26T20:40:04.3364192Z * [new tag] v1.13.0-rc5 -> v1.13.0-rc5 2025-08-26T20:40:04.3364567Z * [new tag] v1.13.0-rc6 -> v1.13.0-rc6 2025-08-26T20:40:04.3364910Z * [new tag] v1.13.1 -> v1.13.1 2025-08-26T20:40:04.3365260Z * [new tag] v1.13.1-rc1 -> v1.13.1-rc1 2025-08-26T20:40:04.3365610Z * [new tag] v1.2.0 -> v1.2.0 2025-08-26T20:40:04.3366132Z * [new tag] v1.2.0a0 -> v1.2.0a0 2025-08-26T20:40:04.3366496Z * [new tag] v1.3.0 -> v1.3.0 2025-08-26T20:40:04.3366845Z * [new tag] v1.3.0a0 -> v1.3.0a0 2025-08-26T20:40:04.3367209Z * [new tag] v1.3.1 -> v1.3.1 2025-08-26T20:40:04.3367542Z * [new tag] v1.4.0 -> v1.4.0 2025-08-26T20:40:04.3367889Z * [new tag] v1.4.0a0 -> v1.4.0a0 2025-08-26T20:40:04.3368326Z * [new tag] v1.4.1 -> v1.4.1 2025-08-26T20:40:04.3368674Z * [new tag] v1.5.0 -> v1.5.0 2025-08-26T20:40:04.3369034Z * [new tag] v1.5.0-rc1 -> v1.5.0-rc1 2025-08-26T20:40:04.3369427Z * [new tag] v1.5.0-rc2 -> v1.5.0-rc2 2025-08-26T20:40:04.3369804Z * [new tag] v1.5.0-rc3 -> v1.5.0-rc3 2025-08-26T20:40:04.3370198Z * [new tag] v1.5.0-rc4 -> v1.5.0-rc4 2025-08-26T20:40:04.3370558Z * [new tag] v1.5.0-rc5 -> v1.5.0-rc5 2025-08-26T20:40:04.3370901Z * [new tag] v1.5.1 -> v1.5.1 2025-08-26T20:40:04.3371255Z * [new tag] v1.5.1-rc1 -> v1.5.1-rc1 2025-08-26T20:40:04.3371610Z * [new tag] v1.6.0 -> v1.6.0 2025-08-26T20:40:04.3371953Z * [new tag] v1.6.0-rc1 -> v1.6.0-rc1 2025-08-26T20:40:04.3372310Z * [new tag] v1.6.0-rc2 -> v1.6.0-rc2 2025-08-26T20:40:04.3382770Z * [new tag] v1.6.0-rc3 -> v1.6.0-rc3 2025-08-26T20:40:04.3383245Z * [new tag] v1.6.0-rc4 -> v1.6.0-rc4 2025-08-26T20:40:04.3383626Z * [new tag] v1.6.0-rc5 -> v1.6.0-rc5 2025-08-26T20:40:04.3384005Z * [new tag] v1.6.0-rc6 -> v1.6.0-rc6 2025-08-26T20:40:04.3384363Z * [new tag] v1.6.0-rc7 -> v1.6.0-rc7 2025-08-26T20:40:04.3384707Z * [new tag] v1.7.0 -> v1.7.0 2025-08-26T20:40:04.4851280Z * [new tag] v1.7.0-rc1 -> v1.7.0-rc1 2025-08-26T20:40:04.4851715Z * [new tag] v1.7.0-rc2 -> v1.7.0-rc2 2025-08-26T20:40:04.4852103Z * [new tag] v1.7.0-rc3 -> v1.7.0-rc3 2025-08-26T20:40:04.4852488Z * [new tag] v1.7.0-rc4 -> v1.7.0-rc4 2025-08-26T20:40:04.4852843Z * [new tag] v1.7.1 -> v1.7.1 2025-08-26T20:40:04.4853203Z * [new tag] v1.7.1-rc1 -> v1.7.1-rc1 2025-08-26T20:40:04.4853559Z * [new tag] v1.7.1-rc2 -> v1.7.1-rc2 2025-08-26T20:40:04.4853919Z * [new tag] v1.7.1-rc3 -> v1.7.1-rc3 2025-08-26T20:40:04.4854276Z * [new tag] v1.8.0 -> v1.8.0 2025-08-26T20:40:04.4854617Z * [new tag] v1.8.0-rc1 -> v1.8.0-rc1 2025-08-26T20:40:04.4854981Z * [new tag] v1.8.0-rc2 -> v1.8.0-rc2 2025-08-26T20:40:04.4855333Z * [new tag] v1.8.0-rc3 -> v1.8.0-rc3 2025-08-26T20:40:04.4855681Z * [new tag] v1.8.0-rc4 -> v1.8.0-rc4 2025-08-26T20:40:04.4856044Z * [new tag] v1.8.0-rc5 -> v1.8.0-rc5 2025-08-26T20:40:04.4856385Z * [new tag] v1.8.1 -> v1.8.1 2025-08-26T20:40:04.4856738Z * [new tag] v1.8.1-rc1 -> v1.8.1-rc1 2025-08-26T20:40:04.4857083Z * [new tag] v1.8.1-rc2 -> v1.8.1-rc2 2025-08-26T20:40:04.4857614Z * [new tag] v1.8.1-rc3 -> v1.8.1-rc3 2025-08-26T20:40:04.4857962Z * [new tag] v1.8.2 -> v1.8.2 2025-08-26T20:40:04.4858304Z * [new tag] v1.8.2-rc1 -> v1.8.2-rc1 2025-08-26T20:40:04.4858655Z * [new tag] v1.9.0 -> v1.9.0 2025-08-26T20:40:04.4858999Z * [new tag] v1.9.0-rc1 -> v1.9.0-rc1 2025-08-26T20:40:04.4859364Z * [new tag] v1.9.0-rc2 -> v1.9.0-rc2 2025-08-26T20:40:04.4859820Z * [new tag] v1.9.0-rc3 -> v1.9.0-rc3 2025-08-26T20:40:04.4860182Z * [new tag] v1.9.0-rc4 -> v1.9.0-rc4 2025-08-26T20:40:04.4860535Z * [new tag] v1.9.1 -> v1.9.1 2025-08-26T20:40:04.4860881Z * [new tag] v1.9.1-rc1 -> v1.9.1-rc1 2025-08-26T20:40:04.4861263Z * [new tag] v1.9.1-rc2 -> v1.9.1-rc2 2025-08-26T20:40:04.4861615Z * [new tag] v2.0.0 -> v2.0.0 2025-08-26T20:40:04.4861987Z * [new tag] v2.0.0-rc1 -> v2.0.0-rc1 2025-08-26T20:40:04.4862355Z * [new tag] v2.0.0-rc2 -> v2.0.0-rc2 2025-08-26T20:40:04.4862703Z * [new tag] v2.0.0-rc3 -> v2.0.0-rc3 2025-08-26T20:40:04.4863076Z * [new tag] v2.0.0-rc4 -> v2.0.0-rc4 2025-08-26T20:40:04.4863436Z * [new tag] v2.0.0-rc5 -> v2.0.0-rc5 2025-08-26T20:40:04.4863807Z * [new tag] v2.0.0-rc6 -> v2.0.0-rc6 2025-08-26T20:40:04.4864151Z * [new tag] v2.0.1 -> v2.0.1 2025-08-26T20:40:04.4864508Z * [new tag] v2.0.1-rc1 -> v2.0.1-rc1 2025-08-26T20:40:04.4864949Z * [new tag] v2.0.1-rc2 -> v2.0.1-rc2 2025-08-26T20:40:04.4865302Z * [new tag] v2.0.1-rc3 -> v2.0.1-rc3 2025-08-26T20:40:04.4865679Z * [new tag] v2.0.1-rc4 -> v2.0.1-rc4 2025-08-26T20:40:04.4866027Z * [new tag] v2.1.0 -> v2.1.0 2025-08-26T20:40:04.4866395Z * [new tag] v2.1.0-rc1 -> v2.1.0-rc1 2025-08-26T20:40:04.4866743Z * [new tag] v2.1.0-rc2 -> v2.1.0-rc2 2025-08-26T20:40:04.4867108Z * [new tag] v2.1.0-rc3 -> v2.1.0-rc3 2025-08-26T20:40:04.4867461Z * [new tag] v2.1.0-rc4 -> v2.1.0-rc4 2025-08-26T20:40:04.4867805Z * [new tag] v2.1.0-rc5 -> v2.1.0-rc5 2025-08-26T20:40:04.4868160Z * [new tag] v2.1.0-rc6 -> v2.1.0-rc6 2025-08-26T20:40:04.4868501Z * [new tag] v2.1.1 -> v2.1.1 2025-08-26T20:40:04.4868861Z * [new tag] v2.1.1-rc1 -> v2.1.1-rc1 2025-08-26T20:40:04.4869221Z * [new tag] v2.1.1-rc2 -> v2.1.1-rc2 2025-08-26T20:40:04.4869569Z * [new tag] v2.1.1-rc3 -> v2.1.1-rc3 2025-08-26T20:40:04.4869939Z * [new tag] v2.1.1-rc4 -> v2.1.1-rc4 2025-08-26T20:40:04.4870286Z * [new tag] v2.1.1-rc5 -> v2.1.1-rc5 2025-08-26T20:40:04.4870642Z * [new tag] v2.1.1-rc6 -> v2.1.1-rc6 2025-08-26T20:40:04.4870988Z * [new tag] v2.1.2 -> v2.1.2 2025-08-26T20:40:04.4871337Z * [new tag] v2.1.2-rc1 -> v2.1.2-rc1 2025-08-26T20:40:04.4871687Z * [new tag] v2.1.2-rc2 -> v2.1.2-rc2 2025-08-26T20:40:04.4872028Z * [new tag] v2.1.2-rc3 -> v2.1.2-rc3 2025-08-26T20:40:04.4872510Z * [new tag] v2.2.0 -> v2.2.0 2025-08-26T20:40:04.7114600Z * [new tag] v2.2.0-rc1 -> v2.2.0-rc1 2025-08-26T20:40:04.7115021Z * [new tag] v2.2.0-rc2 -> v2.2.0-rc2 2025-08-26T20:40:04.7115412Z * [new tag] v2.2.0-rc3 -> v2.2.0-rc3 2025-08-26T20:40:04.7115779Z * [new tag] v2.2.0-rc4 -> v2.2.0-rc4 2025-08-26T20:40:04.7116133Z * [new tag] v2.2.0-rc5 -> v2.2.0-rc5 2025-08-26T20:40:04.7116680Z * [new tag] v2.2.0-rc6 -> v2.2.0-rc6 2025-08-26T20:40:04.7117051Z * [new tag] v2.2.0-rc7 -> v2.2.0-rc7 2025-08-26T20:40:04.7117535Z * [new tag] v2.2.0-rc8 -> v2.2.0-rc8 2025-08-26T20:40:04.7117894Z * [new tag] v2.2.1 -> v2.2.1 2025-08-26T20:40:04.7118264Z * [new tag] v2.2.1-rc1 -> v2.2.1-rc1 2025-08-26T20:40:04.7118622Z * [new tag] v2.2.1-rc2 -> v2.2.1-rc2 2025-08-26T20:40:04.7118975Z * [new tag] v2.2.1-rc3 -> v2.2.1-rc3 2025-08-26T20:40:04.7119337Z * [new tag] v2.2.2 -> v2.2.2 2025-08-26T20:40:04.7119695Z * [new tag] v2.2.2-rc1 -> v2.2.2-rc1 2025-08-26T20:40:04.7120039Z * [new tag] v2.2.2-rc2 -> v2.2.2-rc2 2025-08-26T20:40:04.7120405Z * [new tag] v2.2.2-rc3 -> v2.2.2-rc3 2025-08-26T20:40:04.7120762Z * [new tag] v2.3.0 -> v2.3.0 2025-08-26T20:40:04.7121112Z * [new tag] v2.3.0-rc1 -> v2.3.0-rc1 2025-08-26T20:40:04.7121476Z * [new tag] v2.3.0-rc10 -> v2.3.0-rc10 2025-08-26T20:40:04.7121905Z * [new tag] v2.3.0-rc11 -> v2.3.0-rc11 2025-08-26T20:40:04.7122275Z * [new tag] v2.3.0-rc12 -> v2.3.0-rc12 2025-08-26T20:40:04.7122633Z * [new tag] v2.3.0-rc2 -> v2.3.0-rc2 2025-08-26T20:40:04.7123103Z * [new tag] v2.3.0-rc3 -> v2.3.0-rc3 2025-08-26T20:40:04.7123458Z * [new tag] v2.3.0-rc4 -> v2.3.0-rc4 2025-08-26T20:40:04.7123822Z * [new tag] v2.3.0-rc5 -> v2.3.0-rc5 2025-08-26T20:40:04.7124187Z * [new tag] v2.3.0-rc6 -> v2.3.0-rc6 2025-08-26T20:40:04.7124552Z * [new tag] v2.3.0-rc7 -> v2.3.0-rc7 2025-08-26T20:40:04.7124921Z * [new tag] v2.3.0-rc8 -> v2.3.0-rc8 2025-08-26T20:40:04.7125268Z * [new tag] v2.3.0-rc9 -> v2.3.0-rc9 2025-08-26T20:40:04.7125620Z * [new tag] v2.3.1 -> v2.3.1 2025-08-26T20:40:04.7125964Z * [new tag] v2.3.1-rc1 -> v2.3.1-rc1 2025-08-26T20:40:04.7126319Z * [new tag] v2.3.1-rc2 -> v2.3.1-rc2 2025-08-26T20:40:04.7126667Z * [new tag] v2.3.1-rc3 -> v2.3.1-rc3 2025-08-26T20:40:04.7127049Z * [new tag] v2.4.0 -> v2.4.0 2025-08-26T20:40:04.7127400Z * [new tag] v2.4.0-rc1 -> v2.4.0-rc1 2025-08-26T20:40:04.7127747Z * [new tag] v2.4.0-rc2 -> v2.4.0-rc2 2025-08-26T20:40:04.7128104Z * [new tag] v2.4.0-rc3 -> v2.4.0-rc3 2025-08-26T20:40:04.7128449Z * [new tag] v2.4.0-rc4 -> v2.4.0-rc4 2025-08-26T20:40:04.7128848Z * [new tag] v2.4.0-rc5 -> v2.4.0-rc5 2025-08-26T20:40:04.7129217Z * [new tag] v2.4.0-rc6 -> v2.4.0-rc6 2025-08-26T20:40:04.7129796Z * [new tag] v2.4.0-rc7 -> v2.4.0-rc7 2025-08-26T20:40:04.7130153Z * [new tag] v2.4.0-rc8 -> v2.4.0-rc8 2025-08-26T20:40:04.7130548Z * [new tag] v2.4.0-rc9 -> v2.4.0-rc9 2025-08-26T20:40:04.7130904Z * [new tag] v2.4.1 -> v2.4.1 2025-08-26T20:40:04.7131246Z * [new tag] v2.4.1-rc1 -> v2.4.1-rc1 2025-08-26T20:40:04.7131603Z * [new tag] v2.4.1-rc2 -> v2.4.1-rc2 2025-08-26T20:40:04.7132054Z * [new tag] v2.4.1-rc3 -> v2.4.1-rc3 2025-08-26T20:40:04.7132397Z * [new tag] v2.5.0 -> v2.5.0 2025-08-26T20:40:04.7132752Z * [new tag] v2.5.0-rc1 -> v2.5.0-rc1 2025-08-26T20:40:04.7133108Z * [new tag] v2.5.0-rc10 -> v2.5.0-rc10 2025-08-26T20:40:04.7133477Z * [new tag] v2.5.0-rc2 -> v2.5.0-rc2 2025-08-26T20:40:04.7133835Z * [new tag] v2.5.0-rc3 -> v2.5.0-rc3 2025-08-26T20:40:04.7134222Z * [new tag] v2.5.0-rc4 -> v2.5.0-rc4 2025-08-26T20:40:04.7134575Z * [new tag] v2.5.0-rc5 -> v2.5.0-rc5 2025-08-26T20:40:04.7134922Z * [new tag] v2.5.0-rc6 -> v2.5.0-rc6 2025-08-26T20:40:04.7135276Z * [new tag] v2.5.0-rc7 -> v2.5.0-rc7 2025-08-26T20:40:04.7135627Z * [new tag] v2.5.0-rc8 -> v2.5.0-rc8 2025-08-26T20:40:04.7135983Z * [new tag] v2.5.0-rc9 -> v2.5.0-rc9 2025-08-26T20:40:05.0578797Z * [new tag] v2.5.1 -> v2.5.1 2025-08-26T20:40:05.0579213Z * [new tag] v2.5.1-rc1 -> v2.5.1-rc1 2025-08-26T20:40:05.0579628Z * [new tag] v2.6.0 -> v2.6.0 2025-08-26T20:40:05.0579986Z * [new tag] v2.6.0-rc1 -> v2.6.0-rc1 2025-08-26T20:40:05.0580367Z * [new tag] v2.6.0-rc2 -> v2.6.0-rc2 2025-08-26T20:40:05.0580740Z * [new tag] v2.6.0-rc3 -> v2.6.0-rc3 2025-08-26T20:40:05.0581096Z * [new tag] v2.6.0-rc4 -> v2.6.0-rc4 2025-08-26T20:40:05.0581462Z * [new tag] v2.6.0-rc5 -> v2.6.0-rc5 2025-08-26T20:40:05.0581838Z * [new tag] v2.6.0-rc6 -> v2.6.0-rc6 2025-08-26T20:40:05.0582278Z * [new tag] v2.6.0-rc7 -> v2.6.0-rc7 2025-08-26T20:40:05.0582634Z * [new tag] v2.6.0-rc8 -> v2.6.0-rc8 2025-08-26T20:40:05.0583006Z * [new tag] v2.6.0-rc9 -> v2.6.0-rc9 2025-08-26T20:40:05.0583376Z * [new tag] v2.7.0 -> v2.7.0 2025-08-26T20:40:05.0583730Z * [new tag] v2.7.0-rc1 -> v2.7.0-rc1 2025-08-26T20:40:05.0584104Z * [new tag] v2.7.0-rc10 -> v2.7.0-rc10 2025-08-26T20:40:05.0584459Z * [new tag] v2.7.0-rc2 -> v2.7.0-rc2 2025-08-26T20:40:05.0584817Z * [new tag] v2.7.0-rc3 -> v2.7.0-rc3 2025-08-26T20:40:05.0585184Z * [new tag] v2.7.0-rc4 -> v2.7.0-rc4 2025-08-26T20:40:05.0585549Z * [new tag] v2.7.0-rc5 -> v2.7.0-rc5 2025-08-26T20:40:05.0585904Z * [new tag] v2.7.0-rc6 -> v2.7.0-rc6 2025-08-26T20:40:05.0586247Z * [new tag] v2.7.0-rc7 -> v2.7.0-rc7 2025-08-26T20:40:05.0586600Z * [new tag] v2.7.0-rc8 -> v2.7.0-rc8 2025-08-26T20:40:05.0587143Z * [new tag] v2.7.0-rc9 -> v2.7.0-rc9 2025-08-26T20:40:05.0587490Z * [new tag] v2.7.1 -> v2.7.1 2025-08-26T20:40:05.0587851Z * [new tag] v2.7.1-rc1 -> v2.7.1-rc1 2025-08-26T20:40:05.0588211Z * [new tag] v2.7.1-rc2 -> v2.7.1-rc2 2025-08-26T20:40:05.0588573Z * [new tag] v2.7.1-rc3 -> v2.7.1-rc3 2025-08-26T20:40:05.0588917Z * [new tag] v2.7.1-rc4 -> v2.7.1-rc4 2025-08-26T20:40:05.0589394Z * [new tag] v2.7.1-rc5 -> v2.7.1-rc5 2025-08-26T20:40:05.0589751Z * [new tag] v2.8.0 -> v2.8.0 2025-08-26T20:40:05.0590091Z * [new tag] v2.8.0-rc1 -> v2.8.0-rc1 2025-08-26T20:40:05.0590446Z * [new tag] v2.8.0-rc2 -> v2.8.0-rc2 2025-08-26T20:40:05.0590794Z * [new tag] v2.8.0-rc3 -> v2.8.0-rc3 2025-08-26T20:40:05.0591156Z * [new tag] v2.8.0-rc4 -> v2.8.0-rc4 2025-08-26T20:40:05.0591520Z * [new tag] v2.8.0-rc5 -> v2.8.0-rc5 2025-08-26T20:40:05.0591866Z * [new tag] v2.8.0-rc6 -> v2.8.0-rc6 2025-08-26T20:40:05.0592226Z * [new tag] v2.8.0-rc7 -> v2.8.0-rc7 2025-08-26T20:40:05.0592571Z * [new tag] v2.8.0-rc8 -> v2.8.0-rc8 2025-08-26T20:40:05.0592940Z * [new tag] whc_flight_1 -> whc_flight_1 2025-08-26T20:40:05.0593306Z * [new tag] whc_flight_2 -> whc_flight_2 2025-08-26T20:40:05.0593693Z * [new tag] whc_flight_4 -> whc_flight_4 2025-08-26T20:40:05.0780489Z [command]"C:\Program Files\Git\cmd\git.exe" rev-parse --verify --quiet 262640fd220236042fbf4443cc163c8838c84c3d^{object} 2025-08-26T20:40:05.0984173Z 262640fd220236042fbf4443cc163c8838c84c3d 2025-08-26T20:40:05.1016361Z ##[endgroup] 2025-08-26T20:40:05.1016734Z ##[group]Determining the checkout info 2025-08-26T20:40:05.1017860Z ##[endgroup] 2025-08-26T20:40:05.1028342Z [command]"C:\Program Files\Git\cmd\git.exe" sparse-checkout disable 2025-08-26T20:40:05.1293472Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --unset-all extensions.worktreeConfig 2025-08-26T20:40:05.1519651Z ##[group]Checking out the ref 2025-08-26T20:40:05.1530057Z [command]"C:\Program Files\Git\cmd\git.exe" checkout --progress --force 262640fd220236042fbf4443cc163c8838c84c3d 2025-08-26T20:40:06.2167544Z Updating files: 8% (1729/19395) 2025-08-26T20:40:06.2775331Z Updating files: 9% (1746/19395) 2025-08-26T20:40:06.3385115Z Updating files: 10% (1940/19395) 2025-08-26T20:40:06.4505459Z Updating files: 11% (2134/19395) 2025-08-26T20:40:06.5131687Z Updating files: 12% (2328/19395) 2025-08-26T20:40:06.5693850Z Updating files: 13% (2522/19395) 2025-08-26T20:40:06.6366494Z Updating files: 14% (2716/19395) 2025-08-26T20:40:06.6869977Z Updating files: 15% (2910/19395) 2025-08-26T20:40:06.7441783Z Updating files: 16% (3104/19395) 2025-08-26T20:40:06.8053590Z Updating files: 17% (3298/19395) 2025-08-26T20:40:06.8688077Z Updating files: 18% (3492/19395) 2025-08-26T20:40:06.9267379Z Updating files: 19% (3686/19395) 2025-08-26T20:40:06.9859277Z Updating files: 20% (3879/19395) 2025-08-26T20:40:07.2118695Z Updating files: 21% (4073/19395) 2025-08-26T20:40:07.2939854Z Updating files: 21% (4093/19395) 2025-08-26T20:40:07.4513020Z Updating files: 22% (4267/19395) 2025-08-26T20:40:07.5415874Z Updating files: 23% (4461/19395) 2025-08-26T20:40:07.6152986Z Updating files: 24% (4655/19395) 2025-08-26T20:40:07.6629445Z Updating files: 25% (4849/19395) 2025-08-26T20:40:07.6972099Z Updating files: 26% (5043/19395) 2025-08-26T20:40:07.7494091Z Updating files: 27% (5237/19395) 2025-08-26T20:40:07.7799010Z Updating files: 28% (5431/19395) 2025-08-26T20:40:07.8138180Z Updating files: 29% (5625/19395) 2025-08-26T20:40:07.8448840Z Updating files: 30% (5819/19395) 2025-08-26T20:40:07.9136351Z Updating files: 31% (6013/19395) 2025-08-26T20:40:08.0100703Z Updating files: 32% (6207/19395) 2025-08-26T20:40:08.1470611Z Updating files: 33% (6401/19395) 2025-08-26T20:40:08.2124487Z Updating files: 34% (6595/19395) 2025-08-26T20:40:08.2534060Z Updating files: 34% (6717/19395) 2025-08-26T20:40:08.3397826Z Updating files: 35% (6789/19395) 2025-08-26T20:40:08.4174413Z Updating files: 36% (6983/19395) 2025-08-26T20:40:08.4565461Z Updating files: 37% (7177/19395) 2025-08-26T20:40:08.5342308Z Updating files: 38% (7371/19395) 2025-08-26T20:40:08.5746188Z Updating files: 39% (7565/19395) 2025-08-26T20:40:08.6847399Z Updating files: 40% (7758/19395) 2025-08-26T20:40:08.7499832Z Updating files: 41% (7952/19395) 2025-08-26T20:40:08.7876909Z Updating files: 42% (8146/19395) 2025-08-26T20:40:08.8217809Z Updating files: 43% (8340/19395) 2025-08-26T20:40:08.8903747Z Updating files: 44% (8534/19395) 2025-08-26T20:40:08.9257094Z Updating files: 45% (8728/19395) 2025-08-26T20:40:08.9923165Z Updating files: 46% (8922/19395) 2025-08-26T20:40:09.0429600Z Updating files: 47% (9116/19395) 2025-08-26T20:40:09.0853006Z Updating files: 48% (9310/19395) 2025-08-26T20:40:09.1577490Z Updating files: 49% (9504/19395) 2025-08-26T20:40:09.1987003Z Updating files: 50% (9698/19395) 2025-08-26T20:40:09.2155691Z Updating files: 51% (9892/19395) 2025-08-26T20:40:09.2395574Z Updating files: 51% (9981/19395) 2025-08-26T20:40:09.3128314Z Updating files: 52% (10086/19395) 2025-08-26T20:40:09.3554256Z Updating files: 53% (10280/19395) 2025-08-26T20:40:09.4303747Z Updating files: 54% (10474/19395) 2025-08-26T20:40:09.4738155Z Updating files: 55% (10668/19395) 2025-08-26T20:40:09.5147164Z Updating files: 56% (10862/19395) 2025-08-26T20:40:09.6962950Z Updating files: 57% (11056/19395) 2025-08-26T20:40:09.7394776Z Updating files: 58% (11250/19395) 2025-08-26T20:40:09.8291152Z Updating files: 59% (11444/19395) 2025-08-26T20:40:09.8741077Z Updating files: 60% (11637/19395) 2025-08-26T20:40:09.9214450Z Updating files: 61% (11831/19395) 2025-08-26T20:40:10.0758280Z Updating files: 62% (12025/19395) 2025-08-26T20:40:10.1220600Z Updating files: 63% (12219/19395) 2025-08-26T20:40:10.1706487Z Updating files: 64% (12413/19395) 2025-08-26T20:40:10.2248694Z Updating files: 65% (12607/19395) 2025-08-26T20:40:10.4272334Z Updating files: 65% (12659/19395) 2025-08-26T20:40:10.4723558Z Updating files: 66% (12801/19395) 2025-08-26T20:40:10.5405686Z Updating files: 67% (12995/19395) 2025-08-26T20:40:10.5825569Z Updating files: 68% (13189/19395) 2025-08-26T20:40:10.6444194Z Updating files: 69% (13383/19395) 2025-08-26T20:40:10.7846162Z Updating files: 70% (13577/19395) 2025-08-26T20:40:10.8312254Z Updating files: 71% (13771/19395) 2025-08-26T20:40:10.8777996Z Updating files: 72% (13965/19395) 2025-08-26T20:40:11.0116484Z Updating files: 73% (14159/19395) 2025-08-26T20:40:11.1219513Z Updating files: 74% (14353/19395) 2025-08-26T20:40:11.2297032Z Updating files: 75% (14547/19395) 2025-08-26T20:40:11.2912588Z Updating files: 75% (14661/19395) 2025-08-26T20:40:11.6945249Z Updating files: 76% (14741/19395) 2025-08-26T20:40:11.8445476Z Updating files: 77% (14935/19395) 2025-08-26T20:40:11.9310733Z Updating files: 78% (15129/19395) 2025-08-26T20:40:12.0291838Z Updating files: 79% (15323/19395) 2025-08-26T20:40:12.1648498Z Updating files: 80% (15516/19395) 2025-08-26T20:40:12.2333166Z Updating files: 81% (15710/19395) 2025-08-26T20:40:12.2791798Z Updating files: 81% (15828/19395) 2025-08-26T20:40:12.4200597Z Updating files: 82% (15904/19395) 2025-08-26T20:40:12.4997898Z Updating files: 83% (16098/19395) 2025-08-26T20:40:12.5786818Z Updating files: 84% (16292/19395) 2025-08-26T20:40:12.6730542Z Updating files: 85% (16486/19395) 2025-08-26T20:40:12.8347251Z Updating files: 86% (16680/19395) 2025-08-26T20:40:12.9193638Z Updating files: 87% (16874/19395) 2025-08-26T20:40:13.0031745Z Updating files: 88% (17068/19395) 2025-08-26T20:40:13.1193379Z Updating files: 89% (17262/19395) 2025-08-26T20:40:13.2082797Z Updating files: 90% (17456/19395) 2025-08-26T20:40:13.2395021Z Updating files: 91% (17650/19395) 2025-08-26T20:40:13.2897001Z Updating files: 91% (17723/19395) 2025-08-26T20:40:13.3985697Z Updating files: 92% (17844/19395) 2025-08-26T20:40:13.4903236Z Updating files: 93% (18038/19395) 2025-08-26T20:40:13.6194895Z Updating files: 94% (18232/19395) 2025-08-26T20:40:13.7092874Z Updating files: 95% (18426/19395) 2025-08-26T20:40:13.9335502Z Updating files: 96% (18620/19395) 2025-08-26T20:40:14.0197079Z Updating files: 97% (18814/19395) 2025-08-26T20:40:14.2201095Z Updating files: 98% (19008/19395) 2025-08-26T20:40:14.2691515Z Updating files: 99% (19202/19395) 2025-08-26T20:40:14.3576539Z Updating files: 99% (19204/19395) 2025-08-26T20:40:14.3576869Z Updating files: 100% (19395/19395) 2025-08-26T20:40:14.3577166Z Updating files: 100% (19395/19395), done. 2025-08-26T20:40:14.3997736Z Note: switching to '262640fd220236042fbf4443cc163c8838c84c3d'. 2025-08-26T20:40:14.3998041Z 2025-08-26T20:40:14.3998299Z You are in 'detached HEAD' state. You can look around, make experimental 2025-08-26T20:40:14.3998843Z changes and commit them, and you can discard any commits you make in this 2025-08-26T20:40:14.3999343Z state without impacting any branches by switching back to a branch. 2025-08-26T20:40:14.3999635Z 2025-08-26T20:40:14.3999818Z If you want to create a new branch to retain commits you create, you may 2025-08-26T20:40:14.4000309Z do so (now or later) by using -c with the switch command. Example: 2025-08-26T20:40:14.4000574Z 2025-08-26T20:40:14.4000676Z git switch -c 2025-08-26T20:40:14.4000858Z 2025-08-26T20:40:14.4000949Z Or undo this operation with: 2025-08-26T20:40:14.4001120Z 2025-08-26T20:40:14.4001193Z git switch - 2025-08-26T20:40:14.4001329Z 2025-08-26T20:40:14.4001542Z Turn off this advice by setting config variable advice.detachedHead to false 2025-08-26T20:40:14.4001863Z 2025-08-26T20:40:14.4002070Z HEAD is now at 262640fd220 [ROCm][CI] restore test_flex_attention tests (#161519) 2025-08-26T20:40:14.4193068Z ##[endgroup] 2025-08-26T20:40:14.4193517Z ##[group]Setting up auth for fetching submodules 2025-08-26T20:40:14.4217938Z [command]"C:\Program Files\Git\cmd\git.exe" config --global http.https://github.com/.extraheader "AUTHORIZATION: basic ***" 2025-08-26T20:40:14.4476750Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --unset-all url.https://github.com/.insteadOf 2025-08-26T20:40:14.4717614Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add url.https://github.com/.insteadOf git@github.com: 2025-08-26T20:40:14.4950315Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add url.https://github.com/.insteadOf org-21003710@github.com: 2025-08-26T20:40:14.5173747Z ##[endgroup] 2025-08-26T20:40:14.5174134Z ##[group]Fetching submodules 2025-08-26T20:40:14.5186185Z [command]"C:\Program Files\Git\cmd\git.exe" submodule sync --recursive 2025-08-26T20:40:14.8869820Z [command]"C:\Program Files\Git\cmd\git.exe" -c protocol.version=2 submodule update --init --force --recursive 2025-08-26T20:40:15.3450794Z Submodule 'android/libs/fbjni' (https://github.com/facebookincubator/fbjni.git) registered for path 'android/libs/fbjni' 2025-08-26T20:40:15.3451756Z Submodule 'third_party/NNPACK_deps/FP16' (https://github.com/Maratyszcza/FP16.git) registered for path 'third_party/FP16' 2025-08-26T20:40:15.3452714Z Submodule 'third_party/NNPACK_deps/FXdiv' (https://github.com/Maratyszcza/FXdiv.git) registered for path 'third_party/FXdiv' 2025-08-26T20:40:15.3453613Z Submodule 'third_party/NNPACK' (https://github.com/Maratyszcza/NNPACK.git) registered for path 'third_party/NNPACK' 2025-08-26T20:40:15.3454412Z Submodule 'third_party/NVTX' (https://github.com/NVIDIA/NVTX.git) registered for path 'third_party/NVTX' 2025-08-26T20:40:15.3455708Z Submodule 'third_party/VulkanMemoryAllocator' (https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git) registered for path 'third_party/VulkanMemoryAllocator' 2025-08-26T20:40:15.3456843Z Submodule 'third_party/XNNPACK' (https://github.com/google/XNNPACK.git) registered for path 'third_party/XNNPACK' 2025-08-26T20:40:15.3457637Z Submodule 'third_party/aiter' (https://github.com/ROCm/aiter.git) registered for path 'third_party/aiter' 2025-08-26T20:40:15.3458468Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark.git) registered for path 'third_party/benchmark' 2025-08-26T20:40:15.3459553Z Submodule 'third_party/composable_kernel' (https://github.com/ROCm/composable_kernel.git) registered for path 'third_party/composable_kernel' 2025-08-26T20:40:15.3460565Z Submodule 'third_party/cpp-httplib' (https://github.com/yhirose/cpp-httplib.git) registered for path 'third_party/cpp-httplib' 2025-08-26T20:40:15.3461482Z Submodule 'third_party/cpuinfo' (https://github.com/pytorch/cpuinfo.git) registered for path 'third_party/cpuinfo' 2025-08-26T20:40:15.3462420Z Submodule 'third_party/cudnn_frontend' (https://github.com/NVIDIA/cudnn-frontend.git) registered for path 'third_party/cudnn_frontend' 2025-08-26T20:40:15.3463342Z Submodule 'third_party/cutlass' (https://github.com/NVIDIA/cutlass.git) registered for path 'third_party/cutlass' 2025-08-26T20:40:15.3464152Z Submodule 'third_party/fbgemm' (https://github.com/pytorch/fbgemm) registered for path 'third_party/fbgemm' 2025-08-26T20:40:15.3465075Z Submodule 'third_party/flash-attention' (https://github.com/Dao-AILab/flash-attention.git) registered for path 'third_party/flash-attention' 2025-08-26T20:40:15.3466091Z Submodule 'third_party/flatbuffers' (https://github.com/google/flatbuffers.git) registered for path 'third_party/flatbuffers' 2025-08-26T20:40:15.3466921Z Submodule 'third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/fmt' 2025-08-26T20:40:15.3467789Z Submodule 'third_party/gemmlowp/gemmlowp' (https://github.com/google/gemmlowp.git) registered for path 'third_party/gemmlowp/gemmlowp' 2025-08-26T20:40:15.3468665Z Submodule 'third_party/gloo' (https://github.com/pytorch/gloo) registered for path 'third_party/gloo' 2025-08-26T20:40:15.3469478Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/googletest' 2025-08-26T20:40:15.3470310Z Submodule 'third_party/ideep' (https://github.com/intel/ideep) registered for path 'third_party/ideep' 2025-08-26T20:40:15.3471081Z Submodule 'third_party/ittapi' (https://github.com/intel/ittapi.git) registered for path 'third_party/ittapi' 2025-08-26T20:40:15.3471860Z Submodule 'third_party/kineto' (https://github.com/pytorch/kineto) registered for path 'third_party/kineto' 2025-08-26T20:40:15.3472701Z Submodule 'third_party/kleidiai' (https://github.com/ARM-software/kleidiai.git) registered for path 'third_party/kleidiai' 2025-08-26T20:40:15.3473587Z Submodule 'third_party/mimalloc' (https://github.com/microsoft/mimalloc.git) registered for path 'third_party/mimalloc' 2025-08-26T20:40:15.3474449Z Submodule 'third_party/nlohmann' (https://github.com/nlohmann/json.git) registered for path 'third_party/nlohmann' 2025-08-26T20:40:15.3475247Z Submodule 'third_party/onnx' (https://github.com/onnx/onnx.git) registered for path 'third_party/onnx' 2025-08-26T20:40:15.3476200Z Submodule 'third_party/opentelemetry-cpp' (https://github.com/open-telemetry/opentelemetry-cpp.git) registered for path 'third_party/opentelemetry-cpp' 2025-08-26T20:40:15.3477231Z Submodule 'third_party/pocketfft' (https://github.com/mreineck/pocketfft) registered for path 'third_party/pocketfft' 2025-08-26T20:40:15.3478144Z Submodule 'third_party/protobuf' (https://github.com/protocolbuffers/protobuf.git) registered for path 'third_party/protobuf' 2025-08-26T20:40:15.3479078Z Submodule 'third_party/NNPACK_deps/psimd' (https://github.com/Maratyszcza/psimd.git) registered for path 'third_party/psimd' 2025-08-26T20:40:15.3480178Z Submodule 'third_party/NNPACK_deps/pthreadpool' (https://github.com/Maratyszcza/pthreadpool.git) registered for path 'third_party/pthreadpool' 2025-08-26T20:40:15.3520820Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/pybind11' 2025-08-26T20:40:15.3521729Z Submodule 'third_party/python-peachpy' (https://github.com/malfet/PeachPy.git) registered for path 'third_party/python-peachpy' 2025-08-26T20:40:15.3522645Z Submodule 'third_party/sleef' (https://github.com/shibatch/sleef) registered for path 'third_party/sleef' 2025-08-26T20:40:15.3523600Z Submodule 'third_party/tensorpipe' (https://github.com/pytorch/tensorpipe.git) registered for path 'third_party/tensorpipe' 2025-08-26T20:40:15.4043143Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/android/libs/fbjni'... 2025-08-26T20:40:15.9447796Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/FP16'... 2025-08-26T20:40:15.9448395Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/FXdiv'... 2025-08-26T20:40:16.1847408Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flatbuffers'... 2025-08-26T20:40:24.4887965Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/NNPACK'... 2025-08-26T20:40:24.4888623Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/NVTX'... 2025-08-26T20:40:24.4889325Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/benchmark'... 2025-08-26T20:40:24.4889912Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cpuinfo'... 2025-08-26T20:40:24.4890563Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/gloo'... 2025-08-26T20:40:24.4891280Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/gemmlowp/gemmlowp'... 2025-08-26T20:40:24.4892061Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cpp-httplib'... 2025-08-26T20:40:24.4892740Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flash-attention'... 2025-08-26T20:40:24.4893378Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/ideep'... 2025-08-26T20:40:24.4894021Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/VulkanMemoryAllocator'... 2025-08-26T20:40:24.4894725Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/ittapi'... 2025-08-26T20:40:24.4895472Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/googletest'... 2025-08-26T20:40:24.4896156Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fmt'... 2025-08-26T20:40:24.4896774Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kleidiai'... 2025-08-26T20:40:24.4897394Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/mimalloc'... 2025-08-26T20:40:24.5273768Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/psimd'... 2025-08-26T20:40:43.2829868Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cudnn_frontend'... 2025-08-26T20:40:43.2830774Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/pocketfft'... 2025-08-26T20:40:43.2831375Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/aiter'... 2025-08-26T20:40:43.2831983Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto'... 2025-08-26T20:40:43.2832599Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/pthreadpool'... 2025-08-26T20:40:43.2833230Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/python-peachpy'... 2025-08-26T20:40:43.2833846Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm'... 2025-08-26T20:40:43.2834478Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe'... 2025-08-26T20:40:43.2835091Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/protobuf'... 2025-08-26T20:40:43.2835691Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/pybind11'... 2025-08-26T20:40:43.2836265Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/sleef'... 2025-08-26T20:40:43.2837119Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/composable_kernel'... 2025-08-26T20:40:43.2837745Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cutlass'... 2025-08-26T20:40:43.2838317Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/onnx'... 2025-08-26T20:40:43.2838928Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/nlohmann'... 2025-08-26T20:40:43.2839514Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/XNNPACK'... 2025-08-26T20:40:43.2840260Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp'... 2025-08-26T20:40:43.4468817Z Submodule path 'android/libs/fbjni': checked out '7e1e1fe3858c63c251c637ae41a20de425dde96f' 2025-08-26T20:40:43.5391571Z Submodule path 'third_party/FP16': checked out '4dfe081cf6bcd15db339cf2680b9281b8451eeb3' 2025-08-26T20:40:43.6063691Z Submodule path 'third_party/FXdiv': checked out 'b408327ac2a15ec3e43352421954f5b1967701d1' 2025-08-26T20:40:44.1707655Z Submodule path 'third_party/NNPACK': checked out 'c07e3a0400713d546e0dea2d5466dd22ea389c73' 2025-08-26T20:40:44.8036498Z Submodule path 'third_party/NVTX': checked out '2942f167cc30c5e3a44a2aecd5b0d9c07ff61a07' 2025-08-26T20:40:45.0312347Z Submodule path 'third_party/VulkanMemoryAllocator': checked out '1d8f600fd424278486eade7ed3e877c99f0846b1' 2025-08-26T20:40:51.3750120Z Submodule path 'third_party/XNNPACK': checked out '51a0103656eff6fc9bfd39a4597923c4b542c883' 2025-08-26T20:40:52.4798933Z Submodule path 'third_party/aiter': checked out '01aae101b9e5e94d6c16a9514c9fb8df99c93150' 2025-08-26T20:40:52.4910532Z Submodule '3rdparty/composable_kernel' (https://github.com/ROCm/composable_kernel.git) registered for path 'third_party/aiter/3rdparty/composable_kernel' 2025-08-26T20:40:56.5164690Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/aiter/3rdparty/composable_kernel'... 2025-08-26T20:40:59.3521788Z Submodule path 'third_party/aiter/3rdparty/composable_kernel': checked out 'cffe8fa2a442ac8e80dd236a1a5d24fe3d7e0cbf' 2025-08-26T20:40:59.5040605Z Submodule path 'third_party/benchmark': checked out '299e5928955cc62af9968370293b916f5130916f' 2025-08-26T20:41:03.1402574Z Submodule path 'third_party/composable_kernel': checked out '7fe50dc3da2069d6645d9deb8c017a876472a977' 2025-08-26T20:41:03.3482329Z Submodule path 'third_party/cpp-httplib': checked out '3af7f2c16147f3fbc6e4d717032daf505dc1652c' 2025-08-26T20:41:03.9530444Z Submodule path 'third_party/cpuinfo': checked out '5e3d2445e6a84d9599bee2bf78edbb4d80865e1d' 2025-08-26T20:41:04.1805846Z Submodule path 'third_party/cudnn_frontend': checked out 'f937055efc6d414d11f4c6577e3977fe74f35fb6' 2025-08-26T20:41:09.7670806Z Submodule path 'third_party/cutlass': checked out 'e51efbfe18fe4f4cbb66ab814c55bf4aa0185491' 2025-08-26T20:41:10.8964466Z Submodule path 'third_party/fbgemm': checked out '21c7d30c526c0f1ad873ecc632dca6cfa8a69067' 2025-08-26T20:41:10.9195586Z Submodule 'external/asmjit' (https://github.com/asmjit/asmjit.git) registered for path 'third_party/fbgemm/external/asmjit' 2025-08-26T20:41:10.9196686Z Submodule 'external/composable_kernel' (https://github.com/jwfromm/composable_kernel.git) registered for path 'third_party/fbgemm/external/composable_kernel' 2025-08-26T20:41:10.9197804Z Submodule 'external/cpuinfo' (https://github.com/pytorch/cpuinfo) registered for path 'third_party/fbgemm/external/cpuinfo' 2025-08-26T20:41:10.9198775Z Submodule 'external/cutlass' (https://github.com/jwfromm/cutlass) registered for path 'third_party/fbgemm/external/cutlass' 2025-08-26T20:41:10.9199898Z Submodule 'external/googletest' (https://github.com/google/googletest) registered for path 'third_party/fbgemm/external/googletest' 2025-08-26T20:41:10.9200986Z Submodule 'external/hipify_torch' (https://github.com/ROCmSoftwarePlatform/hipify_torch.git) registered for path 'third_party/fbgemm/external/hipify_torch' 2025-08-26T20:41:10.9202792Z Submodule 'external/json' (https://github.com/nlohmann/json.git) registered for path 'third_party/fbgemm/external/json' 2025-08-26T20:41:20.9180481Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/asmjit'... 2025-08-26T20:41:20.9181230Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/hipify_torch'... 2025-08-26T20:41:20.9181940Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/cpuinfo'... 2025-08-26T20:41:20.9182646Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/composable_kernel'... 2025-08-26T20:41:20.9183586Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/googletest'... 2025-08-26T20:41:20.9184277Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/cutlass'... 2025-08-26T20:41:20.9184929Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/json'... 2025-08-26T20:41:21.1235057Z Submodule path 'third_party/fbgemm/external/asmjit': checked out 'a3199e8857792cd10b7589ff5d58343d2c9008ea' 2025-08-26T20:41:24.0943150Z Submodule path 'third_party/fbgemm/external/composable_kernel': checked out 'b1281b8b08d973a7064f864f47eeb30f3e2596e9' 2025-08-26T20:41:24.5922932Z Submodule path 'third_party/fbgemm/external/cpuinfo': checked out '6543fec09b2f04ac4a666882998b534afc9c1349' 2025-08-26T20:41:29.4201859Z Submodule path 'third_party/fbgemm/external/cutlass': checked out 'b40777404c174b9694a870bff5c13ce6b7f656ad' 2025-08-26T20:41:29.6251635Z Submodule path 'third_party/fbgemm/external/googletest': checked out '52eb8108c5bdec04579160ae17225d66034bd723' 2025-08-26T20:41:29.7006099Z Submodule path 'third_party/fbgemm/external/hipify_torch': checked out 'a4337c69fe0e2552a7b7b0669178926beeed828c' 2025-08-26T20:41:30.4423254Z Submodule path 'third_party/fbgemm/external/json': checked out '9cca280a4d0ccf0c08f47a99aa71d1b0e52f8d03' 2025-08-26T20:41:30.9601438Z Submodule path 'third_party/flash-attention': checked out '979702c87a8713a8e0a5e9fee122b90d2ef13be5' 2025-08-26T20:41:30.9734143Z Submodule 'csrc/composable_kernel' (https://github.com/ROCm/composable_kernel.git) registered for path 'third_party/flash-attention/csrc/composable_kernel' 2025-08-26T20:41:30.9735334Z Submodule 'csrc/cutlass' (https://github.com/NVIDIA/cutlass.git) registered for path 'third_party/flash-attention/csrc/cutlass' 2025-08-26T20:41:35.6784083Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flash-attention/csrc/composable_kernel'... 2025-08-26T20:41:35.6784939Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flash-attention/csrc/cutlass'... 2025-08-26T20:41:38.9377196Z Submodule path 'third_party/flash-attention/csrc/composable_kernel': checked out '888317e698e9803c62bd38568abc9e05d7709f33' 2025-08-26T20:41:46.7128556Z Submodule path 'third_party/flash-attention/csrc/cutlass': checked out 'c506e16788cb08416a4a57e11a9067beeee29420' 2025-08-26T20:41:54.7942056Z Submodule path 'third_party/flatbuffers': checked out 'a2cd1ea3b6d3fee220106b5fed3f7ce8da9eb757' 2025-08-26T20:41:55.1629031Z Submodule path 'third_party/fmt': checked out '40626af88bd7df9a5fb80be7b25ac85b122d6c21' 2025-08-26T20:41:56.4708673Z Submodule path 'third_party/gemmlowp/gemmlowp': checked out '3fb5c176c17c765a3492cd2f0321b0dab712f350' 2025-08-26T20:41:56.9113266Z Submodule path 'third_party/gloo': checked out 'c7b7b022c124d9643957d9bd55f57ac59fce8fa2' 2025-08-26T20:41:57.5027090Z Submodule path 'third_party/googletest': checked out '52eb8108c5bdec04579160ae17225d66034bd723' 2025-08-26T20:41:57.6026598Z Submodule path 'third_party/ideep': checked out '719d8e6cd7f7a0e01b155657526d693acf97c2b3' 2025-08-26T20:41:57.6131296Z Submodule 'mkl-dnn' (https://github.com/intel/mkl-dnn.git) registered for path 'third_party/ideep/mkl-dnn' 2025-08-26T20:42:10.0447207Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/ideep/mkl-dnn'... 2025-08-26T20:42:18.9670983Z Submodule path 'third_party/ideep/mkl-dnn': checked out '8d263e693366ef8db40acc569cc7d8edf644556d' 2025-08-26T20:42:19.1260243Z Submodule path 'third_party/ittapi': checked out 'dec1d23ca65ab069d225dfe40dea14f455170959' 2025-08-26T20:42:19.7649971Z Submodule path 'third_party/kineto': checked out '5e7501833f1021ce6f618572d3baf657b6319658' 2025-08-26T20:42:19.7822560Z Submodule 'libkineto/third_party/dynolog' (https://github.com/facebookincubator/dynolog.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-26T20:42:19.7824379Z Submodule 'libkineto/third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/kineto/libkineto/third_party/fmt' 2025-08-26T20:42:19.7825525Z Submodule 'libkineto/third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/kineto/libkineto/third_party/googletest' 2025-08-26T20:42:29.2582106Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog'... 2025-08-26T20:42:29.2583092Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/fmt'... 2025-08-26T20:42:29.2584223Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/googletest'... 2025-08-26T20:42:29.6573436Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog': checked out '7d04a0053a845370ae06ce317a22a48e9edcc74e' 2025-08-26T20:42:29.6816249Z Submodule 'third_party/DCGM' (https://github.com/NVIDIA/DCGM.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-26T20:42:29.6817439Z Submodule 'third_party/cpr' (https://github.com/libcpr/cpr.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-26T20:42:29.6818547Z Submodule 'third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-26T20:42:29.6819692Z Submodule 'third_party/gflags' (https://github.com/gflags/gflags.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-26T20:42:29.6820837Z Submodule 'third_party/glog' (https://github.com/google/glog.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-26T20:42:29.6822049Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-26T20:42:29.6823282Z Submodule 'third_party/json' (https://github.com/nlohmann/json.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-26T20:42:29.6824403Z Submodule 'third_party/pfs' (https://github.com/dtrugman/pfs.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-26T20:42:37.8179324Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM'... 2025-08-26T20:42:37.8180366Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/gflags'... 2025-08-26T20:42:37.8181306Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/cpr'... 2025-08-26T20:42:37.8182208Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/pfs'... 2025-08-26T20:42:37.8183156Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/glog'... 2025-08-26T20:42:37.8184089Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/fmt'... 2025-08-26T20:42:37.8185023Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/googletest'... 2025-08-26T20:42:37.8185977Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/json'... 2025-08-26T20:42:38.6291137Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM': checked out 'ffde4e54bc7249a6039a5e6b45b395141e1217f9' 2025-08-26T20:42:38.7487655Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr': checked out '871ed52d350214a034f6ef8a3b8f51c5ce1bd400' 2025-08-26T20:42:39.1254069Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt': checked out 'cd4af11efc9c622896a3e4cb599fa28668ca3d05' 2025-08-26T20:42:39.2345752Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags': checked out 'e171aa2d15ed9eb17054558e0b3a6a413bb01067' 2025-08-26T20:42:39.2455459Z Submodule 'doc' (https://github.com/gflags/gflags.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-26T20:42:39.6425641Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc'... 2025-08-26T20:42:39.7008698Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc': checked out '8411df715cf522606e3b1aca386ddfc0b63d34b4' 2025-08-26T20:42:39.8083430Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog': checked out 'b33e3bad4c46c8a6345525fd822af355e5ef9446' 2025-08-26T20:42:40.0423230Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest': checked out '58d77fa8070e8cec2dc1ed015d66b454c8d78850' 2025-08-26T20:42:40.5912266Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/json': checked out '4f8fba14066156b73f1189a2b8bd568bde5284c5' 2025-08-26T20:42:40.7540035Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs': checked out 'f68a2fa8ea36c783bdd760371411fcb495aa3150' 2025-08-26T20:42:40.8973813Z Submodule path 'third_party/kineto/libkineto/third_party/fmt': checked out '0041a40c1350ba702d475b9c4ad62da77caea164' 2025-08-26T20:42:41.1518071Z Submodule path 'third_party/kineto/libkineto/third_party/googletest': checked out '7aca84427f224eeed3144123d5230d5871e93347' 2025-08-26T20:42:41.3921333Z Submodule path 'third_party/kleidiai': checked out 'cca02c2f69dd18e1f12647c1c0bdc8cf90e680c7' 2025-08-26T20:42:41.6164618Z Submodule path 'third_party/mimalloc': checked out 'fbd8b99c2b828428947d70fdc046bb55609be93e' 2025-08-26T20:42:42.3543438Z Submodule path 'third_party/nlohmann': checked out '55f93686c01528224f448c19128836e7df245f72' 2025-08-26T20:42:46.1044435Z Submodule path 'third_party/onnx': checked out 'e709452ef2bbc1d113faf678c24e6d3467696e83' 2025-08-26T20:42:46.1178002Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/onnx/third_party/pybind11' 2025-08-26T20:42:47.2374601Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/onnx/third_party/pybind11'... 2025-08-26T20:42:47.4075224Z Submodule path 'third_party/onnx/third_party/pybind11': checked out 'a2e59f0e7065404b44dfe92a28aca47ba1378dc4' 2025-08-26T20:42:47.8843891Z Submodule path 'third_party/opentelemetry-cpp': checked out 'a799f4aed9c94b765dcdaabaeab7d5e7e2310878' 2025-08-26T20:42:47.9139064Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark) registered for path 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-26T20:42:47.9140218Z Submodule 'third_party/googletest' (https://github.com/google/googletest) registered for path 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-26T20:42:47.9141288Z Submodule 'third_party/ms-gsl' (https://github.com/microsoft/GSL) registered for path 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-26T20:42:47.9142348Z Submodule 'third_party/nlohmann-json' (https://github.com/nlohmann/json) registered for path 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-26T20:42:47.9143630Z Submodule 'third_party/opentelemetry-proto' (https://github.com/open-telemetry/opentelemetry-proto) registered for path 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-26T20:42:47.9145196Z Submodule 'third_party/opentracing-cpp' (https://github.com/opentracing/opentracing-cpp.git) registered for path 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-26T20:42:47.9146472Z Submodule 'third_party/prometheus-cpp' (https://github.com/jupp0r/prometheus-cpp) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-26T20:42:47.9147644Z Submodule 'tools/vcpkg' (https://github.com/Microsoft/vcpkg) registered for path 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-26T20:42:47.9655704Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/benchmark'... 2025-08-26T20:42:58.6094471Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/opentracing-cpp'... 2025-08-26T20:42:58.6095356Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/ms-gsl'... 2025-08-26T20:42:58.6096256Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/opentelemetry-proto'... 2025-08-26T20:42:58.6097258Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp'... 2025-08-26T20:42:58.6098097Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/googletest'... 2025-08-26T20:42:58.6098939Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/nlohmann-json'... 2025-08-26T20:42:58.6099767Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/tools/vcpkg'... 2025-08-26T20:42:58.7415582Z Submodule path 'third_party/opentelemetry-cpp/third_party/benchmark': checked out 'd572f4777349d43653b21d6c2fc63020ab326db2' 2025-08-26T20:42:58.9318996Z Submodule path 'third_party/opentelemetry-cpp/third_party/googletest': checked out 'b796f7d44681514f58a683a3a71ff17c94edb0c1' 2025-08-26T20:42:59.0298476Z Submodule path 'third_party/opentelemetry-cpp/third_party/ms-gsl': checked out '6f4529395c5b7c2d661812257cd6780c67e54afa' 2025-08-26T20:42:59.6615066Z Submodule path 'third_party/opentelemetry-cpp/third_party/nlohmann-json': checked out 'bc889afb4c5bf1c0d8ee29ef35eaaf4c8bef8a5d' 2025-08-26T20:42:59.7548261Z Submodule path 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto': checked out '4ca4f0335c63cda7ab31ea7ed70d6553aee14dce' 2025-08-26T20:42:59.8682026Z Submodule path 'third_party/opentelemetry-cpp/third_party/opentracing-cpp': checked out '06b57f48ded1fa3bdd3d4346f6ef29e40e08eaf5' 2025-08-26T20:42:59.9871233Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp': checked out 'c9ffcdda9086ffd9e1283ea7a0276d831f3c8a8d' 2025-08-26T20:42:59.9995008Z Submodule 'civetweb' (https://github.com/civetweb/civetweb.git) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-26T20:42:59.9996299Z Submodule 'googletest' (https://github.com/google/googletest.git) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-26T20:43:02.1232413Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb'... 2025-08-26T20:43:02.1233508Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest'... 2025-08-26T20:43:02.8351115Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb': checked out 'eefb26f82b233268fc98577d265352720d477ba4' 2025-08-26T20:43:03.0360861Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest': checked out 'e2239ee6043f73722e7aa812a459f54a28552929' 2025-08-26T20:43:10.3886640Z Submodule path 'third_party/opentelemetry-cpp/tools/vcpkg': checked out '8eb57355a4ffb410a2e94c07b4dca2dffbee8e50' 2025-08-26T20:43:10.4650543Z Submodule path 'third_party/pocketfft': checked out '0fa0ef591e38c2758e3184c6c23e497b9f732ffa' 2025-08-26T20:43:11.7645042Z Submodule path 'third_party/protobuf': checked out 'd1eca4e4b421cd2997495c4b4e65cea6be4e9b8a' 2025-08-26T20:43:11.7775349Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark.git) registered for path 'third_party/protobuf/third_party/benchmark' 2025-08-26T20:43:11.7776462Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/protobuf/third_party/googletest' 2025-08-26T20:43:13.2762537Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/protobuf/third_party/benchmark'... 2025-08-26T20:43:13.2763350Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/protobuf/third_party/googletest'... 2025-08-26T20:43:13.3596477Z Submodule path 'third_party/protobuf/third_party/benchmark': checked out '5b7683f49e1e9223cf9927b24f6fd3d6bd82e3f8' 2025-08-26T20:43:13.6374444Z Submodule path 'third_party/protobuf/third_party/googletest': checked out '5ec7f0c4a113e2f18ac2c6cc7df51ad6afc24081' 2025-08-26T20:43:13.7089299Z Submodule path 'third_party/psimd': checked out '072586a71b55b7f8c584153d223e95687148a900' 2025-08-26T20:43:13.7890115Z Submodule path 'third_party/pthreadpool': checked out '4fe0e1e183925bf8cfa6aae24237e724a96479b8' 2025-08-26T20:43:14.0083886Z Submodule path 'third_party/pybind11': checked out 'f5fbe867d2d26e4a0a9177a51f6e568868ad3dc8' 2025-08-26T20:43:14.1437610Z Submodule path 'third_party/python-peachpy': checked out 'f45429b087dd7d5bc78bb40dc7cf06425c252d67' 2025-08-26T20:43:14.3466062Z Submodule path 'third_party/sleef': checked out '5a1d179df9cf652951b59010a2d2075372d67f68' 2025-08-26T20:43:14.8631449Z Submodule path 'third_party/tensorpipe': checked out 'af0118d13e52f5a08841464a768e01a0bf3e3075' 2025-08-26T20:43:14.8802576Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/tensorpipe/third_party/googletest' 2025-08-26T20:43:14.8804593Z Submodule 'third_party/libnop' (https://github.com/google/libnop.git) registered for path 'third_party/tensorpipe/third_party/libnop' 2025-08-26T20:43:14.8805730Z Submodule 'third_party/libuv' (https://github.com/libuv/libuv.git) registered for path 'third_party/tensorpipe/third_party/libuv' 2025-08-26T20:43:14.8806841Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/tensorpipe/third_party/pybind11' 2025-08-26T20:43:17.0530160Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/googletest'... 2025-08-26T20:43:17.0531036Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/libnop'... 2025-08-26T20:43:17.0531778Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/libuv'... 2025-08-26T20:43:17.0532507Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/pybind11'... 2025-08-26T20:43:17.3088502Z Submodule path 'third_party/tensorpipe/third_party/googletest': checked out 'aee0f9d9b5b87796ee8a0ab26b7587ec30e8858e' 2025-08-26T20:43:17.4468947Z Submodule path 'third_party/tensorpipe/third_party/libnop': checked out '910b55815be16109f04f4180e9adee14fb4ce281' 2025-08-26T20:43:17.7253707Z Submodule path 'third_party/tensorpipe/third_party/libuv': checked out '5152db2cbfeb5582e9c27c5ea1dba2cd9e10759b' 2025-08-26T20:43:17.8721892Z Submodule path 'third_party/tensorpipe/third_party/pybind11': checked out 'a23996fce38ff6ccfbcdc09f1e63f2c4be5ea2ef' 2025-08-26T20:43:17.8828305Z Submodule 'tools/clang' (https://github.com/wjakob/clang-cindex-python3) registered for path 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-26T20:43:18.2113290Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/pybind11/tools/clang'... 2025-08-26T20:43:18.2651514Z Submodule path 'third_party/tensorpipe/third_party/pybind11/tools/clang': checked out '6a00cbc4a9b8e68b71caf7f774b3f9c753ae84d5' 2025-08-26T20:43:18.2895366Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "git config --local gc.auto 0" 2025-08-26T20:43:18.6859671Z Entering 'android/libs/fbjni' 2025-08-26T20:43:18.7240779Z Entering 'third_party/FP16' 2025-08-26T20:43:18.7627682Z Entering 'third_party/FXdiv' 2025-08-26T20:43:18.7998187Z Entering 'third_party/NNPACK' 2025-08-26T20:43:18.8371986Z Entering 'third_party/NVTX' 2025-08-26T20:43:18.8768327Z Entering 'third_party/VulkanMemoryAllocator' 2025-08-26T20:43:18.9146161Z Entering 'third_party/XNNPACK' 2025-08-26T20:43:18.9543999Z Entering 'third_party/aiter' 2025-08-26T20:43:18.9927423Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-08-26T20:43:19.0327443Z Entering 'third_party/benchmark' 2025-08-26T20:43:19.0738124Z Entering 'third_party/composable_kernel' 2025-08-26T20:43:19.1127675Z Entering 'third_party/cpp-httplib' 2025-08-26T20:43:19.1497433Z Entering 'third_party/cpuinfo' 2025-08-26T20:43:19.1877174Z Entering 'third_party/cudnn_frontend' 2025-08-26T20:43:19.2248457Z Entering 'third_party/cutlass' 2025-08-26T20:43:19.2675378Z Entering 'third_party/fbgemm' 2025-08-26T20:43:19.3036075Z Entering 'third_party/fbgemm/external/asmjit' 2025-08-26T20:43:19.3412570Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-08-26T20:43:19.3837695Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-08-26T20:43:19.4217260Z Entering 'third_party/fbgemm/external/cutlass' 2025-08-26T20:43:19.4603133Z Entering 'third_party/fbgemm/external/googletest' 2025-08-26T20:43:19.4981916Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-08-26T20:43:19.5360079Z Entering 'third_party/fbgemm/external/json' 2025-08-26T20:43:19.5748279Z Entering 'third_party/flash-attention' 2025-08-26T20:43:19.6101737Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-08-26T20:43:19.6484200Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-08-26T20:43:19.6879104Z Entering 'third_party/flatbuffers' 2025-08-26T20:43:19.7259747Z Entering 'third_party/fmt' 2025-08-26T20:43:19.7657014Z Entering 'third_party/gemmlowp/gemmlowp' 2025-08-26T20:43:19.8062157Z Entering 'third_party/gloo' 2025-08-26T20:43:19.8443522Z Entering 'third_party/googletest' 2025-08-26T20:43:19.8840903Z Entering 'third_party/ideep' 2025-08-26T20:43:19.9205857Z Entering 'third_party/ideep/mkl-dnn' 2025-08-26T20:43:19.9603502Z Entering 'third_party/ittapi' 2025-08-26T20:43:19.9990388Z Entering 'third_party/kineto' 2025-08-26T20:43:20.0351625Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-26T20:43:20.0768129Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-26T20:43:20.1142035Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-26T20:43:20.1524457Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-26T20:43:20.1915668Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-26T20:43:20.2280630Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-26T20:43:20.2681165Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-26T20:43:20.3053842Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-26T20:43:20.3430500Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-26T20:43:20.3806117Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-26T20:43:20.4195177Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-08-26T20:43:20.4562458Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-08-26T20:43:20.5006993Z Entering 'third_party/kleidiai' 2025-08-26T20:43:20.5396957Z Entering 'third_party/mimalloc' 2025-08-26T20:43:20.5764413Z Entering 'third_party/nlohmann' 2025-08-26T20:43:20.6136937Z Entering 'third_party/onnx' 2025-08-26T20:43:20.6514239Z Entering 'third_party/onnx/third_party/pybind11' 2025-08-26T20:43:20.6918774Z Entering 'third_party/opentelemetry-cpp' 2025-08-26T20:43:20.7299556Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-26T20:43:20.7675424Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-26T20:43:20.8053303Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-26T20:43:20.8422909Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-26T20:43:20.8793422Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-26T20:43:20.9198860Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-26T20:43:20.9576237Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-26T20:43:20.9932875Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-26T20:43:21.0328177Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-26T20:43:21.0729550Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-26T20:43:21.1161113Z Entering 'third_party/pocketfft' 2025-08-26T20:43:21.1534754Z Entering 'third_party/protobuf' 2025-08-26T20:43:21.1894740Z Entering 'third_party/protobuf/third_party/benchmark' 2025-08-26T20:43:21.2301731Z Entering 'third_party/protobuf/third_party/googletest' 2025-08-26T20:43:21.2691972Z Entering 'third_party/psimd' 2025-08-26T20:43:21.3051651Z Entering 'third_party/pthreadpool' 2025-08-26T20:43:21.3467328Z Entering 'third_party/pybind11' 2025-08-26T20:43:21.3836035Z Entering 'third_party/python-peachpy' 2025-08-26T20:43:21.4214782Z Entering 'third_party/sleef' 2025-08-26T20:43:21.4587210Z Entering 'third_party/tensorpipe' 2025-08-26T20:43:21.4948779Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-08-26T20:43:21.5377016Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-08-26T20:43:21.5753548Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-08-26T20:43:21.6124359Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-08-26T20:43:21.6497522Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-26T20:43:21.6987750Z ##[endgroup] 2025-08-26T20:43:21.6988181Z ##[group]Persisting credentials for submodules 2025-08-26T20:43:21.7002457Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'url\.https\:\/\/github\.com\/\.insteadOf' && git config --local --unset-all 'url.https://github.com/.insteadOf' || :\"" 2025-08-26T20:43:22.1068360Z Entering 'android/libs/fbjni' 2025-08-26T20:43:22.1644368Z Entering 'third_party/FP16' 2025-08-26T20:43:22.2245989Z Entering 'third_party/FXdiv' 2025-08-26T20:43:22.2809694Z Entering 'third_party/NNPACK' 2025-08-26T20:43:22.3382995Z Entering 'third_party/NVTX' 2025-08-26T20:43:22.3955578Z Entering 'third_party/VulkanMemoryAllocator' 2025-08-26T20:43:22.4510847Z Entering 'third_party/XNNPACK' 2025-08-26T20:43:22.5082087Z Entering 'third_party/aiter' 2025-08-26T20:43:22.5663099Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-08-26T20:43:22.6275118Z Entering 'third_party/benchmark' 2025-08-26T20:43:22.6847004Z Entering 'third_party/composable_kernel' 2025-08-26T20:43:22.7415256Z Entering 'third_party/cpp-httplib' 2025-08-26T20:43:22.7970993Z Entering 'third_party/cpuinfo' 2025-08-26T20:43:22.8526551Z Entering 'third_party/cudnn_frontend' 2025-08-26T20:43:22.9083152Z Entering 'third_party/cutlass' 2025-08-26T20:43:22.9647525Z Entering 'third_party/fbgemm' 2025-08-26T20:43:23.0214241Z Entering 'third_party/fbgemm/external/asmjit' 2025-08-26T20:43:23.0772046Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-08-26T20:43:23.1362985Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-08-26T20:43:23.1924233Z Entering 'third_party/fbgemm/external/cutlass' 2025-08-26T20:43:23.2495609Z Entering 'third_party/fbgemm/external/googletest' 2025-08-26T20:43:23.3059404Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-08-26T20:43:23.3633292Z Entering 'third_party/fbgemm/external/json' 2025-08-26T20:43:23.4227820Z Entering 'third_party/flash-attention' 2025-08-26T20:43:23.4788870Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-08-26T20:43:23.5363931Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-08-26T20:43:23.5956824Z Entering 'third_party/flatbuffers' 2025-08-26T20:43:23.6538754Z Entering 'third_party/fmt' 2025-08-26T20:43:23.7102580Z Entering 'third_party/gemmlowp/gemmlowp' 2025-08-26T20:43:23.7676200Z Entering 'third_party/gloo' 2025-08-26T20:43:23.8243226Z Entering 'third_party/googletest' 2025-08-26T20:43:23.8804639Z Entering 'third_party/ideep' 2025-08-26T20:43:23.9368006Z Entering 'third_party/ideep/mkl-dnn' 2025-08-26T20:43:23.9985182Z Entering 'third_party/ittapi' 2025-08-26T20:43:24.0564449Z Entering 'third_party/kineto' 2025-08-26T20:43:24.1110889Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-26T20:43:24.1676689Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-26T20:43:24.2242523Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-26T20:43:24.2820991Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-26T20:43:24.3431443Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-26T20:43:24.4000594Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-26T20:43:24.4605262Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-26T20:43:24.5170179Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-26T20:43:24.5739468Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-26T20:43:24.6333979Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-26T20:43:24.6928050Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-08-26T20:43:24.7497867Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-08-26T20:43:24.8112827Z Entering 'third_party/kleidiai' 2025-08-26T20:43:24.8676676Z Entering 'third_party/mimalloc' 2025-08-26T20:43:24.9242181Z Entering 'third_party/nlohmann' 2025-08-26T20:43:24.9804786Z Entering 'third_party/onnx' 2025-08-26T20:43:25.0377740Z Entering 'third_party/onnx/third_party/pybind11' 2025-08-26T20:43:25.0962718Z Entering 'third_party/opentelemetry-cpp' 2025-08-26T20:43:25.1532045Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-26T20:43:25.2134894Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-26T20:43:25.2720455Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-26T20:43:25.3334255Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-26T20:43:25.3892815Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-26T20:43:25.4460802Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-26T20:43:25.5021783Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-26T20:43:25.5586631Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-26T20:43:25.6154888Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-26T20:43:25.6727691Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-26T20:43:25.7326112Z Entering 'third_party/pocketfft' 2025-08-26T20:43:25.7881898Z Entering 'third_party/protobuf' 2025-08-26T20:43:25.8430575Z Entering 'third_party/protobuf/third_party/benchmark' 2025-08-26T20:43:25.8991535Z Entering 'third_party/protobuf/third_party/googletest' 2025-08-26T20:43:25.9598373Z Entering 'third_party/psimd' 2025-08-26T20:43:26.0157614Z Entering 'third_party/pthreadpool' 2025-08-26T20:43:26.0720506Z Entering 'third_party/pybind11' 2025-08-26T20:43:26.1280157Z Entering 'third_party/python-peachpy' 2025-08-26T20:43:26.1847606Z Entering 'third_party/sleef' 2025-08-26T20:43:26.2408380Z Entering 'third_party/tensorpipe' 2025-08-26T20:43:26.2952565Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-08-26T20:43:26.3520511Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-08-26T20:43:26.4108113Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-08-26T20:43:26.4672264Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-08-26T20:43:26.5221456Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-26T20:43:26.5919218Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local 'http.https://github.com/.extraheader' 'AUTHORIZATION: basic ***' && git config --local --show-origin --name-only --get-regexp remote.origin.url\"" 2025-08-26T20:43:27.0095701Z Entering 'android/libs/fbjni' 2025-08-26T20:43:27.0645482Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/android/libs/fbjni/config remote.origin.url 2025-08-26T20:43:27.0785766Z Entering 'third_party/FP16' 2025-08-26T20:43:27.1327278Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/FP16/config remote.origin.url 2025-08-26T20:43:27.1466680Z Entering 'third_party/FXdiv' 2025-08-26T20:43:27.2031910Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/FXdiv/config remote.origin.url 2025-08-26T20:43:27.2169373Z Entering 'third_party/NNPACK' 2025-08-26T20:43:27.2704048Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK/config remote.origin.url 2025-08-26T20:43:27.2847154Z Entering 'third_party/NVTX' 2025-08-26T20:43:27.3379359Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NVTX/config remote.origin.url 2025-08-26T20:43:27.3536795Z Entering 'third_party/VulkanMemoryAllocator' 2025-08-26T20:43:27.4089222Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/VulkanMemoryAllocator/config remote.origin.url 2025-08-26T20:43:27.4227995Z Entering 'third_party/XNNPACK' 2025-08-26T20:43:27.4779134Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/XNNPACK/config remote.origin.url 2025-08-26T20:43:27.4937239Z Entering 'third_party/aiter' 2025-08-26T20:43:27.5469850Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/aiter/config remote.origin.url 2025-08-26T20:43:27.5603381Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-08-26T20:43:27.6144823Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/aiter/modules/3rdparty/composable_kernel/config remote.origin.url 2025-08-26T20:43:27.6307492Z Entering 'third_party/benchmark' 2025-08-26T20:43:27.6833729Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/benchmark/config remote.origin.url 2025-08-26T20:43:27.6969858Z Entering 'third_party/composable_kernel' 2025-08-26T20:43:27.7496374Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/composable_kernel/config remote.origin.url 2025-08-26T20:43:27.7648019Z Entering 'third_party/cpp-httplib' 2025-08-26T20:43:27.8205973Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cpp-httplib/config remote.origin.url 2025-08-26T20:43:27.8344753Z Entering 'third_party/cpuinfo' 2025-08-26T20:43:27.8877552Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cpuinfo/config remote.origin.url 2025-08-26T20:43:27.9016073Z Entering 'third_party/cudnn_frontend' 2025-08-26T20:43:27.9568264Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cudnn_frontend/config remote.origin.url 2025-08-26T20:43:27.9711644Z Entering 'third_party/cutlass' 2025-08-26T20:43:28.0257960Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cutlass/config remote.origin.url 2025-08-26T20:43:28.0406556Z Entering 'third_party/fbgemm' 2025-08-26T20:43:28.0961633Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/config remote.origin.url 2025-08-26T20:43:28.1091103Z Entering 'third_party/fbgemm/external/asmjit' 2025-08-26T20:43:28.1634336Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/asmjit/config remote.origin.url 2025-08-26T20:43:28.1803026Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-08-26T20:43:28.2339264Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/composable_kernel/config remote.origin.url 2025-08-26T20:43:28.2490873Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-08-26T20:43:28.3036583Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/cpuinfo/config remote.origin.url 2025-08-26T20:43:28.3181801Z Entering 'third_party/fbgemm/external/cutlass' 2025-08-26T20:43:28.3724115Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/cutlass/config remote.origin.url 2025-08-26T20:43:28.3874551Z Entering 'third_party/fbgemm/external/googletest' 2025-08-26T20:43:28.4422369Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/googletest/config remote.origin.url 2025-08-26T20:43:28.4567066Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-08-26T20:43:28.5104884Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/hipify_torch/config remote.origin.url 2025-08-26T20:43:28.5242178Z Entering 'third_party/fbgemm/external/json' 2025-08-26T20:43:28.5782339Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/json/config remote.origin.url 2025-08-26T20:43:28.5943364Z Entering 'third_party/flash-attention' 2025-08-26T20:43:28.6488009Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/config remote.origin.url 2025-08-26T20:43:28.6615060Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-08-26T20:43:28.7155276Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/modules/csrc/composable_kernel/config remote.origin.url 2025-08-26T20:43:28.7309133Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-08-26T20:43:28.7848620Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/modules/csrc/cutlass/config remote.origin.url 2025-08-26T20:43:28.8016352Z Entering 'third_party/flatbuffers' 2025-08-26T20:43:28.8560245Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flatbuffers/config remote.origin.url 2025-08-26T20:43:28.8707737Z Entering 'third_party/fmt' 2025-08-26T20:43:28.9276690Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fmt/config remote.origin.url 2025-08-26T20:43:28.9418183Z Entering 'third_party/gemmlowp/gemmlowp' 2025-08-26T20:43:28.9962037Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/gemmlowp/gemmlowp/config remote.origin.url 2025-08-26T20:43:29.0101918Z Entering 'third_party/gloo' 2025-08-26T20:43:29.0672619Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/gloo/config remote.origin.url 2025-08-26T20:43:29.0810953Z Entering 'third_party/googletest' 2025-08-26T20:43:29.1389476Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/googletest/config remote.origin.url 2025-08-26T20:43:29.1529594Z Entering 'third_party/ideep' 2025-08-26T20:43:29.2073040Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/ideep/config remote.origin.url 2025-08-26T20:43:29.2204987Z Entering 'third_party/ideep/mkl-dnn' 2025-08-26T20:43:29.2787894Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/ideep/modules/mkl-dnn/config remote.origin.url 2025-08-26T20:43:29.2956772Z Entering 'third_party/ittapi' 2025-08-26T20:43:29.3509050Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/ittapi/config remote.origin.url 2025-08-26T20:43:29.3652546Z Entering 'third_party/kineto' 2025-08-26T20:43:29.4248259Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/config remote.origin.url 2025-08-26T20:43:29.4374615Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-26T20:43:29.4946520Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/config remote.origin.url 2025-08-26T20:43:29.5075968Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-26T20:43:29.5626661Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/DCGM/config remote.origin.url 2025-08-26T20:43:29.5787807Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-26T20:43:29.6339531Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/cpr/config remote.origin.url 2025-08-26T20:43:29.6482756Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-26T20:43:29.7056947Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/fmt/config remote.origin.url 2025-08-26T20:43:29.7204454Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-26T20:43:29.7759181Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/gflags/config remote.origin.url 2025-08-26T20:43:29.7885274Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-26T20:43:29.8439640Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/gflags/modules/doc/config remote.origin.url 2025-08-26T20:43:29.8622376Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-26T20:43:29.9177808Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/glog/config remote.origin.url 2025-08-26T20:43:29.9322504Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-26T20:43:29.9882979Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/googletest/config remote.origin.url 2025-08-26T20:43:30.0025943Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-26T20:43:30.0584569Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/json/config remote.origin.url 2025-08-26T20:43:30.0731486Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-26T20:43:30.1292414Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/pfs/config remote.origin.url 2025-08-26T20:43:30.1456212Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-08-26T20:43:30.2005864Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/fmt/config remote.origin.url 2025-08-26T20:43:30.2146091Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-08-26T20:43:30.2746238Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/googletest/config remote.origin.url 2025-08-26T20:43:30.2909804Z Entering 'third_party/kleidiai' 2025-08-26T20:43:30.3460863Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kleidiai/config remote.origin.url 2025-08-26T20:43:30.3608008Z Entering 'third_party/mimalloc' 2025-08-26T20:43:30.4147377Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/mimalloc/config remote.origin.url 2025-08-26T20:43:30.4293265Z Entering 'third_party/nlohmann' 2025-08-26T20:43:30.4834793Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/nlohmann/config remote.origin.url 2025-08-26T20:43:30.4976383Z Entering 'third_party/onnx' 2025-08-26T20:43:30.5516415Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/onnx/config remote.origin.url 2025-08-26T20:43:30.5680532Z Entering 'third_party/onnx/third_party/pybind11' 2025-08-26T20:43:30.6232670Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/onnx/modules/third_party/pybind11/config remote.origin.url 2025-08-26T20:43:30.6394018Z Entering 'third_party/opentelemetry-cpp' 2025-08-26T20:43:30.6956238Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/config remote.origin.url 2025-08-26T20:43:30.7085544Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-26T20:43:30.7624883Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/benchmark/config remote.origin.url 2025-08-26T20:43:30.7766326Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-26T20:43:30.8305043Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/googletest/config remote.origin.url 2025-08-26T20:43:30.8442745Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-26T20:43:30.8981851Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/ms-gsl/config remote.origin.url 2025-08-26T20:43:30.9122375Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-26T20:43:30.9723998Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/nlohmann-json/config remote.origin.url 2025-08-26T20:43:30.9871276Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-26T20:43:31.0413055Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/opentelemetry-proto/config remote.origin.url 2025-08-26T20:43:31.0587288Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-26T20:43:31.1135605Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/opentracing-cpp/config remote.origin.url 2025-08-26T20:43:31.1276906Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-26T20:43:31.1848344Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/prometheus-cpp/config remote.origin.url 2025-08-26T20:43:31.1975939Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-26T20:43:31.2522885Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/prometheus-cpp/modules/civetweb/config remote.origin.url 2025-08-26T20:43:31.2664429Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-26T20:43:31.3202035Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/prometheus-cpp/modules/googletest/config remote.origin.url 2025-08-26T20:43:31.3363154Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-26T20:43:31.3906134Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/tools/vcpkg/config remote.origin.url 2025-08-26T20:43:31.4082986Z Entering 'third_party/pocketfft' 2025-08-26T20:43:31.4668286Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/pocketfft/config remote.origin.url 2025-08-26T20:43:31.4807710Z Entering 'third_party/protobuf' 2025-08-26T20:43:31.5351957Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/config remote.origin.url 2025-08-26T20:43:31.5487935Z Entering 'third_party/protobuf/third_party/benchmark' 2025-08-26T20:43:31.6028515Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/modules/third_party/benchmark/config remote.origin.url 2025-08-26T20:43:31.6165837Z Entering 'third_party/protobuf/third_party/googletest' 2025-08-26T20:43:31.6705459Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/modules/third_party/googletest/config remote.origin.url 2025-08-26T20:43:31.6860689Z Entering 'third_party/psimd' 2025-08-26T20:43:31.7392689Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/psimd/config remote.origin.url 2025-08-26T20:43:31.7531355Z Entering 'third_party/pthreadpool' 2025-08-26T20:43:31.8071646Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/pthreadpool/config remote.origin.url 2025-08-26T20:43:31.8213233Z Entering 'third_party/pybind11' 2025-08-26T20:43:31.8743903Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/pybind11/config remote.origin.url 2025-08-26T20:43:31.8931199Z Entering 'third_party/python-peachpy' 2025-08-26T20:43:31.9464459Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/python-peachpy/config remote.origin.url 2025-08-26T20:43:31.9603374Z Entering 'third_party/sleef' 2025-08-26T20:43:32.0131568Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/sleef/config remote.origin.url 2025-08-26T20:43:32.0271844Z Entering 'third_party/tensorpipe' 2025-08-26T20:43:32.0826528Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/config remote.origin.url 2025-08-26T20:43:32.0953720Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-08-26T20:43:32.1503372Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/googletest/config remote.origin.url 2025-08-26T20:43:32.1642773Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-08-26T20:43:32.2186557Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/libnop/config remote.origin.url 2025-08-26T20:43:32.2330122Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-08-26T20:43:32.2877727Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/libuv/config remote.origin.url 2025-08-26T20:43:32.3016872Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-08-26T20:43:32.3590135Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/pybind11/config remote.origin.url 2025-08-26T20:43:32.3720161Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-26T20:43:32.4293051Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/pybind11/modules/tools/clang/config remote.origin.url 2025-08-26T20:43:32.4894842Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "git config --local --add 'url.https://github.com/.insteadOf' 'git@github.com:'" 2025-08-26T20:43:32.8713691Z Entering 'android/libs/fbjni' 2025-08-26T20:43:32.9102642Z Entering 'third_party/FP16' 2025-08-26T20:43:32.9485169Z Entering 'third_party/FXdiv' 2025-08-26T20:43:32.9851303Z Entering 'third_party/NNPACK' 2025-08-26T20:43:33.0230318Z Entering 'third_party/NVTX' 2025-08-26T20:43:33.0604536Z Entering 'third_party/VulkanMemoryAllocator' 2025-08-26T20:43:33.0971699Z Entering 'third_party/XNNPACK' 2025-08-26T20:43:33.1352749Z Entering 'third_party/aiter' 2025-08-26T20:43:33.1716249Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-08-26T20:43:33.2121051Z Entering 'third_party/benchmark' 2025-08-26T20:43:33.2492075Z Entering 'third_party/composable_kernel' 2025-08-26T20:43:33.2877313Z Entering 'third_party/cpp-httplib' 2025-08-26T20:43:33.3247694Z Entering 'third_party/cpuinfo' 2025-08-26T20:43:33.3674172Z Entering 'third_party/cudnn_frontend' 2025-08-26T20:43:33.4046073Z Entering 'third_party/cutlass' 2025-08-26T20:43:33.4413438Z Entering 'third_party/fbgemm' 2025-08-26T20:43:33.4778031Z Entering 'third_party/fbgemm/external/asmjit' 2025-08-26T20:43:33.5153676Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-08-26T20:43:33.5534990Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-08-26T20:43:33.5901915Z Entering 'third_party/fbgemm/external/cutlass' 2025-08-26T20:43:33.6286482Z Entering 'third_party/fbgemm/external/googletest' 2025-08-26T20:43:33.6658934Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-08-26T20:43:33.7030156Z Entering 'third_party/fbgemm/external/json' 2025-08-26T20:43:33.7429748Z Entering 'third_party/flash-attention' 2025-08-26T20:43:33.7792308Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-08-26T20:43:33.8172942Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-08-26T20:43:33.8577891Z Entering 'third_party/flatbuffers' 2025-08-26T20:43:33.8944182Z Entering 'third_party/fmt' 2025-08-26T20:43:33.9313154Z Entering 'third_party/gemmlowp/gemmlowp' 2025-08-26T20:43:33.9683107Z Entering 'third_party/gloo' 2025-08-26T20:43:34.0053934Z Entering 'third_party/googletest' 2025-08-26T20:43:34.0433803Z Entering 'third_party/ideep' 2025-08-26T20:43:34.0809123Z Entering 'third_party/ideep/mkl-dnn' 2025-08-26T20:43:34.1207483Z Entering 'third_party/ittapi' 2025-08-26T20:43:34.1594231Z Entering 'third_party/kineto' 2025-08-26T20:43:34.1957026Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-26T20:43:34.2330450Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-26T20:43:34.2720001Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-26T20:43:34.3102635Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-26T20:43:34.3486859Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-26T20:43:34.3862811Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-26T20:43:34.5164010Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-26T20:43:34.5549196Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-26T20:43:34.5926476Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-26T20:43:34.6323409Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-26T20:43:34.6756946Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-08-26T20:43:34.7155367Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-08-26T20:43:34.7565964Z Entering 'third_party/kleidiai' 2025-08-26T20:43:34.7923652Z Entering 'third_party/mimalloc' 2025-08-26T20:43:34.8278010Z Entering 'third_party/nlohmann' 2025-08-26T20:43:34.8635858Z Entering 'third_party/onnx' 2025-08-26T20:43:35.0195609Z Entering 'third_party/onnx/third_party/pybind11' 2025-08-26T20:43:35.0577020Z Entering 'third_party/opentelemetry-cpp' 2025-08-26T20:43:35.0928742Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-26T20:43:35.1330097Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-26T20:43:35.1693597Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-26T20:43:35.2069115Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-26T20:43:35.2433794Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-26T20:43:35.2803894Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-26T20:43:35.3166759Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-26T20:43:35.3511212Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-26T20:43:35.6381865Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-26T20:43:36.1925588Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-26T20:43:36.2345930Z Entering 'third_party/pocketfft' 2025-08-26T20:43:36.2719818Z Entering 'third_party/protobuf' 2025-08-26T20:43:36.3087743Z Entering 'third_party/protobuf/third_party/benchmark' 2025-08-26T20:43:36.3496647Z Entering 'third_party/protobuf/third_party/googletest' 2025-08-26T20:43:36.3891095Z Entering 'third_party/psimd' 2025-08-26T20:43:36.4273510Z Entering 'third_party/pthreadpool' 2025-08-26T20:43:36.4656333Z Entering 'third_party/pybind11' 2025-08-26T20:43:36.5027746Z Entering 'third_party/python-peachpy' 2025-08-26T20:43:36.5398581Z Entering 'third_party/sleef' 2025-08-26T20:43:36.5793361Z Entering 'third_party/tensorpipe' 2025-08-26T20:43:36.6159184Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-08-26T20:43:36.6537027Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-08-26T20:43:36.6915083Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-08-26T20:43:36.7313633Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-08-26T20:43:36.7695014Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-26T20:43:36.8201079Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "git config --local --add 'url.https://github.com/.insteadOf' 'org-21003710@github.com:'" 2025-08-26T20:43:37.2044212Z Entering 'android/libs/fbjni' 2025-08-26T20:43:37.2448161Z Entering 'third_party/FP16' 2025-08-26T20:43:37.2833074Z Entering 'third_party/FXdiv' 2025-08-26T20:43:37.3204695Z Entering 'third_party/NNPACK' 2025-08-26T20:43:37.3577433Z Entering 'third_party/NVTX' 2025-08-26T20:43:37.3950216Z Entering 'third_party/VulkanMemoryAllocator' 2025-08-26T20:43:37.4377892Z Entering 'third_party/XNNPACK' 2025-08-26T20:43:37.4796125Z Entering 'third_party/aiter' 2025-08-26T20:43:37.5151371Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-08-26T20:43:37.5572538Z Entering 'third_party/benchmark' 2025-08-26T20:43:37.5944947Z Entering 'third_party/composable_kernel' 2025-08-26T20:43:37.6363004Z Entering 'third_party/cpp-httplib' 2025-08-26T20:43:37.6742387Z Entering 'third_party/cpuinfo' 2025-08-26T20:43:37.7116760Z Entering 'third_party/cudnn_frontend' 2025-08-26T20:43:37.7488416Z Entering 'third_party/cutlass' 2025-08-26T20:43:37.7869683Z Entering 'third_party/fbgemm' 2025-08-26T20:43:37.8237137Z Entering 'third_party/fbgemm/external/asmjit' 2025-08-26T20:43:37.8626229Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-08-26T20:43:37.9016702Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-08-26T20:43:37.9384934Z Entering 'third_party/fbgemm/external/cutlass' 2025-08-26T20:43:37.9805274Z Entering 'third_party/fbgemm/external/googletest' 2025-08-26T20:43:38.0180491Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-08-26T20:43:38.0574576Z Entering 'third_party/fbgemm/external/json' 2025-08-26T20:43:38.1034347Z Entering 'third_party/flash-attention' 2025-08-26T20:43:38.1399221Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-08-26T20:43:38.1801205Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-08-26T20:43:38.2199710Z Entering 'third_party/flatbuffers' 2025-08-26T20:43:38.2573745Z Entering 'third_party/fmt' 2025-08-26T20:43:38.2949593Z Entering 'third_party/gemmlowp/gemmlowp' 2025-08-26T20:43:38.3319854Z Entering 'third_party/gloo' 2025-08-26T20:43:38.3691831Z Entering 'third_party/googletest' 2025-08-26T20:43:38.4066499Z Entering 'third_party/ideep' 2025-08-26T20:43:38.4431519Z Entering 'third_party/ideep/mkl-dnn' 2025-08-26T20:43:38.4864253Z Entering 'third_party/ittapi' 2025-08-26T20:43:38.5238305Z Entering 'third_party/kineto' 2025-08-26T20:43:38.5602297Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-26T20:43:38.5966315Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-26T20:43:38.6366289Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-26T20:43:38.6754355Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-26T20:43:38.7138230Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-26T20:43:38.7494708Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-26T20:43:38.7890168Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-26T20:43:38.8291729Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-26T20:43:38.8670748Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-26T20:43:38.9056826Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-26T20:43:38.9460213Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-08-26T20:43:38.9848286Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-08-26T20:43:39.0250677Z Entering 'third_party/kleidiai' 2025-08-26T20:43:39.0634313Z Entering 'third_party/mimalloc' 2025-08-26T20:43:39.0996141Z Entering 'third_party/nlohmann' 2025-08-26T20:43:39.1367369Z Entering 'third_party/onnx' 2025-08-26T20:43:39.1745455Z Entering 'third_party/onnx/third_party/pybind11' 2025-08-26T20:43:39.2138479Z Entering 'third_party/opentelemetry-cpp' 2025-08-26T20:43:39.2499364Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-26T20:43:39.2951314Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-26T20:43:39.3342326Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-26T20:43:39.3735450Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-26T20:43:39.4150033Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-26T20:43:39.4540599Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-26T20:43:39.4955325Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-26T20:43:39.5312542Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-26T20:43:39.5688959Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-26T20:43:39.6119723Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-26T20:43:39.6534779Z Entering 'third_party/pocketfft' 2025-08-26T20:43:39.6908989Z Entering 'third_party/protobuf' 2025-08-26T20:43:39.7269425Z Entering 'third_party/protobuf/third_party/benchmark' 2025-08-26T20:43:39.7647621Z Entering 'third_party/protobuf/third_party/googletest' 2025-08-26T20:43:39.8049049Z Entering 'third_party/psimd' 2025-08-26T20:43:39.8462429Z Entering 'third_party/pthreadpool' 2025-08-26T20:43:39.8831817Z Entering 'third_party/pybind11' 2025-08-26T20:43:39.9237128Z Entering 'third_party/python-peachpy' 2025-08-26T20:43:39.9612911Z Entering 'third_party/sleef' 2025-08-26T20:43:39.9982147Z Entering 'third_party/tensorpipe' 2025-08-26T20:43:40.0337282Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-08-26T20:43:40.0726116Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-08-26T20:43:40.1101196Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-08-26T20:43:40.1479588Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-08-26T20:43:40.1834082Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-26T20:43:40.2333633Z ##[endgroup] 2025-08-26T20:43:40.2607914Z [command]"C:\Program Files\Git\cmd\git.exe" log -1 --format=%H 2025-08-26T20:43:40.2822076Z 262640fd220236042fbf4443cc163c8838c84c3d 2025-08-26T20:43:40.3114854Z Prepare all required actions 2025-08-26T20:43:40.3178415Z ##[group]Run ./.github/actions/setup-win 2025-08-26T20:43:40.3178697Z with: 2025-08-26T20:43:40.3178877Z cuda-version: cpu 2025-08-26T20:43:40.3179079Z env: 2025-08-26T20:43:40.3179249Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:43:40.3179480Z ##[endgroup] 2025-08-26T20:43:40.3260375Z ##[group]Run set -euo pipefail 2025-08-26T20:43:40.3260687Z set -euo pipefail 2025-08-26T20:43:40.3260958Z function get_ec2_metadata() { 2025-08-26T20:43:40.3261294Z  # Pulled from instance metadata endpoint for EC2 2025-08-26T20:43:40.3261904Z  # see https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instancedata-data-retrieval.html 2025-08-26T20:43:40.3262417Z  category=$1 2025-08-26T20:43:40.3263971Z  curl -H "X-aws-ec2-metadata-token: $(curl -s -X PUT "http://169.254.169.254/latest/api/token" -H "X-aws-ec2-metadata-token-ttl-seconds: 30")" -fsSL "http://169.254.169.254/latest/meta-data/${category}" 2025-08-26T20:43:40.3264798Z } 2025-08-26T20:43:40.3265046Z echo "ami-id: $(get_ec2_metadata ami-id)" 2025-08-26T20:43:40.3265449Z echo "instance-id: $(get_ec2_metadata instance-id)" 2025-08-26T20:43:40.3265886Z echo "instance-type: $(get_ec2_metadata instance-type)" 2025-08-26T20:43:40.3266282Z echo "system info $(uname -a)" 2025-08-26T20:43:40.3286100Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T20:43:40.3286518Z env: 2025-08-26T20:43:40.3286739Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:43:40.3286984Z ##[endgroup] 2025-08-26T20:43:40.3874932Z ami-id: ami-0eb22074cad29e297 2025-08-26T20:43:40.4377214Z instance-id: i-07498329a9125d143 2025-08-26T20:43:40.4886326Z instance-type: c5d.4xlarge 2025-08-26T20:43:40.5074483Z system info MSYS_NT-10.0-17763 EC2AMAZ-TE6SPGV 3.6.3-7674c51e.x86_64 2025-07-01 09:13 UTC x86_64 Msys 2025-08-26T20:43:40.5164688Z ##[group]Run Set-ItemProperty -Path "HKLM:\\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 2025-08-26T20:43:40.5165591Z Set-ItemProperty -Path "HKLM:\\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 2025-08-26T20:43:40.5182334Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-26T20:43:40.5182776Z env: 2025-08-26T20:43:40.5182964Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:43:40.5183193Z ##[endgroup] 2025-08-26T20:43:40.8791141Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-26T20:43:40.8853531Z Finished 2025-08-26T20:43:40.9541998Z ##[group]Run # Windows conda is baked into the AMI at this location 2025-08-26T20:43:40.9542506Z # Windows conda is baked into the AMI at this location 2025-08-26T20:43:40.9542936Z CONDA="C:\Jenkins\Miniconda3\condabin\conda.bat" 2025-08-26T20:43:40.9543254Z  2025-08-26T20:43:40.9543466Z { 2025-08-26T20:43:40.9543732Z  echo "CONDA_RUN=${CONDA} run --no-capture-output"; 2025-08-26T20:43:40.9544127Z  echo "CONDA_BUILD=${CONDA} run conda-build"; 2025-08-26T20:43:40.9544467Z  echo "CONDA_INSTALL=${CONDA} install"; 2025-08-26T20:43:40.9544778Z } >> "${GITHUB_ENV}" 2025-08-26T20:43:40.9563981Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T20:43:40.9564433Z env: 2025-08-26T20:43:40.9564630Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:43:40.9564882Z ##[endgroup] 2025-08-26T20:43:40.9837720Z ##[group]Run set +e 2025-08-26T20:43:40.9837962Z set +e 2025-08-26T20:43:40.9838158Z set -x 2025-08-26T20:43:40.9838353Z  2025-08-26T20:43:40.9838576Z PYTHON3=$(${CONDA_RUN} which python3) 2025-08-26T20:43:40.9838870Z EXIT_CODE=$? 2025-08-26T20:43:40.9839126Z  2025-08-26T20:43:40.9840654Z if [[ "${EXIT_CODE}" == "0" ]]; then 2025-08-26T20:43:40.9841068Z  echo "Found Python3 at ${PYTHON3}, adding it into GITHUB_PATH" 2025-08-26T20:43:40.9841446Z  2025-08-26T20:43:40.9841654Z  PYTHON_PATH=$(dirname "${PYTHON3}") 2025-08-26T20:43:40.9841980Z  echo "${PYTHON_PATH}" >> "${GITHUB_PATH}" 2025-08-26T20:43:40.9842268Z else 2025-08-26T20:43:40.9842682Z  # According to https://docs.conda.io/en/latest/miniconda.html, we are using the Miniconda3 2025-08-26T20:43:40.9843362Z  # installation, which is Python 3 based. Its Python is default to Python 3. Further, there 2025-08-26T20:43:40.9844011Z  # is also the Miniconda installation that is Python 2 based, and both can be installed if 2025-08-26T20:43:40.9844556Z  # needed. In both cases, Python binary is just called python 2025-08-26T20:43:40.9845170Z  PYTHON=$(${CONDA_RUN} which python) 2025-08-26T20:43:40.9845460Z  EXIT_CODE=$? 2025-08-26T20:43:40.9845699Z  2025-08-26T20:43:40.9845904Z  if [[ "${EXIT_CODE}" == "0" ]]; then 2025-08-26T20:43:40.9846338Z  echo "Found Python at ${PYTHON}, set Python3 alias and add it into GITHUB_PATH" 2025-08-26T20:43:40.9846755Z  2025-08-26T20:43:40.9847006Z  PYTHON3=$(echo "${PYTHON}" | sed "s/python/python3/") 2025-08-26T20:43:40.9847514Z  # It's difficult to setup alias across GitHub action steps, so I just add a softlink 2025-08-26T20:43:40.9847958Z  # here pointing to Python 2025-08-26T20:43:40.9848252Z  ln -s "${PYTHON}" "${PYTHON3}" 2025-08-26T20:43:40.9848521Z  2025-08-26T20:43:40.9848728Z  PYTHON_PATH=$(dirname "${PYTHON}") 2025-08-26T20:43:40.9849067Z  echo "${PYTHON_PATH}" >> "${GITHUB_PATH}" 2025-08-26T20:43:40.9849360Z  else 2025-08-26T20:43:40.9849606Z  echo "Found no Python using ${CONDA_RUN}" 2025-08-26T20:43:40.9849900Z  fi 2025-08-26T20:43:40.9850088Z fi 2025-08-26T20:43:40.9868629Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T20:43:40.9869045Z env: 2025-08-26T20:43:40.9869237Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:43:40.9869616Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:43:40.9870205Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:43:40.9870679Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:43:40.9871022Z ##[endgroup] 2025-08-26T20:43:41.0105023Z ++ 'C:\Jenkins\Miniconda3\condabin\conda.bat' run --no-capture-output which python3 2025-08-26T20:43:48.4243408Z which: no python3 in (/c/Jenkins/Miniconda3:/c/Jenkins/Miniconda3/Library/mingw-w64/bin:/c/Jenkins/Miniconda3/Library/usr/bin:/c/Jenkins/Miniconda3/Library/bin:/c/Jenkins/Miniconda3/Scripts:/c/Jenkins/Miniconda3/bin:/c/Jenkins/Miniconda3/condabin:/c/Windows/system32:/c/Windows:/c/Windows/System32/Wbem:/c/Windows/System32/WindowsPowerShell/v1.0:/c/Windows/System32/OpenSSH:/c/Program Files/Amazon/cfn-bootstrap:/c/ProgramData/chocolatey/bin:/c/Program Files/Amazon/AWSCLIV2:/cmd:/mingw64/bin:/usr/bin:/c/Program Files (x86)/Windows Kits/10/Windows Performance Toolkit:/c/Users/runneruser/AppData/Local/Microsoft/WindowsApps) 2025-08-26T20:43:48.4269948Z ERROR conda.cli.main_run:execute(49): `conda run which python3` failed. (See above for error) 2025-08-26T20:43:48.4942851Z + PYTHON3= 2025-08-26T20:43:48.4943129Z + EXIT_CODE=1 2025-08-26T20:43:48.4944234Z + [[ 1 == \0 ]] 2025-08-26T20:43:48.5007168Z ++ 'C:\Jenkins\Miniconda3\condabin\conda.bat' run --no-capture-output which python 2025-08-26T20:43:50.2208442Z + PYTHON=/c/Jenkins/Miniconda3/python 2025-08-26T20:43:50.2208840Z + EXIT_CODE=0 2025-08-26T20:43:50.2209032Z + [[ 0 == \0 ]] 2025-08-26T20:43:50.2209471Z + echo 'Found Python at /c/Jenkins/Miniconda3/python, set Python3 alias and add it into GITHUB_PATH' 2025-08-26T20:43:50.2210895Z Found Python at /c/Jenkins/Miniconda3/python, set Python3 alias and add it into GITHUB_PATH 2025-08-26T20:43:50.2326579Z ++ echo /c/Jenkins/Miniconda3/python 2025-08-26T20:43:50.2378499Z ++ sed s/python/python3/ 2025-08-26T20:43:50.2524376Z + PYTHON3=/c/Jenkins/Miniconda3/python3 2025-08-26T20:43:50.2524868Z + ln -s /c/Jenkins/Miniconda3/python /c/Jenkins/Miniconda3/python3 2025-08-26T20:43:50.2714004Z ++ dirname /c/Jenkins/Miniconda3/python 2025-08-26T20:43:50.2785221Z + PYTHON_PATH=/c/Jenkins/Miniconda3 2025-08-26T20:43:50.2785574Z + echo /c/Jenkins/Miniconda3 2025-08-26T20:43:50.2889304Z ##[group]Run TMPDIR=$(python -c 'import tempfile; print(tempfile.gettempdir());') 2025-08-26T20:43:50.2889898Z TMPDIR=$(python -c 'import tempfile; print(tempfile.gettempdir());') 2025-08-26T20:43:50.2890550Z echo "TMPDIR=${TMPDIR}" >> "${GITHUB_ENV}" 2025-08-26T20:43:50.2913159Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T20:43:50.2913650Z env: 2025-08-26T20:43:50.2913854Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:43:50.2914278Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:43:50.2914788Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:43:50.2915251Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:43:50.2915593Z ##[endgroup] 2025-08-26T20:43:50.3823877Z ##[group]Run Add-MpPreference -ExclusionPath $(Get-Location).tostring(),$Env:TMPDIR,"C:\Jenkins\Miniconda3" -ErrorAction Ignore 2025-08-26T20:43:50.3824805Z Add-MpPreference -ExclusionPath $(Get-Location).tostring(),$Env:TMPDIR,"C:\Jenkins\Miniconda3" -ErrorAction Ignore 2025-08-26T20:43:50.3825674Z # Let's both exclude the path and disable Windows Defender completely just to be sure 2025-08-26T20:43:50.3826148Z # that it doesn't interfere 2025-08-26T20:43:50.3826607Z Set-MpPreference -DisableRealtimeMonitoring $True -ErrorAction Ignore 2025-08-26T20:43:50.3843116Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-26T20:43:50.3843571Z env: 2025-08-26T20:43:50.3843763Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:43:50.3844134Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:43:50.3844643Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:43:50.3845101Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:43:50.3845489Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:43:50.3845784Z ##[endgroup] 2025-08-26T20:43:50.7292138Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-26T20:43:50.7361566Z Finished 2025-08-26T20:43:51.3998912Z ##[group]Run choco install handle -y 2025-08-26T20:43:51.3999239Z choco install handle -y 2025-08-26T20:43:51.3999557Z handle C:\actions-runner\_work\ 2025-08-26T20:43:51.4016758Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-26T20:43:51.4017211Z env: 2025-08-26T20:43:51.4017419Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:43:51.4017795Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:43:51.4018643Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:43:51.4019451Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:43:51.4019851Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:43:51.4020159Z ##[endgroup] 2025-08-26T20:43:51.7433454Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-26T20:43:51.7503366Z Finished 2025-08-26T20:43:53.7871469Z Chocolatey v2.5.0 2025-08-26T20:43:53.9375830Z Installing the following packages: 2025-08-26T20:43:53.9380744Z handle 2025-08-26T20:43:53.9384549Z By installing, you accept licenses for the packages. 2025-08-26T20:43:55.3760504Z Downloading package from source 'https://community.chocolatey.org/api/v2/' 2025-08-26T20:43:55.5158166Z 2025-08-26T20:43:55.5158725Z Progress: Downloading Handle 5.0... 15% 2025-08-26T20:43:55.5160152Z Progress: Downloading Handle 5.0... 45% 2025-08-26T20:43:55.5160736Z Progress: Downloading Handle 5.0... 75% 2025-08-26T20:43:55.5161048Z Progress: Downloading Handle 5.0... 100% 2025-08-26T20:43:55.7058108Z 2025-08-26T20:43:55.7058477Z handle v5.0.0 [Approved] 2025-08-26T20:43:55.7250285Z handle package files install completed. Performing other installation steps. 2025-08-26T20:43:56.8180348Z Downloading Handle 2025-08-26T20:43:56.8180736Z from 'https://download.sysinternals.com/files/Handle.zip' 2025-08-26T20:43:56.9079816Z 2025-08-26T20:43:56.9096318Z Progress: 19% - Saving 143.51 KB of 729.82 KB 2025-08-26T20:43:56.9109848Z Progress: 41% - Saving 303.51 KB of 729.82 KB 2025-08-26T20:43:56.9125975Z Progress: 63% - Saving 463.51 KB of 729.82 KB 2025-08-26T20:43:56.9142505Z Progress: 85% - Saving 623.51 KB of 729.82 KB 2025-08-26T20:43:56.9145862Z Progress: 100% - Completed download of C:\Users\runneruser\AppData\Local\Temp\chocolatey\Handle\5.0.0\Handle.zip (729.82 KB). 2025-08-26T20:43:56.9152192Z Download of Handle.zip (729.82 KB) completed. 2025-08-26T20:43:59.9932738Z Hashes match. 2025-08-26T20:44:00.0191876Z Extracting C:\Users\runneruser\AppData\Local\Temp\chocolatey\Handle\5.0.0\Handle.zip to C:\ProgramData\chocolatey\lib\Handle\tools... 2025-08-26T20:44:00.3072983Z C:\ProgramData\chocolatey\lib\Handle\tools 2025-08-26T20:44:00.3122874Z HKEY_CURRENT_USER\Software\Sysinternals 2025-08-26T20:44:00.3156727Z HKEY_CURRENT_USER\Software\Sysinternals\Handle 2025-08-26T20:44:00.6893948Z ShimGen has successfully created a shim for handle.exe 2025-08-26T20:44:00.8756895Z ShimGen has successfully created a shim for handle64.exe 2025-08-26T20:44:01.0410739Z ShimGen has successfully created a shim for handle64a.exe 2025-08-26T20:44:01.0668195Z The install of handle was successful. 2025-08-26T20:44:01.0671739Z Deployed to 'C:\ProgramData\chocolatey\lib\Handle\tools' 2025-08-26T20:44:01.0809380Z 2025-08-26T20:44:01.0809846Z Chocolatey installed 1/1 packages. 2025-08-26T20:44:01.0810285Z See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log). 2025-08-26T20:44:01.2126587Z 2025-08-26T20:44:01.2126976Z Nthandle v5.0 - Handle viewer 2025-08-26T20:44:01.2127311Z Copyright (C) 1997-2022 Mark Russinovich 2025-08-26T20:44:01.2127623Z Sysinternals - www.sysinternals.com 2025-08-26T20:44:01.2127812Z 2025-08-26T20:44:01.2502550Z powershell.exe pid: 1788 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-08-26T20:44:01.2503153Z handle.exe pid: 788 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-08-26T20:44:01.2503736Z handle.exe pid: 3972 type: File 94: C:\actions-runner\_work\pytorch\pytorch 2025-08-26T20:44:01.2504288Z handle64.exe pid: 2400 type: File 50: C:\actions-runner\_work\pytorch\pytorch 2025-08-26T20:44:01.2832081Z ##[group]Run nick-fields/retry@7152eba30c6575329ac0576536151aca5a72780e 2025-08-26T20:44:01.2832476Z with: 2025-08-26T20:44:01.2832666Z shell: bash 2025-08-26T20:44:01.2832850Z timeout_minutes: 5 2025-08-26T20:44:01.2833066Z max_attempts: 5 2025-08-26T20:44:01.2833274Z retry_wait_seconds: 30 2025-08-26T20:44:01.2833577Z command: set -eu python3 -m pip install 'xdoctest>=1.1.0' 2025-08-26T20:44:01.2833930Z polling_interval_seconds: 1 2025-08-26T20:44:01.2834172Z warning_on_retry: true 2025-08-26T20:44:01.2834392Z continue_on_error: false 2025-08-26T20:44:01.2834595Z env: 2025-08-26T20:44:01.2834779Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:44:01.2835131Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:44:01.2835659Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:44:01.2836125Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:44:01.2836537Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:44:01.2836821Z ##[endgroup] 2025-08-26T20:44:05.3238875Z Collecting xdoctest>=1.1.0 2025-08-26T20:44:05.5454038Z Downloading xdoctest-1.2.0-py3-none-any.whl.metadata (37 kB) 2025-08-26T20:44:06.0040184Z Downloading xdoctest-1.2.0-py3-none-any.whl (151 kB) 2025-08-26T20:44:06.0748443Z ---------------------------------------- 151.2/151.2 kB 1.8 MB/s eta 0:00:00 2025-08-26T20:44:07.7799726Z Installing collected packages: xdoctest 2025-08-26T20:44:07.7800425Z Attempting uninstall: xdoctest 2025-08-26T20:44:07.7823846Z Found existing installation: xdoctest 1.0.2 2025-08-26T20:44:07.7944698Z Uninstalling xdoctest-1.0.2: 2025-08-26T20:44:07.7984377Z Successfully uninstalled xdoctest-1.0.2 2025-08-26T20:44:07.9211895Z WARNING: The script xdoctest.exe is installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-08-26T20:44:07.9212747Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-08-26T20:44:07.9689865Z Successfully installed xdoctest-1.2.0 2025-08-26T20:44:08.4248652Z Command completed after 1 attempt(s). 2025-08-26T20:44:08.4407514Z Prepare all required actions 2025-08-26T20:44:08.4443307Z ##[group]Run ./.github/actions/get-workflow-job-id 2025-08-26T20:44:08.4443696Z with: 2025-08-26T20:44:08.4444291Z github-token: *** 2025-08-26T20:44:08.4444500Z env: 2025-08-26T20:44:08.4444678Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:44:08.4445048Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:44:08.4445558Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:44:08.4446015Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:44:08.4446419Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:44:08.4446704Z ##[endgroup] 2025-08-26T20:44:08.4517034Z ##[group]Run set -eux 2025-08-26T20:44:08.4517276Z set -eux 2025-08-26T20:44:08.4517668Z python3 .github/scripts/get_workflow_job_id.py "${GITHUB_RUN_ID}" "${RUNNER_NAME}" 2025-08-26T20:44:08.4537637Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T20:44:08.4538065Z env: 2025-08-26T20:44:08.4538256Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:44:08.4538621Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:44:08.4539136Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:44:08.4539592Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:44:08.4539982Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:44:08.4540433Z GITHUB_TOKEN: *** 2025-08-26T20:44:08.4540645Z ##[endgroup] 2025-08-26T20:44:08.4733189Z + python3 .github/scripts/get_workflow_job_id.py 17248463647 i-07498329a9125d143 2025-08-26T20:44:09.6439769Z Setting output job-id=48947911970 2025-08-26T20:44:09.6440326Z Setting output job-name=win-vs2022-cpu-py3 / test (default, 2, 3, windows.4xlarge.nonephemeral) 2025-08-26T20:44:09.6678472Z ##[group]Run # Windows conda doesn't have python3 binary, only python, but it's python3 2025-08-26T20:44:09.6679118Z # Windows conda doesn't have python3 binary, only python, but it's python3 2025-08-26T20:44:09.6679738Z ${CONDA_RUN} python -m pip install psutil==5.9.8 dataclasses_json==0.6.7 nvidia-ml-py==11.525.84 2025-08-26T20:44:09.6680778Z ${CONDA_RUN} python -m tools.stats.monitor --log-interval "$MONITOR_LOG_INTERVAL" --data-collect-interval "$MONITOR_DATA_COLLECT_INTERVAL" > usage_log.txt 2>&1 & 2025-08-26T20:44:09.6681581Z echo "monitor-script-pid=${!}" >> "${GITHUB_OUTPUT}" 2025-08-26T20:44:09.6700876Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T20:44:09.6701296Z env: 2025-08-26T20:44:09.6701476Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:44:09.6701854Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:44:09.6702396Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:44:09.6702855Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:44:09.6703323Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:44:09.6703666Z JOB_ID: 48947911970 2025-08-26T20:44:09.6704037Z JOB_NAME: win-vs2022-cpu-py3 / test (default, 2, 3, windows.4xlarge.nonephemeral) 2025-08-26T20:44:09.6704472Z WORKFLOW_NAME: trunk 2025-08-26T20:44:09.6704680Z WORKFLOW_RUN_ID: 17248463647 2025-08-26T20:44:09.6704924Z MONITOR_LOG_INTERVAL: 5 2025-08-26T20:44:09.6705152Z MONITOR_DATA_COLLECT_INTERVAL: 1 2025-08-26T20:44:09.6705569Z ##[endgroup] 2025-08-26T20:44:12.2131515Z Collecting psutil==5.9.8 2025-08-26T20:44:12.4040907Z Downloading psutil-5.9.8-cp37-abi3-win_amd64.whl.metadata (22 kB) 2025-08-26T20:44:12.4881652Z Collecting dataclasses_json==0.6.7 2025-08-26T20:44:12.4916200Z Downloading dataclasses_json-0.6.7-py3-none-any.whl.metadata (25 kB) 2025-08-26T20:44:12.5141339Z Collecting nvidia-ml-py==11.525.84 2025-08-26T20:44:12.5189976Z Downloading nvidia_ml_py-11.525.84-py3-none-any.whl.metadata (8.6 kB) 2025-08-26T20:44:12.6022500Z Collecting marshmallow<4.0.0,>=3.18.0 (from dataclasses_json==0.6.7) 2025-08-26T20:44:12.6067817Z Downloading marshmallow-3.26.1-py3-none-any.whl.metadata (7.3 kB) 2025-08-26T20:44:12.6270915Z Collecting typing-inspect<1,>=0.4.0 (from dataclasses_json==0.6.7) 2025-08-26T20:44:12.6308929Z Downloading typing_inspect-0.9.0-py3-none-any.whl.metadata (1.5 kB) 2025-08-26T20:44:12.6493788Z Requirement already satisfied: packaging>=17.0 in c:\jenkins\miniconda3\lib\site-packages (from marshmallow<4.0.0,>=3.18.0->dataclasses_json==0.6.7) (23.2) 2025-08-26T20:44:12.6658820Z Collecting mypy-extensions>=0.3.0 (from typing-inspect<1,>=0.4.0->dataclasses_json==0.6.7) 2025-08-26T20:44:12.6697976Z Downloading mypy_extensions-1.1.0-py3-none-any.whl.metadata (1.1 kB) 2025-08-26T20:44:12.6754899Z Requirement already satisfied: typing-extensions>=3.7.4 in c:\jenkins\miniconda3\lib\site-packages (from typing-inspect<1,>=0.4.0->dataclasses_json==0.6.7) (4.12.2) 2025-08-26T20:44:12.6854788Z Downloading psutil-5.9.8-cp37-abi3-win_amd64.whl (255 kB) 2025-08-26T20:44:12.7427832Z ---------------------------------------- 255.1/255.1 kB 5.2 MB/s eta 0:00:00 2025-08-26T20:44:12.7468413Z Downloading dataclasses_json-0.6.7-py3-none-any.whl (28 kB) 2025-08-26T20:44:12.7559340Z Downloading nvidia_ml_py-11.525.84-py3-none-any.whl (34 kB) 2025-08-26T20:44:12.7661788Z Downloading marshmallow-3.26.1-py3-none-any.whl (50 kB) 2025-08-26T20:44:12.7735520Z ---------------------------------------- 50.9/50.9 kB ? eta 0:00:00 2025-08-26T20:44:12.7771574Z Downloading typing_inspect-0.9.0-py3-none-any.whl (8.8 kB) 2025-08-26T20:44:12.7865052Z Downloading mypy_extensions-1.1.0-py3-none-any.whl (5.0 kB) 2025-08-26T20:44:13.5786502Z Installing collected packages: nvidia-ml-py, psutil, mypy-extensions, marshmallow, typing-inspect, dataclasses_json 2025-08-26T20:44:13.6208485Z Attempting uninstall: psutil 2025-08-26T20:44:13.6221422Z Found existing installation: psutil 5.9.1 2025-08-26T20:44:13.6324764Z Uninstalling psutil-5.9.1: 2025-08-26T20:44:13.6351563Z Successfully uninstalled psutil-5.9.1 2025-08-26T20:44:13.9686485Z Successfully installed dataclasses_json-0.6.7 marshmallow-3.26.1 mypy-extensions-1.1.0 nvidia-ml-py-11.525.84 psutil-5.9.8 typing-inspect-0.9.0 2025-08-26T20:44:14.1561997Z ##[group]Run seemethere/download-artifact-s3@1da556a7aa0a088e3153970611f6c432d58e80e6 2025-08-26T20:44:14.1562552Z with: 2025-08-26T20:44:14.1562747Z name: win-vs2022-cpu-py3 2025-08-26T20:44:14.1563022Z path: C:\17248463647\build-results 2025-08-26T20:44:14.1563278Z s3-bucket: gha-artifacts 2025-08-26T20:44:14.1563504Z region: us-east-1 2025-08-26T20:44:14.1563688Z env: 2025-08-26T20:44:14.1563872Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:44:14.1564242Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:44:14.1564743Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:44:14.1565202Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:44:14.1565582Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:44:14.1565869Z ##[endgroup] 2025-08-26T20:44:14.6819351Z (node:6092) NOTE: We are formalizing our plans to enter AWS SDK for JavaScript (v2) into maintenance mode in 2023. 2025-08-26T20:44:14.6819823Z 2025-08-26T20:44:14.6820001Z Please migrate your code to use AWS SDK for JavaScript (v3). 2025-08-26T20:44:14.6820484Z For more information, check the migration guide at https://a.co/7PzMCcy 2025-08-26T20:44:14.6821237Z (Use `node --trace-warnings ...` to show where the warning was created) 2025-08-26T20:44:14.8140252Z Found 4 objects with prefix pytorch/pytorch/17248463647/win-vs2022-cpu-py3/ 2025-08-26T20:44:14.8149302Z Starting download (1/4): C:\17248463647\build-results\.additional_ci_files\test-class-times.json 2025-08-26T20:44:14.9977278Z Finished download (1/4): C:\17248463647\build-results\.additional_ci_files\test-class-times.json 2025-08-26T20:44:14.9979189Z Starting download (2/4): C:\17248463647\build-results\.additional_ci_files\test-times.json 2025-08-26T20:44:15.0880587Z Finished download (2/4): C:\17248463647\build-results\.additional_ci_files\test-times.json 2025-08-26T20:44:15.0882154Z Starting download (3/4): C:\17248463647\build-results\.ninja_log 2025-08-26T20:44:15.2127131Z Finished download (3/4): C:\17248463647\build-results\.ninja_log 2025-08-26T20:44:15.2128123Z Starting download (4/4): C:\17248463647\build-results\torch-2.9.0a0+git262640f-cp39-cp39-win_amd64.whl 2025-08-26T20:44:18.2775555Z Finished download (4/4): C:\17248463647\build-results\torch-2.9.0a0+git262640f-cp39-cp39-win_amd64.whl 2025-08-26T20:44:18.2785633Z Artifact download has finished successfully 2025-08-26T20:44:18.3030717Z ##[group]Run tree /F C:\$Env:GITHUB_RUN_ID\build-results 2025-08-26T20:44:18.3031150Z tree /F C:\$Env:GITHUB_RUN_ID\build-results 2025-08-26T20:44:18.3047008Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-26T20:44:18.3047453Z env: 2025-08-26T20:44:18.3047632Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:44:18.3047997Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:44:18.3048497Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:44:18.3048961Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:44:18.3049342Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:44:18.3049635Z ##[endgroup] 2025-08-26T20:44:18.7091115Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-26T20:44:18.7160707Z Finished 2025-08-26T20:44:18.7270769Z Folder PATH listing 2025-08-26T20:44:18.7271090Z Volume serial number is EA7F-0099 2025-08-26T20:44:18.7271376Z C:\17248463647\BUILD-RESULTS 2025-08-26T20:44:18.7276234Z � .ninja_log 2025-08-26T20:44:18.7276598Z � torch-2.9.0a0+git262640f-cp39-cp39-win_amd64.whl 2025-08-26T20:44:18.7276944Z � 2025-08-26T20:44:18.7277174Z ����.additional_ci_files 2025-08-26T20:44:18.7277412Z test-class-times.json 2025-08-26T20:44:18.7277669Z test-times.json 2025-08-26T20:44:18.7277870Z 2025-08-26T20:44:18.7535380Z Prepare all required actions 2025-08-26T20:44:18.7535824Z Getting action download info 2025-08-26T20:44:18.9030925Z Download action repository 'seemethere/download-artifact-s3@v4' (SHA:1da556a7aa0a088e3153970611f6c432d58e80e6) 2025-08-26T20:44:19.1524034Z Download action repository 'actions/download-artifact@v4' (SHA:d3f86a106a0bac45b974a628896c90dbdf5c8093) 2025-08-26T20:44:19.4325042Z ##[group]Run ./.github/actions/download-td-artifacts 2025-08-26T20:44:19.4325378Z with: 2025-08-26T20:44:19.4325546Z env: 2025-08-26T20:44:19.4325720Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:44:19.4326089Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:44:19.4326591Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:44:19.4327056Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:44:19.4327433Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:44:19.4327757Z ##[endgroup] 2025-08-26T20:44:19.4416429Z ##[group]Run seemethere/download-artifact-s3@v4 2025-08-26T20:44:19.4416754Z with: 2025-08-26T20:44:19.4416923Z name: td_results 2025-08-26T20:44:19.4417135Z s3-bucket: gha-artifacts 2025-08-26T20:44:19.4417432Z region: us-east-1 2025-08-26T20:44:19.4417614Z env: 2025-08-26T20:44:19.4417985Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:44:19.4418394Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:44:19.4418912Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:44:19.4419375Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:44:19.4419770Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:44:19.4420046Z ##[endgroup] 2025-08-26T20:44:20.0429755Z (node:1896) NOTE: We are formalizing our plans to enter AWS SDK for JavaScript (v2) into maintenance mode in 2023. 2025-08-26T20:44:20.0430272Z 2025-08-26T20:44:20.0430531Z Please migrate your code to use AWS SDK for JavaScript (v3). 2025-08-26T20:44:20.0431093Z For more information, check the migration guide at https://a.co/7PzMCcy 2025-08-26T20:44:20.0431669Z (Use `node --trace-warnings ...` to show where the warning was created) 2025-08-26T20:44:20.1697567Z Found 1 objects with prefix pytorch/pytorch/17248463647/td_results/ 2025-08-26T20:44:20.1699110Z Starting download (1/1): C:\actions-runner\_work\pytorch\pytorch\td_results.json 2025-08-26T20:44:20.2144538Z Finished download (1/1): C:\actions-runner\_work\pytorch\pytorch\td_results.json 2025-08-26T20:44:20.2153390Z Artifact download has finished successfully 2025-08-26T20:44:20.2401198Z ##[group]Run mkdir -p .additional_ci_files 2025-08-26T20:44:20.2401532Z mkdir -p .additional_ci_files 2025-08-26T20:44:20.2401927Z mv td_results.json .additional_ci_files/td_results.json || true 2025-08-26T20:44:20.2421553Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T20:44:20.2422001Z env: 2025-08-26T20:44:20.2422191Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:44:20.2422566Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:44:20.2423074Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:44:20.2423548Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:44:20.2423959Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:44:20.2424242Z ##[endgroup] 2025-08-26T20:44:20.3051373Z Prepare all required actions 2025-08-26T20:44:20.3051803Z Getting action download info 2025-08-26T20:44:20.4089320Z Download action repository 'nick-fields/retry@v3.0.0' (SHA:7152eba30c6575329ac0576536151aca5a72780e) 2025-08-26T20:44:20.5576414Z ##[group]Run ./.github/actions/filter-test-configs 2025-08-26T20:44:20.5576735Z with: 2025-08-26T20:44:20.5577072Z github-token: *** 2025-08-26T20:44:20.5578069Z test-matrix: {"include": [{"config": "default", "shard": 1, "num_shards": 3, "runner": "windows.4xlarge.nonephemeral"}, {"config": "default", "shard": 2, "num_shards": 3, "runner": "windows.4xlarge.nonephemeral"}, {"config": "default", "shard": 3, "num_shards": 3, "runner": "windows.4xlarge.nonephemeral"}]} 2025-08-26T20:44:20.5579291Z job-name: win-vs2022-cpu-py3 / test (default, 2, 3, windows.4xlarge.nonephemeral) 2025-08-26T20:44:20.5579722Z env: 2025-08-26T20:44:20.5579913Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:44:20.5580311Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:44:20.5580806Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:44:20.5581275Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:44:20.5581659Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:44:20.5581941Z ##[endgroup] 2025-08-26T20:44:20.5673538Z ##[group]Run nick-fields/retry@v3.0.0 2025-08-26T20:44:20.5673809Z with: 2025-08-26T20:44:20.5673981Z shell: bash 2025-08-26T20:44:20.5674180Z timeout_minutes: 10 2025-08-26T20:44:20.5674380Z max_attempts: 5 2025-08-26T20:44:20.5674588Z retry_wait_seconds: 30 2025-08-26T20:44:20.5675301Z command: set -eux # PyYAML 6.0 doesn't work with MacOS x86 anymore # This must run on Python-3.7 (AmazonLinux2) so can't use request=3.32.2 python3 -m pip install requests==2.27.1 pyyaml==6.0.2 2025-08-26T20:44:20.5676202Z polling_interval_seconds: 1 2025-08-26T20:44:20.5676456Z warning_on_retry: true 2025-08-26T20:44:20.5676687Z continue_on_error: false 2025-08-26T20:44:20.5676912Z env: 2025-08-26T20:44:20.5677082Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:44:20.5677446Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:44:20.5677945Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:44:20.5678407Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:44:20.5678797Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:44:20.5679241Z GITHUB_TOKEN: *** 2025-08-26T20:44:20.5679450Z ##[endgroup] 2025-08-26T20:44:20.6848393Z + python3 -m pip install requests==2.27.1 pyyaml==6.0.2 2025-08-26T20:44:21.4582043Z Collecting requests==2.27.1 2025-08-26T20:44:21.6701138Z Downloading requests-2.27.1-py2.py3-none-any.whl.metadata (5.0 kB) 2025-08-26T20:44:21.6769707Z Requirement already satisfied: pyyaml==6.0.2 in c:\jenkins\miniconda3\lib\site-packages (6.0.2) 2025-08-26T20:44:21.6899498Z Requirement already satisfied: urllib3<1.27,>=1.21.1 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (1.26.19) 2025-08-26T20:44:21.6905864Z Requirement already satisfied: certifi>=2017.4.17 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (2025.8.3) 2025-08-26T20:44:21.6917765Z Requirement already satisfied: charset-normalizer~=2.0.0 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (2.0.4) 2025-08-26T20:44:21.6931573Z Requirement already satisfied: idna<4,>=2.5 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (3.7) 2025-08-26T20:44:21.7203228Z Downloading requests-2.27.1-py2.py3-none-any.whl (63 kB) 2025-08-26T20:44:21.7993090Z ---------------------------------------- 63.1/63.1 kB 678.1 kB/s eta 0:00:00 2025-08-26T20:44:22.5877895Z Installing collected packages: requests 2025-08-26T20:44:22.5878365Z Attempting uninstall: requests 2025-08-26T20:44:22.5890799Z Found existing installation: requests 2.32.4 2025-08-26T20:44:22.5968366Z Uninstalling requests-2.32.4: 2025-08-26T20:44:22.5990143Z Successfully uninstalled requests-2.32.4 2025-08-26T20:44:22.6916155Z Successfully installed requests-2.27.1 2025-08-26T20:44:23.6923962Z Command completed after 1 attempt(s). 2025-08-26T20:44:23.7712028Z ##[group]Run set -x 2025-08-26T20:44:23.7712272Z set -x 2025-08-26T20:44:23.7712463Z  2025-08-26T20:44:23.7712815Z # Use relative path here as this could be checked out anywhere, not necessarily 2025-08-26T20:44:23.7713247Z # in runner workspace 2025-08-26T20:44:23.7713601Z python3 "${GITHUB_ACTION_PATH}/../../scripts/parse_ref.py" 2025-08-26T20:44:23.7732950Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T20:44:23.7733437Z env: 2025-08-26T20:44:23.7733641Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:44:23.7734023Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:44:23.7734560Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:44:23.7735028Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:44:23.7735409Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:44:23.7735692Z ##[endgroup] 2025-08-26T20:44:23.7923175Z + python3 'C:\actions-runner\_work\pytorch\pytorch\./.github/actions/filter-test-configs/../../scripts/parse_ref.py' 2025-08-26T20:44:23.8401852Z Setting output branch=main 2025-08-26T20:44:23.8543955Z ##[group]Run echo "Workflow: ${GITHUB_WORKFLOW}" 2025-08-26T20:44:23.8544331Z echo "Workflow: ${GITHUB_WORKFLOW}" 2025-08-26T20:44:23.8544639Z echo "Job name: ${JOB_NAME}" 2025-08-26T20:44:23.8544957Z  2025-08-26T20:44:23.8545346Z # Use relative path here as this could be checked out anywhere, not necessarily 2025-08-26T20:44:23.8545927Z # in runner workspace 2025-08-26T20:44:23.8546325Z python3 "${GITHUB_ACTION_PATH}/../../scripts/filter_test_configs.py" \ 2025-08-26T20:44:23.8546755Z  --workflow "${GITHUB_WORKFLOW}" \ 2025-08-26T20:44:23.8547129Z  --job-name "${JOB_NAME}" \ 2025-08-26T20:44:23.8548257Z  --test-matrix "{"include": [{"config": "default", "shard": 1, "num_shards": 3, "runner": "windows.4xlarge.nonephemeral"}, {"config": "default", "shard": 2, "num_shards": 3, "runner": "windows.4xlarge.nonephemeral"}, {"config": "default", "shard": 3, "num_shards": 3, "runner": "windows.4xlarge.nonephemeral"}]}" \ 2025-08-26T20:44:23.8549363Z  --selected-test-configs "" \ 2025-08-26T20:44:23.8549653Z  --pr-number "${PR_NUMBER}" \ 2025-08-26T20:44:23.8549928Z  --tag "${TAG}" \ 2025-08-26T20:44:23.8550179Z  --event-name "${EVENT_NAME}" \ 2025-08-26T20:44:23.8550470Z  --schedule "${SCHEDULE}" \ 2025-08-26T20:44:23.8550785Z  --branch "${HEAD_BRANCH}" 2025-08-26T20:44:23.8570089Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T20:44:23.8570501Z env: 2025-08-26T20:44:23.8570694Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:44:23.8571056Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:44:23.8571562Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:44:23.8572025Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:44:23.8572411Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:44:23.8572907Z GITHUB_TOKEN: *** 2025-08-26T20:44:23.8573271Z JOB_NAME: win-vs2022-cpu-py3 / test (default, 2, 3, windows.4xlarge.nonephemeral) 2025-08-26T20:44:23.8573750Z PR_NUMBER: 2025-08-26T20:44:23.8573984Z TAG: 2025-08-26T20:44:23.8574147Z EVENT_NAME: push 2025-08-26T20:44:23.8574344Z SCHEDULE: 2025-08-26T20:44:23.8574529Z HEAD_BRANCH: main 2025-08-26T20:44:23.8574724Z ##[endgroup] 2025-08-26T20:44:23.8751230Z Workflow: trunk 2025-08-26T20:44:23.8752310Z Job name: win-vs2022-cpu-py3 / test (default, 2, 3, windows.4xlarge.nonephemeral) 2025-08-26T20:44:24.2896413Z Setting output keep-going=True 2025-08-26T20:44:24.2896771Z Setting output ci-verbose-test-logs=False 2025-08-26T20:44:24.2897088Z Setting output ci-test-showlocals=False 2025-08-26T20:44:24.2897379Z Setting output ci-no-test-timeout=False 2025-08-26T20:44:24.2897661Z Setting output ci-no-td=False 2025-08-26T20:44:24.2897923Z Setting output ci-td-distributed=False 2025-08-26T20:44:24.2898211Z Setting output is-unstable=False 2025-08-26T20:44:24.2898467Z Setting output reenabled-issues= 2025-08-26T20:44:24.2899580Z Setting output test-matrix={"include": [{"config": "default", "shard": 1, "num_shards": 3, "runner": "windows.4xlarge.nonephemeral"}, {"config": "default", "shard": 2, "num_shards": 3, "runner": "windows.4xlarge.nonephemeral"}, {"config": "default", "shard": 3, "num_shards": 3, "runner": "windows.4xlarge.nonephemeral"}]} 2025-08-26T20:44:24.2900771Z Setting output is-test-matrix-empty=False 2025-08-26T20:44:24.3110295Z ##[group]Run echo "Filtered matrix:" 2025-08-26T20:44:24.3110644Z echo "Filtered matrix:" 2025-08-26T20:44:24.3111734Z echo "{"include": [{"config": "default", "shard": 1, "num_shards": 3, "runner": "windows.4xlarge.nonephemeral"}, {"config": "default", "shard": 2, "num_shards": 3, "runner": "windows.4xlarge.nonephemeral"}, {"config": "default", "shard": 3, "num_shards": 3, "runner": "windows.4xlarge.nonephemeral"}]}" 2025-08-26T20:44:24.3112772Z  2025-08-26T20:44:24.3112955Z echo 2025-08-26T20:44:24.3113187Z echo "Is the current job unstable? False" 2025-08-26T20:44:24.3113490Z  2025-08-26T20:44:24.3113654Z echo 2025-08-26T20:44:24.3113871Z echo "Is keep-going label set? True" 2025-08-26T20:44:24.3114139Z  2025-08-26T20:44:24.3114449Z echo 2025-08-26T20:44:24.3114645Z echo "Reenabled issues? " 2025-08-26T20:44:24.3133765Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T20:44:24.3134179Z env: 2025-08-26T20:44:24.3134375Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:44:24.3134736Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:44:24.3135248Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:44:24.3135705Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:44:24.3136082Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:44:24.3136375Z ##[endgroup] 2025-08-26T20:44:24.3312361Z Filtered matrix: 2025-08-26T20:44:24.3313418Z {include: [{config: default, shard: 1, num_shards: 3, runner: windows.4xlarge.nonephemeral}, {config: default, shard: 2, num_shards: 3, runner: windows.4xlarge.nonephemeral}, {config: default, shard: 3, num_shards: 3, runner: windows.4xlarge.nonephemeral}]} 2025-08-26T20:44:24.3314608Z 2025-08-26T20:44:24.3314722Z Is the current job unstable? False 2025-08-26T20:44:24.3314917Z 2025-08-26T20:44:24.3315009Z Is keep-going label set? True 2025-08-26T20:44:24.3315176Z 2025-08-26T20:44:24.3315256Z Reenabled issues? 2025-08-26T20:44:24.3428024Z ##[group]Run echo "timeout=$((JOB_TIMEOUT-30))" >> "${GITHUB_OUTPUT}" 2025-08-26T20:44:24.3428518Z echo "timeout=$((JOB_TIMEOUT-30))" >> "${GITHUB_OUTPUT}" 2025-08-26T20:44:24.3447175Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T20:44:24.3447589Z env: 2025-08-26T20:44:24.3447784Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:44:24.3448164Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:44:24.3448665Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:44:24.3449123Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:44:24.3449519Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:44:24.3449814Z JOB_TIMEOUT: 240 2025-08-26T20:44:24.3450002Z ##[endgroup] 2025-08-26T20:44:24.3739551Z ##[group]Run pushd "${PYTORCH_FINAL_PACKAGE_DIR}" 2025-08-26T20:44:24.3740017Z pushd "${PYTORCH_FINAL_PACKAGE_DIR}" 2025-08-26T20:44:24.3740385Z # shellcheck disable=SC2046,SC2102 2025-08-26T20:44:24.3740841Z python3 -mpip install $(echo *.whl)[opt-einsum,optree] optree==0.13.0 2025-08-26T20:44:24.3741235Z popd 2025-08-26T20:44:24.3741410Z  2025-08-26T20:44:24.3741609Z .ci/pytorch/win-test.sh 2025-08-26T20:44:24.3760229Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T20:44:24.3760648Z env: 2025-08-26T20:44:24.3760833Z GIT_DEFAULT_BRANCH: main 2025-08-26T20:44:24.3761217Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:44:24.3761726Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:44:24.3762190Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:44:24.3762602Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:44:24.3762893Z USE_CUDA: 0 2025-08-26T20:44:24.3763091Z INSTALL_WINDOWS_SDK: 1 2025-08-26T20:44:24.3763314Z PYTHON_VERSION: 3.9 2025-08-26T20:44:24.3763535Z CONTINUE_THROUGH_ERROR: True 2025-08-26T20:44:24.3763769Z VERBOSE_TEST_LOGS: False 2025-08-26T20:44:24.3763998Z TEST_SHOWLOCALS: False 2025-08-26T20:44:24.3764211Z NO_TEST_TIMEOUT: False 2025-08-26T20:44:24.3764420Z NO_TD: False 2025-08-26T20:44:24.3764603Z VC_PRODUCT: BuildTools 2025-08-26T20:44:24.3764825Z VC_VERSION: 2025-08-26T20:44:24.3765002Z VS_VERSION: 17.4.1 2025-08-26T20:44:24.3765199Z VC_YEAR: 2022 2025-08-26T20:44:24.3765396Z AWS_DEFAULT_REGION: us-east-1 2025-08-26T20:44:24.3765621Z PR_NUMBER: 2025-08-26T20:44:24.3765827Z GITHUB_REPOSITORY: pytorch/pytorch 2025-08-26T20:44:24.3766228Z GITHUB_WORKFLOW: trunk 2025-08-26T20:44:24.3766456Z GITHUB_JOB: test 2025-08-26T20:44:24.3766648Z GITHUB_RUN_ID: 17248463647 2025-08-26T20:44:24.3766891Z GITHUB_RUN_NUMBER: 141812 2025-08-26T20:44:24.3767117Z GITHUB_RUN_ATTEMPT: 1 2025-08-26T20:44:24.3767419Z JOB_ID: 48947911970 2025-08-26T20:44:24.3767829Z JOB_NAME: win-vs2022-cpu-py3 / test (default, 2, 3, windows.4xlarge.nonephemeral) 2025-08-26T20:44:24.3768329Z SHA1: 262640fd220236042fbf4443cc163c8838c84c3d 2025-08-26T20:44:24.3768619Z CUDA_VERSION: cpu 2025-08-26T20:44:24.3768875Z PYTORCH_FINAL_PACKAGE_DIR: /c/17248463647/build-results/ 2025-08-26T20:44:24.3769223Z BUILD_ENVIRONMENT: win-vs2022-cpu-py3 2025-08-26T20:44:24.3769610Z ALPINE_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2025-08-26T20:44:24.3769996Z SHARD_NUMBER: 2 2025-08-26T20:44:24.3770188Z NUM_TEST_SHARDS: 3 2025-08-26T20:44:24.3770393Z TEST_CONFIG: default 2025-08-26T20:44:24.3770590Z REENABLED_ISSUES: 2025-08-26T20:44:24.3770812Z TORCH_CUDA_ARCH_LIST: 8.6 2025-08-26T20:44:24.3771059Z PYTORCH_TEST_CUDA_MEM_LEAK_CHECK: 0 2025-08-26T20:44:24.3771344Z PYTORCH_TEST_RERUN_DISABLED_TESTS: 0 2025-08-26T20:44:24.3771610Z ##[endgroup] 2025-08-26T20:44:24.3943830Z /c/17248463647/build-results /c/actions-runner/_work/pytorch/pytorch 2025-08-26T20:44:24.9053453Z Processing c:\17248463647\build-results\torch-2.9.0a0+git262640f-cp39-cp39-win_amd64.whl (from torch==2.9.0a0+git262640f) 2025-08-26T20:44:26.1188346Z Collecting optree==0.13.0 2025-08-26T20:44:26.3105844Z Downloading optree-0.13.0-cp39-cp39-win_amd64.whl.metadata (48 kB) 2025-08-26T20:44:26.3864704Z -------------------------------------- 48.7/48.7 kB 409.4 kB/s eta 0:00:00 2025-08-26T20:44:26.4220392Z Requirement already satisfied: typing-extensions>=4.5.0 in c:\jenkins\miniconda3\lib\site-packages (from optree==0.13.0) (4.12.2) 2025-08-26T20:44:26.4623618Z Collecting filelock (from torch==2.9.0a0+git262640f->torch==2.9.0a0+git262640f) 2025-08-26T20:44:26.4666536Z Downloading filelock-3.19.1-py3-none-any.whl.metadata (2.1 kB) 2025-08-26T20:44:26.6993476Z Collecting sympy>=1.13.3 (from torch==2.9.0a0+git262640f->torch==2.9.0a0+git262640f) 2025-08-26T20:44:26.7032823Z Downloading sympy-1.14.0-py3-none-any.whl.metadata (12 kB) 2025-08-26T20:44:26.7111689Z Requirement already satisfied: networkx>=2.5.1 in c:\jenkins\miniconda3\lib\site-packages (from torch==2.9.0a0+git262640f->torch==2.9.0a0+git262640f) (2.8.8) 2025-08-26T20:44:26.7395421Z Collecting jinja2 (from torch==2.9.0a0+git262640f->torch==2.9.0a0+git262640f) 2025-08-26T20:44:26.7436952Z Downloading jinja2-3.1.6-py3-none-any.whl.metadata (2.9 kB) 2025-08-26T20:44:26.7992604Z Collecting fsspec>=0.8.5 (from torch==2.9.0a0+git262640f->torch==2.9.0a0+git262640f) 2025-08-26T20:44:26.8034195Z Downloading fsspec-2025.7.0-py3-none-any.whl.metadata (12 kB) 2025-08-26T20:44:26.8173323Z Requirement already satisfied: opt-einsum>=3.3 in c:\jenkins\miniconda3\lib\site-packages (from torch==2.9.0a0+git262640f->torch==2.9.0a0+git262640f) (3.4.0) 2025-08-26T20:44:26.9708981Z Requirement already satisfied: mpmath<1.4,>=1.1.0 in c:\jenkins\miniconda3\lib\site-packages (from sympy>=1.13.3->torch==2.9.0a0+git262640f->torch==2.9.0a0+git262640f) (1.2.1) 2025-08-26T20:44:27.0538685Z Collecting MarkupSafe>=2.0 (from jinja2->torch==2.9.0a0+git262640f->torch==2.9.0a0+git262640f) 2025-08-26T20:44:27.0588827Z Downloading MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl.metadata (4.1 kB) 2025-08-26T20:44:27.0851731Z Downloading optree-0.13.0-cp39-cp39-win_amd64.whl (270 kB) 2025-08-26T20:44:27.1247212Z ---------------------------------------- 270.1/270.1 kB 8.1 MB/s eta 0:00:00 2025-08-26T20:44:27.1293796Z Downloading fsspec-2025.7.0-py3-none-any.whl (199 kB) 2025-08-26T20:44:27.1444936Z --------------------------------------- 199.6/199.6 kB 12.6 MB/s eta 0:00:00 2025-08-26T20:44:27.1485287Z Downloading sympy-1.14.0-py3-none-any.whl (6.3 MB) 2025-08-26T20:44:27.2088592Z ---------------------------------------- 6.3/6.3 MB 133.8 MB/s eta 0:00:00 2025-08-26T20:44:27.2128144Z Downloading filelock-3.19.1-py3-none-any.whl (15 kB) 2025-08-26T20:44:27.2225261Z Downloading jinja2-3.1.6-py3-none-any.whl (134 kB) 2025-08-26T20:44:27.2322557Z ---------------------------------------- 134.9/134.9 kB 7.8 MB/s eta 0:00:00 2025-08-26T20:44:27.2374362Z Downloading MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl (15 kB) 2025-08-26T20:44:28.2756616Z Installing collected packages: sympy, optree, MarkupSafe, fsspec, filelock, jinja2, torch 2025-08-26T20:44:28.2758122Z Attempting uninstall: sympy 2025-08-26T20:44:28.2772838Z Found existing installation: sympy 1.11.1 2025-08-26T20:44:28.7212171Z Uninstalling sympy-1.11.1: 2025-08-26T20:44:29.1033348Z Successfully uninstalled sympy-1.11.1 2025-08-26T20:44:36.3490837Z WARNING: The script isympy.exe is installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-08-26T20:44:36.3491644Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-08-26T20:44:56.8561584Z WARNING: The scripts torchfrtrace.exe and torchrun.exe are installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-08-26T20:44:56.8562486Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-08-26T20:44:57.0184688Z Successfully installed MarkupSafe-3.0.2 filelock-3.19.1 fsspec-2025.7.0 jinja2-3.1.6 optree-0.13.0 sympy-1.14.0 torch-2.9.0a0+git262640f 2025-08-26T20:44:57.1154327Z /c/actions-runner/_work/pytorch/pytorch 2025-08-26T20:44:57.1447344Z +++ dirname .ci/pytorch/win-test.sh 2025-08-26T20:44:57.1509896Z ++ cd .ci/pytorch 2025-08-26T20:44:57.1514890Z ++ pwd 2025-08-26T20:44:57.1520017Z + SCRIPT_PARENT_DIR=/c/actions-runner/_work/pytorch/pytorch/.ci/pytorch 2025-08-26T20:44:57.1520566Z + source /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/common.sh 2025-08-26T20:44:57.1574927Z +++ dirname /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/common.sh 2025-08-26T20:44:57.1660735Z ++ source /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/common_utils.sh 2025-08-26T20:44:57.1664633Z +++ declare -f -t trap_add 2025-08-26T20:44:57.1671030Z ++ set -ex -o pipefail 2025-08-26T20:44:57.1671310Z ++ [[ win-vs2022-cpu-py3 == *rocm* ]] 2025-08-26T20:44:57.1671652Z ++ BUILD_TEST_LIBTORCH=0 2025-08-26T20:44:57.1672024Z + export TMP_DIR=/c/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-08-26T20:44:57.1672509Z + TMP_DIR=/c/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-08-26T20:44:57.1728194Z ++ cygpath -w /c/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-08-26T20:44:57.1824671Z + TMP_DIR_WIN='C:\actions-runner\_work\pytorch\pytorch\build\win_tmp' 2025-08-26T20:44:57.1825154Z + export TMP_DIR_WIN 2025-08-26T20:44:57.1825449Z + export PROJECT_DIR=/c/actions-runner/_work/pytorch/pytorch 2025-08-26T20:44:57.1825850Z + PROJECT_DIR=/c/actions-runner/_work/pytorch/pytorch 2025-08-26T20:44:57.1878658Z ++ cygpath -w /c/actions-runner/_work/pytorch/pytorch 2025-08-26T20:44:57.1967404Z + PROJECT_DIR_WIN='C:\actions-runner\_work\pytorch\pytorch' 2025-08-26T20:44:57.1967817Z + export PROJECT_DIR_WIN 2025-08-26T20:44:57.1968134Z + export TEST_DIR=/c/actions-runner/_work/pytorch/pytorch/test 2025-08-26T20:44:57.1968541Z + TEST_DIR=/c/actions-runner/_work/pytorch/pytorch/test 2025-08-26T20:44:57.2021262Z ++ cygpath -w /c/actions-runner/_work/pytorch/pytorch/test 2025-08-26T20:44:57.2108769Z + TEST_DIR_WIN='C:\actions-runner\_work\pytorch\pytorch\test' 2025-08-26T20:44:57.2109276Z + export TEST_DIR_WIN 2025-08-26T20:44:57.2109584Z + export PYTORCH_FINAL_PACKAGE_DIR=/c/17248463647/build-results/ 2025-08-26T20:44:57.2110019Z + PYTORCH_FINAL_PACKAGE_DIR=/c/17248463647/build-results/ 2025-08-26T20:44:57.2163776Z ++ cygpath -w /c/17248463647/build-results/ 2025-08-26T20:44:57.2282162Z + PYTORCH_FINAL_PACKAGE_DIR_WIN='C:\17248463647\build-results\' 2025-08-26T20:44:57.2282604Z + export PYTORCH_FINAL_PACKAGE_DIR_WIN 2025-08-26T20:44:57.2283159Z + export TORCH_SERIALIZATION_DEBUG=1 2025-08-26T20:44:57.2283444Z + TORCH_SERIALIZATION_DEBUG=1 2025-08-26T20:44:57.2283868Z + mkdir -p /c/actions-runner/_work/pytorch/pytorch/build/win_tmp/build/torch 2025-08-26T20:44:57.2407994Z + export SCRIPT_HELPERS_DIR=/c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-08-26T20:44:57.2408696Z + SCRIPT_HELPERS_DIR=/c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-08-26T20:44:57.2409182Z + [[ default = \f\o\r\c\e\_\o\n\_\c\p\u ]] 2025-08-26T20:44:57.2409466Z + [[ win-vs2022-cpu-py3 == *cuda* ]] 2025-08-26T20:44:57.2410062Z + python -m pip install pytest-rerunfailures==10.3 pytest-cpp==2.3.0 tensorboard==2.13.0 protobuf==5.29.4 pytest-subtests==0.13.1 2025-08-26T20:44:57.9641839Z Collecting pytest-rerunfailures==10.3 2025-08-26T20:44:58.1594025Z Downloading pytest_rerunfailures-10.3-py3-none-any.whl.metadata (15 kB) 2025-08-26T20:44:58.1932080Z Requirement already satisfied: pytest-cpp==2.3.0 in c:\jenkins\miniconda3\lib\site-packages (2.3.0) 2025-08-26T20:44:58.2213738Z Collecting tensorboard==2.13.0 2025-08-26T20:44:58.2268767Z Downloading tensorboard-2.13.0-py3-none-any.whl.metadata (1.8 kB) 2025-08-26T20:44:58.6589009Z Collecting protobuf==5.29.4 2025-08-26T20:44:58.6649955Z Downloading protobuf-5.29.4-cp39-cp39-win_amd64.whl.metadata (592 bytes) 2025-08-26T20:44:58.6896253Z Collecting pytest-subtests==0.13.1 2025-08-26T20:44:58.6951212Z Downloading pytest_subtests-0.13.1-py3-none-any.whl.metadata (6.1 kB) 2025-08-26T20:44:58.7049922Z Requirement already satisfied: packaging>=17.1 in c:\jenkins\miniconda3\lib\site-packages (from pytest-rerunfailures==10.3) (23.2) 2025-08-26T20:44:58.7056736Z Requirement already satisfied: pytest>=5.3 in c:\jenkins\miniconda3\lib\site-packages (from pytest-rerunfailures==10.3) (7.1.3) 2025-08-26T20:44:58.7082673Z Requirement already satisfied: colorama in c:\jenkins\miniconda3\lib\site-packages (from pytest-cpp==2.3.0) (0.4.6) 2025-08-26T20:44:58.7366312Z Collecting absl-py>=0.4 (from tensorboard==2.13.0) 2025-08-26T20:44:58.7414708Z Downloading absl_py-2.3.1-py3-none-any.whl.metadata (3.3 kB) 2025-08-26T20:44:59.4594076Z Collecting grpcio>=1.48.2 (from tensorboard==2.13.0) 2025-08-26T20:44:59.4648008Z Downloading grpcio-1.74.0-cp39-cp39-win_amd64.whl.metadata (4.0 kB) 2025-08-26T20:44:59.5765223Z Collecting google-auth<3,>=1.6.3 (from tensorboard==2.13.0) 2025-08-26T20:44:59.5809067Z Downloading google_auth-2.40.3-py2.py3-none-any.whl.metadata (6.2 kB) 2025-08-26T20:44:59.6074735Z Collecting google-auth-oauthlib<1.1,>=0.5 (from tensorboard==2.13.0) 2025-08-26T20:44:59.6119685Z Downloading google_auth_oauthlib-1.0.0-py2.py3-none-any.whl.metadata (2.7 kB) 2025-08-26T20:44:59.6446979Z Collecting markdown>=2.6.8 (from tensorboard==2.13.0) 2025-08-26T20:44:59.6487481Z Downloading markdown-3.8.2-py3-none-any.whl.metadata (5.1 kB) 2025-08-26T20:44:59.6554771Z Requirement already satisfied: numpy>=1.12.0 in c:\jenkins\miniconda3\lib\site-packages (from tensorboard==2.13.0) (1.22.3) 2025-08-26T20:44:59.6755959Z Requirement already satisfied: requests<3,>=2.21.0 in c:\jenkins\miniconda3\lib\site-packages (from tensorboard==2.13.0) (2.27.1) 2025-08-26T20:44:59.6762802Z Requirement already satisfied: setuptools>=41.0.0 in c:\jenkins\miniconda3\lib\site-packages (from tensorboard==2.13.0) (78.1.1) 2025-08-26T20:44:59.6910244Z Collecting tensorboard-data-server<0.8.0,>=0.7.0 (from tensorboard==2.13.0) 2025-08-26T20:44:59.6960563Z Downloading tensorboard_data_server-0.7.2-py3-none-any.whl.metadata (1.1 kB) 2025-08-26T20:44:59.7712494Z Collecting werkzeug>=1.0.1 (from tensorboard==2.13.0) 2025-08-26T20:44:59.7757915Z Downloading werkzeug-3.1.3-py3-none-any.whl.metadata (3.7 kB) 2025-08-26T20:44:59.7825051Z Requirement already satisfied: wheel>=0.26 in c:\jenkins\miniconda3\lib\site-packages (from tensorboard==2.13.0) (0.43.0) 2025-08-26T20:44:59.7876606Z Requirement already satisfied: attrs>=19.2.0 in c:\jenkins\miniconda3\lib\site-packages (from pytest-subtests==0.13.1) (25.3.0) 2025-08-26T20:44:59.8985449Z Collecting cachetools<6.0,>=2.0.0 (from google-auth<3,>=1.6.3->tensorboard==2.13.0) 2025-08-26T20:44:59.9891794Z Downloading cachetools-5.5.2-py3-none-any.whl.metadata (5.4 kB) 2025-08-26T20:45:00.0236603Z Collecting pyasn1-modules>=0.2.1 (from google-auth<3,>=1.6.3->tensorboard==2.13.0) 2025-08-26T20:45:00.0282508Z Downloading pyasn1_modules-0.4.2-py3-none-any.whl.metadata (3.5 kB) 2025-08-26T20:45:00.0565290Z Collecting rsa<5,>=3.1.4 (from google-auth<3,>=1.6.3->tensorboard==2.13.0) 2025-08-26T20:45:00.0605216Z Downloading rsa-4.9.1-py3-none-any.whl.metadata (5.6 kB) 2025-08-26T20:45:00.1056524Z Collecting requests-oauthlib>=0.7.0 (from google-auth-oauthlib<1.1,>=0.5->tensorboard==2.13.0) 2025-08-26T20:45:00.1102506Z Downloading requests_oauthlib-2.0.0-py2.py3-none-any.whl.metadata (11 kB) 2025-08-26T20:45:00.1328505Z Requirement already satisfied: importlib-metadata>=4.4 in c:\jenkins\miniconda3\lib\site-packages (from markdown>=2.6.8->tensorboard==2.13.0) (8.5.0) 2025-08-26T20:45:00.1490998Z Requirement already satisfied: iniconfig in c:\jenkins\miniconda3\lib\site-packages (from pytest>=5.3->pytest-rerunfailures==10.3) (2.1.0) 2025-08-26T20:45:00.1499038Z Requirement already satisfied: pluggy<2.0,>=0.12 in c:\jenkins\miniconda3\lib\site-packages (from pytest>=5.3->pytest-rerunfailures==10.3) (1.0.0) 2025-08-26T20:45:00.1505628Z Requirement already satisfied: py>=1.8.2 in c:\jenkins\miniconda3\lib\site-packages (from pytest>=5.3->pytest-rerunfailures==10.3) (1.11.0) 2025-08-26T20:45:00.1516599Z Requirement already satisfied: tomli>=1.0.0 in c:\jenkins\miniconda3\lib\site-packages (from pytest>=5.3->pytest-rerunfailures==10.3) (2.2.1) 2025-08-26T20:45:00.1646129Z Requirement already satisfied: urllib3<1.27,>=1.21.1 in c:\jenkins\miniconda3\lib\site-packages (from requests<3,>=2.21.0->tensorboard==2.13.0) (1.26.19) 2025-08-26T20:45:00.1653052Z Requirement already satisfied: certifi>=2017.4.17 in c:\jenkins\miniconda3\lib\site-packages (from requests<3,>=2.21.0->tensorboard==2.13.0) (2025.8.3) 2025-08-26T20:45:00.1667334Z Requirement already satisfied: charset-normalizer~=2.0.0 in c:\jenkins\miniconda3\lib\site-packages (from requests<3,>=2.21.0->tensorboard==2.13.0) (2.0.4) 2025-08-26T20:45:00.1679340Z Requirement already satisfied: idna<4,>=2.5 in c:\jenkins\miniconda3\lib\site-packages (from requests<3,>=2.21.0->tensorboard==2.13.0) (3.7) 2025-08-26T20:45:00.1960657Z Requirement already satisfied: MarkupSafe>=2.1.1 in c:\jenkins\miniconda3\lib\site-packages (from werkzeug>=1.0.1->tensorboard==2.13.0) (3.0.2) 2025-08-26T20:45:00.2354892Z Requirement already satisfied: zipp>=3.20 in c:\jenkins\miniconda3\lib\site-packages (from importlib-metadata>=4.4->markdown>=2.6.8->tensorboard==2.13.0) (3.21.0) 2025-08-26T20:45:00.2868038Z Collecting pyasn1<0.7.0,>=0.6.1 (from pyasn1-modules>=0.2.1->google-auth<3,>=1.6.3->tensorboard==2.13.0) 2025-08-26T20:45:00.2905779Z Downloading pyasn1-0.6.1-py3-none-any.whl.metadata (8.4 kB) 2025-08-26T20:45:00.3218573Z Collecting oauthlib>=3.0.0 (from requests-oauthlib>=0.7.0->google-auth-oauthlib<1.1,>=0.5->tensorboard==2.13.0) 2025-08-26T20:45:00.3262908Z Downloading oauthlib-3.3.1-py3-none-any.whl.metadata (7.9 kB) 2025-08-26T20:45:00.4069611Z Downloading pytest_rerunfailures-10.3-py3-none-any.whl (11 kB) 2025-08-26T20:45:00.4196330Z Downloading tensorboard-2.13.0-py3-none-any.whl (5.6 MB) 2025-08-26T20:45:00.4764846Z ---------------------------------------- 5.6/5.6 MB 118.3 MB/s eta 0:00:00 2025-08-26T20:45:00.4827887Z Downloading protobuf-5.29.4-cp39-cp39-win_amd64.whl (434 kB) 2025-08-26T20:45:00.4943428Z --------------------------------------- 434.6/434.6 kB 13.3 MB/s eta 0:00:00 2025-08-26T20:45:00.4992822Z Downloading pytest_subtests-0.13.1-py3-none-any.whl (8.0 kB) 2025-08-26T20:45:00.5084465Z Downloading absl_py-2.3.1-py3-none-any.whl (135 kB) 2025-08-26T20:45:00.5168075Z ---------------------------------------- 135.8/135.8 kB 8.4 MB/s eta 0:00:00 2025-08-26T20:45:00.5206584Z Downloading google_auth-2.40.3-py2.py3-none-any.whl (216 kB) 2025-08-26T20:45:00.5296475Z ---------------------------------------- 216.1/216.1 kB ? eta 0:00:00 2025-08-26T20:45:00.5334162Z Downloading google_auth_oauthlib-1.0.0-py2.py3-none-any.whl (18 kB) 2025-08-26T20:45:00.5461445Z Downloading grpcio-1.74.0-cp39-cp39-win_amd64.whl (4.5 MB) 2025-08-26T20:45:00.5848168Z ---------------------------------------- 4.5/4.5 MB 140.2 MB/s eta 0:00:00 2025-08-26T20:45:00.5889031Z Downloading markdown-3.8.2-py3-none-any.whl (106 kB) 2025-08-26T20:45:00.5972364Z ---------------------------------------- 106.8/106.8 kB ? eta 0:00:00 2025-08-26T20:45:00.6015054Z Downloading tensorboard_data_server-0.7.2-py3-none-any.whl (2.4 kB) 2025-08-26T20:45:00.6104106Z Downloading werkzeug-3.1.3-py3-none-any.whl (224 kB) 2025-08-26T20:45:00.6195134Z ---------------------------------------- 224.5/224.5 kB ? eta 0:00:00 2025-08-26T20:45:00.6233117Z Downloading cachetools-5.5.2-py3-none-any.whl (10 kB) 2025-08-26T20:45:00.6326247Z Downloading pyasn1_modules-0.4.2-py3-none-any.whl (181 kB) 2025-08-26T20:45:00.6410401Z ---------------------------------------- 181.3/181.3 kB ? eta 0:00:00 2025-08-26T20:45:00.6491610Z Downloading requests_oauthlib-2.0.0-py2.py3-none-any.whl (24 kB) 2025-08-26T20:45:00.6561282Z Downloading rsa-4.9.1-py3-none-any.whl (34 kB) 2025-08-26T20:45:00.6656112Z Downloading oauthlib-3.3.1-py3-none-any.whl (160 kB) 2025-08-26T20:45:00.6760341Z ---------------------------------------- 160.1/160.1 kB ? eta 0:00:00 2025-08-26T20:45:00.6801720Z Downloading pyasn1-0.6.1-py3-none-any.whl (83 kB) 2025-08-26T20:45:00.6902438Z ---------------------------------------- 83.1/83.1 kB ? eta 0:00:00 2025-08-26T20:45:01.5675935Z Installing collected packages: werkzeug, tensorboard-data-server, pyasn1, protobuf, oauthlib, grpcio, cachetools, absl-py, rsa, requests-oauthlib, pytest-subtests, pytest-rerunfailures, pyasn1-modules, markdown, google-auth, google-auth-oauthlib, tensorboard 2025-08-26T20:45:01.8623978Z Attempting uninstall: protobuf 2025-08-26T20:45:01.8634876Z Found existing installation: protobuf 5.29.3 2025-08-26T20:45:01.8810804Z Uninstalling protobuf-5.29.3: 2025-08-26T20:45:01.8853858Z Successfully uninstalled protobuf-5.29.3 2025-08-26T20:45:02.6276360Z WARNING: The scripts pyrsa-decrypt.exe, pyrsa-encrypt.exe, pyrsa-keygen.exe, pyrsa-priv2pub.exe, pyrsa-sign.exe and pyrsa-verify.exe are installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-08-26T20:45:02.6277547Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-08-26T20:45:02.6958526Z Attempting uninstall: pytest-rerunfailures 2025-08-26T20:45:02.6972633Z Found existing installation: pytest-rerunfailures 10.2 2025-08-26T20:45:02.7012378Z Uninstalling pytest-rerunfailures-10.2: 2025-08-26T20:45:03.1859140Z Successfully uninstalled pytest-rerunfailures-10.2 2025-08-26T20:45:03.7619666Z WARNING: The script markdown_py.exe is installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-08-26T20:45:03.7620574Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-08-26T20:45:03.9621307Z WARNING: The script google-oauthlib-tool.exe is installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-08-26T20:45:03.9622166Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-08-26T20:45:04.9890388Z WARNING: The script tensorboard.exe is installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-08-26T20:45:04.9891225Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-08-26T20:45:05.0438792Z Successfully installed absl-py-2.3.1 cachetools-5.5.2 google-auth-2.40.3 google-auth-oauthlib-1.0.0 grpcio-1.74.0 markdown-3.8.2 oauthlib-3.3.1 protobuf-5.29.4 pyasn1-0.6.1 pyasn1-modules-0.4.2 pytest-rerunfailures-10.3 pytest-subtests-0.13.1 requests-oauthlib-2.0.0 rsa-4.9.1 tensorboard-2.13.0 tensorboard-data-server-0.7.2 werkzeug-3.1.3 2025-08-26T20:45:05.2717135Z + python -m pip install z3-solver==4.15.1.0 2025-08-26T20:45:06.0617231Z Collecting z3-solver==4.15.1.0 2025-08-26T20:45:06.2576013Z Downloading z3_solver-4.15.1.0-py3-none-win_amd64.whl.metadata (778 bytes) 2025-08-26T20:45:06.2727311Z Downloading z3_solver-4.15.1.0-py3-none-win_amd64.whl (16.4 MB) 2025-08-26T20:45:06.5689126Z ---------------------------------------- 16.4/16.4 MB 108.8 MB/s eta 0:00:00 2025-08-26T20:45:07.6070624Z Installing collected packages: z3-solver 2025-08-26T20:45:08.0581585Z Successfully installed z3-solver-4.15.1.0 2025-08-26T20:45:08.1372907Z + python -m pip install tlparse==0.3.30 2025-08-26T20:45:08.9645465Z Collecting tlparse==0.3.30 2025-08-26T20:45:09.1552034Z Downloading tlparse-0.3.30-py3-none-win_amd64.whl.metadata (2.0 kB) 2025-08-26T20:45:09.1688627Z Downloading tlparse-0.3.30-py3-none-win_amd64.whl (1.8 MB) 2025-08-26T20:45:09.3396726Z ---------------------------------------- 1.8/1.8 MB 10.7 MB/s eta 0:00:00 2025-08-26T20:45:10.3356439Z Installing collected packages: tlparse 2025-08-26T20:45:10.4123425Z Successfully installed tlparse-0.3.30 2025-08-26T20:45:10.4973715Z + python -m pip install parameterized==0.8.1 2025-08-26T20:45:11.2893864Z Collecting parameterized==0.8.1 2025-08-26T20:45:11.4844788Z Downloading parameterized-0.8.1-py2.py3-none-any.whl.metadata (18 kB) 2025-08-26T20:45:11.5312052Z Downloading parameterized-0.8.1-py2.py3-none-any.whl (26 kB) 2025-08-26T20:45:12.5743306Z Installing collected packages: parameterized 2025-08-26T20:45:12.6516671Z Successfully installed parameterized-0.8.1 2025-08-26T20:45:12.7300553Z + python -m pip install pulp==2.9.0 2025-08-26T20:45:13.4485243Z Collecting pulp==2.9.0 2025-08-26T20:45:13.6384500Z Downloading PuLP-2.9.0-py3-none-any.whl.metadata (5.4 kB) 2025-08-26T20:45:13.6503839Z Downloading PuLP-2.9.0-py3-none-any.whl (17.7 MB) 2025-08-26T20:45:13.9394599Z ---------------------------------------- 17.7/17.7 MB 108.8 MB/s eta 0:00:00 2025-08-26T20:45:15.0383179Z Installing collected packages: pulp 2025-08-26T20:45:15.4256885Z WARNING: The script pulptest.exe is installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-08-26T20:45:15.4257711Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-08-26T20:45:15.4808311Z Successfully installed pulp-2.9.0 2025-08-26T20:45:15.5606136Z + python -m pip install expecttest==0.3.0 2025-08-26T20:45:16.2864728Z Collecting expecttest==0.3.0 2025-08-26T20:45:16.4793324Z Downloading expecttest-0.3.0-py3-none-any.whl.metadata (3.8 kB) 2025-08-26T20:45:16.4952368Z Downloading expecttest-0.3.0-py3-none-any.whl (8.2 kB) 2025-08-26T20:45:17.4675849Z Installing collected packages: expecttest 2025-08-26T20:45:17.4677576Z Attempting uninstall: expecttest 2025-08-26T20:45:17.4686496Z Found existing installation: expecttest 0.1.3 2025-08-26T20:45:17.4725238Z Uninstalling expecttest-0.1.3: 2025-08-26T20:45:17.4755198Z Successfully uninstalled expecttest-0.1.3 2025-08-26T20:45:17.5336124Z Successfully installed expecttest-0.3.0 2025-08-26T20:45:17.6113274Z + run_tests 2025-08-26T20:45:17.6113821Z + for path in '/c/Program Files/NVIDIA Corporation/NVSMI/nvidia-smi.exe' /c/Windows/System32/nvidia-smi.exe 2025-08-26T20:45:17.6114481Z + [[ -x /c/Program Files/NVIDIA Corporation/NVSMI/nvidia-smi.exe ]] 2025-08-26T20:45:17.6115106Z + for path in '/c/Program Files/NVIDIA Corporation/NVSMI/nvidia-smi.exe' /c/Windows/System32/nvidia-smi.exe 2025-08-26T20:45:17.6115671Z + [[ -x /c/Windows/System32/nvidia-smi.exe ]] 2025-08-26T20:45:17.6116027Z + /c/Windows/System32/nvidia-smi.exe 2025-08-26T20:45:17.7370781Z NVIDIA-SMI has failed because it couldn't communicate with the NVIDIA driver. Make sure that the latest NVIDIA driver is installed and running. This can also be happening if non-NVIDIA GPU is running as primary display, and NVIDIA GPU is in WDDM mode. 2025-08-26T20:45:17.7372090Z 2025-08-26T20:45:17.7403761Z + echo true 2025-08-26T20:45:17.7404043Z true 2025-08-26T20:45:17.7404216Z + break 2025-08-26T20:45:17.7404408Z + [[ 3 -eq 1 ]] 2025-08-26T20:45:17.7404835Z + /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers/test_python_shard.bat 2025-08-26T20:45:17.7535575Z 2025-08-26T20:45:17.7536398Z C:\actions-runner\_work\pytorch\pytorch>call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\setup_pytorch_env.bat 2025-08-26T20:45:17.7544968Z 2025-08-26T20:45:17.7547531Z C:\actions-runner\_work\pytorch\pytorch>set PATH=C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps 2025-08-26T20:45:17.7549931Z 2025-08-26T20:45:17.7550443Z C:\actions-runner\_work\pytorch\pytorch>set INSTALLER_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers 2025-08-26T20:45:17.7551153Z 2025-08-26T20:45:17.7551747Z C:\actions-runner\_work\pytorch\pytorch>call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers\activate_miniconda3.bat 2025-08-26T20:45:17.7561587Z 2025-08-26T20:45:17.7562343Z C:\actions-runner\_work\pytorch\pytorch>if "win-vs2022-cpu-py3" == "" (set CONDA_PARENT_DIR=C:\actions-runner\_work\pytorch\pytorch ) else (set CONDA_PARENT_DIR=C:\Jenkins ) 2025-08-26T20:45:17.7566656Z 2025-08-26T20:45:17.7567267Z C:\actions-runner\_work\pytorch\pytorch>if not exist C:\Jenkins\Miniconda3 (set INSTALL_FRESH_CONDA=1 ) 2025-08-26T20:45:17.7569657Z 2025-08-26T20:45:17.7570091Z C:\actions-runner\_work\pytorch\pytorch>if "" == "1" ( 2025-08-26T20:45:17.7571436Z curl --retry 3 --retry-all-errors -k https://repo.anaconda.com/miniconda/Miniconda3-latest-Windows-x86_64.exe --output C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\Miniconda3-latest-Windows-x86_64.exe 2025-08-26T20:45:17.7572606Z if errorlevel 1 exit /b 2025-08-26T20:45:17.7572912Z if not errorlevel 0 exit /b 2025-08-26T20:45:17.7573794Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\Miniconda3-latest-Windows-x86_64.exe /InstallationType=JustMe /RegisterPython=0 /S /AddToPath=0 /D=C:\Jenkins\Miniconda3 2025-08-26T20:45:17.7574676Z if errorlevel 1 exit /b 2025-08-26T20:45:17.7574970Z if not errorlevel 0 exit /b 2025-08-26T20:45:17.7575242Z ) 2025-08-26T20:45:17.7575367Z 2025-08-26T20:45:17.7575756Z C:\actions-runner\_work\pytorch\pytorch>call C:\Jenkins\Miniconda3\Scripts\activate.bat C:\Jenkins\Miniconda3 2025-08-26T20:45:18.4143786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\functional.py 2025-08-26T20:45:18.4148804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\hub.py 2025-08-26T20:45:18.4153120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\library.py 2025-08-26T20:45:18.4157330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\overrides.py 2025-08-26T20:45:18.4161747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\py.typed 2025-08-26T20:45:18.4169473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quasirandom.py 2025-08-26T20:45:18.4173323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\random.py 2025-08-26T20:45:18.4176620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\return_types.py 2025-08-26T20:45:18.4180292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\return_types.pyi 2025-08-26T20:45:18.4184085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\serialization.py 2025-08-26T20:45:18.4188293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\storage.py 2025-08-26T20:45:18.4192296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\torch_version.py 2025-08-26T20:45:18.4196334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\types.py 2025-08-26T20:45:18.4199813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\version.py 2025-08-26T20:45:18.4203189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_appdirs.py 2025-08-26T20:45:18.4206907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C.cp39-win_amd64.pyd 2025-08-26T20:45:18.4210375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_classes.py 2025-08-26T20:45:18.4213820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_compile.py 2025-08-26T20:45:18.4217274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_custom_ops.py 2025-08-26T20:45:18.4221302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_environment.py 2025-08-26T20:45:18.4225292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_guards.py 2025-08-26T20:45:18.4229347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_jit_internal.py 2025-08-26T20:45:18.4233514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_linalg_utils.py 2025-08-26T20:45:18.4236991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lobpcg.py 2025-08-26T20:45:18.4240764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lowrank.py 2025-08-26T20:45:18.4249024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_meta_registrations.py 2025-08-26T20:45:18.4254157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_namedtensor_internals.py 2025-08-26T20:45:18.4257622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_ops.py 2025-08-26T20:45:18.4261645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_python_dispatcher.py 2025-08-26T20:45:18.4265615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_size_docs.py 2025-08-26T20:45:18.4269518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_sources.py 2025-08-26T20:45:18.4272905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_storage_docs.py 2025-08-26T20:45:18.4276376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_streambase.py 2025-08-26T20:45:18.4279890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_tensor.py 2025-08-26T20:45:18.4283883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_tensor_docs.py 2025-08-26T20:45:18.4288337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_tensor_str.py 2025-08-26T20:45:18.4296897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_thread_safe_fork.py 2025-08-26T20:45:18.4299698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_torch_docs.py 2025-08-26T20:45:18.4306297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_utils.py 2025-08-26T20:45:18.4310321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_utils_internal.py 2025-08-26T20:45:18.4313969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_VF.py 2025-08-26T20:45:18.4317320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_VF.pyi 2025-08-26T20:45:18.4327154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vmap_internals.py 2025-08-26T20:45:18.4331027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_weights_only_unpickler.py 2025-08-26T20:45:18.4334598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__config__.py 2025-08-26T20:45:18.4338167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__future__.py 2025-08-26T20:45:18.4341703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__init__.py 2025-08-26T20:45:18.4354684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\accelerator\memory.py 2025-08-26T20:45:18.4358238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\accelerator\_utils.py 2025-08-26T20:45:18.4361675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\accelerator\__init__.py 2025-08-26T20:45:18.4369789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\accelerator\__pycache__\memory.cpython-39.pyc 2025-08-26T20:45:18.4373693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\accelerator\__pycache__\_utils.cpython-39.pyc 2025-08-26T20:45:18.4377306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\accelerator\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.4389943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\amp\autocast_mode.py 2025-08-26T20:45:18.4393764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\amp\grad_scaler.py 2025-08-26T20:45:18.4397624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\amp\__init__.py 2025-08-26T20:45:18.4410149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\amp\__pycache__\autocast_mode.cpython-39.pyc 2025-08-26T20:45:18.4414511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\amp\__pycache__\grad_scaler.cpython-39.pyc 2025-08-26T20:45:18.4418711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\amp\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.4432324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\__init__.py 2025-08-26T20:45:18.4440583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\__init__.py 2025-08-26T20:45:18.4448313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\__init__.py 2025-08-26T20:45:18.4455032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\modules\fused.py 2025-08-26T20:45:18.4458753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\modules\__init__.py 2025-08-26T20:45:18.4466063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\modules\__pycache__\fused.cpython-39.pyc 2025-08-26T20:45:18.4469758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\modules\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.4477990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\__init__.py 2025-08-26T20:45:18.4484922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\conv_fused.py 2025-08-26T20:45:18.4488728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\linear_fused.py 2025-08-26T20:45:18.4492285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\linear_relu.py 2025-08-26T20:45:18.4495805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\__init__.py 2025-08-26T20:45:18.4508074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\__pycache__\conv_fused.cpython-39.pyc 2025-08-26T20:45:18.4512682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\__pycache__\linear_fused.cpython-39.pyc 2025-08-26T20:45:18.4515796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\__pycache__\linear_relu.cpython-39.pyc 2025-08-26T20:45:18.4524543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.4532434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.4541425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\__init__.py 2025-08-26T20:45:18.4548997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\dynamic\__init__.py 2025-08-26T20:45:18.4555776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\dynamic\modules\linear_relu.py 2025-08-26T20:45:18.4559373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\dynamic\modules\__init__.py 2025-08-26T20:45:18.4566670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\dynamic\modules\__pycache__\linear_relu.cpython-39.pyc 2025-08-26T20:45:18.4570290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\dynamic\modules\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.4577814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\dynamic\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.4586447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\bn_relu.py 2025-08-26T20:45:18.4590022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\conv_add.py 2025-08-26T20:45:18.4593595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\conv_relu.py 2025-08-26T20:45:18.4597378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\linear_relu.py 2025-08-26T20:45:18.4601121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\__init__.py 2025-08-26T20:45:18.4613120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\__pycache__\bn_relu.cpython-39.pyc 2025-08-26T20:45:18.4616714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\__pycache__\conv_add.cpython-39.pyc 2025-08-26T20:45:18.4620504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\__pycache__\conv_relu.cpython-39.pyc 2025-08-26T20:45:18.4628160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\__pycache__\linear_relu.cpython-39.pyc 2025-08-26T20:45:18.4631885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.4639687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.4652541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.4661564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\__init__.py 2025-08-26T20:45:18.4668849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\dynamic\__init__.py 2025-08-26T20:45:18.4675927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\dynamic\modules\linear.py 2025-08-26T20:45:18.4679446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\dynamic\modules\__init__.py 2025-08-26T20:45:18.4686453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\dynamic\modules\__pycache__\linear.cpython-39.pyc 2025-08-26T20:45:18.4690146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\dynamic\modules\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.4698237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\dynamic\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.4706718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\conv.py 2025-08-26T20:45:18.4710567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\embedding_ops.py 2025-08-26T20:45:18.4714036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\linear.py 2025-08-26T20:45:18.4717808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\__init__.py 2025-08-26T20:45:18.4731288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\__pycache__\conv.cpython-39.pyc 2025-08-26T20:45:18.4735382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\__pycache__\embedding_ops.cpython-39.pyc 2025-08-26T20:45:18.4738950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\__pycache__\linear.cpython-39.pyc 2025-08-26T20:45:18.4747741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.4755810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.4765425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\__init__.py 2025-08-26T20:45:18.4772777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\modules\activation.py 2025-08-26T20:45:18.4776532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\modules\rnn.py 2025-08-26T20:45:18.4780086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\modules\__init__.py 2025-08-26T20:45:18.4787974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\modules\__pycache__\activation.cpython-39.pyc 2025-08-26T20:45:18.4791706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\modules\__pycache__\rnn.cpython-39.pyc 2025-08-26T20:45:18.4795465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\modules\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.4808389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.4821941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\functional.py 2025-08-26T20:45:18.4826436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\__init__.py 2025-08-26T20:45:18.4833669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\__init__.py 2025-08-26T20:45:18.4840873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\conv.py 2025-08-26T20:45:18.4844726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\linear.py 2025-08-26T20:45:18.4848144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\rnn.py 2025-08-26T20:45:18.4851909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\__init__.py 2025-08-26T20:45:18.4859316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\__pycache__\conv.cpython-39.pyc 2025-08-26T20:45:18.4863046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\__pycache__\linear.cpython-39.pyc 2025-08-26T20:45:18.4866677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\__pycache__\rnn.cpython-39.pyc 2025-08-26T20:45:18.4874850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.4882554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.4890656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\activation.py 2025-08-26T20:45:18.4894258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\batchnorm.py 2025-08-26T20:45:18.4897670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\conv.py 2025-08-26T20:45:18.4901852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\dropout.py 2025-08-26T20:45:18.4905223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\embedding_ops.py 2025-08-26T20:45:18.4913893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\functional_modules.py 2025-08-26T20:45:18.4917530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\linear.py 2025-08-26T20:45:18.4921411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\normalization.py 2025-08-26T20:45:18.4925600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\rnn.py 2025-08-26T20:45:18.4931120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\utils.py 2025-08-26T20:45:18.4933765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__init__.py 2025-08-26T20:45:18.4942696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\activation.cpython-39.pyc 2025-08-26T20:45:18.4946083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\batchnorm.cpython-39.pyc 2025-08-26T20:45:18.4950064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\conv.cpython-39.pyc 2025-08-26T20:45:18.4966667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\dropout.cpython-39.pyc 2025-08-26T20:45:18.4967882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\embedding_ops.cpython-39.pyc 2025-08-26T20:45:18.4970118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\functional_modules.cpython-39.pyc 2025-08-26T20:45:18.4973875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\linear.cpython-39.pyc 2025-08-26T20:45:18.4977653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\normalization.cpython-39.pyc 2025-08-26T20:45:18.4981286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\rnn.cpython-39.pyc 2025-08-26T20:45:18.4985475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:18.4989238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.5002934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\__init__.py 2025-08-26T20:45:18.5010047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\conv.py 2025-08-26T20:45:18.5013718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\linear.py 2025-08-26T20:45:18.5017240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\rnn.py 2025-08-26T20:45:18.5020876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\sparse.py 2025-08-26T20:45:18.5024458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\utils.py 2025-08-26T20:45:18.5027929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\__init__.py 2025-08-26T20:45:18.5040284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\__pycache__\conv.cpython-39.pyc 2025-08-26T20:45:18.5044373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\__pycache__\linear.cpython-39.pyc 2025-08-26T20:45:18.5048278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\__pycache__\rnn.cpython-39.pyc 2025-08-26T20:45:18.5056289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\__pycache__\sparse.cpython-39.pyc 2025-08-26T20:45:18.5060060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:18.5063698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.5072367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.5080846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\__pycache__\functional.cpython-39.pyc 2025-08-26T20:45:18.5084673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.5094153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\__init__.py 2025-08-26T20:45:18.5117692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\linear.py 2025-08-26T20:45:18.5121113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\utils.py 2025-08-26T20:45:18.5124655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\__init__.py 2025-08-26T20:45:18.5131716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\dynamic\linear.py 2025-08-26T20:45:18.5135146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\dynamic\__init__.py 2025-08-26T20:45:18.5143027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\dynamic\__pycache__\linear.cpython-39.pyc 2025-08-26T20:45:18.5147599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\dynamic\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.5159389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\__pycache__\linear.cpython-39.pyc 2025-08-26T20:45:18.5163499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:18.5167445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.5180076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.5188716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.5197830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\_numeric_suite.py 2025-08-26T20:45:18.5201463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\_numeric_suite_fx.py 2025-08-26T20:45:18.5205152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\__init__.py 2025-08-26T20:45:18.5211397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\graph_matcher.py 2025-08-26T20:45:18.5215079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\graph_passes.py 2025-08-26T20:45:18.5218853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\mappings.py 2025-08-26T20:45:18.5222254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\ns_types.py 2025-08-26T20:45:18.5225798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\n_shadows_utils.py 2025-08-26T20:45:18.5234488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\pattern_utils.py 2025-08-26T20:45:18.5238136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\qconfig_multi_mapping.py 2025-08-26T20:45:18.5241568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\utils.py 2025-08-26T20:45:18.5245332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\weight_utils.py 2025-08-26T20:45:18.5249927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__init__.py 2025-08-26T20:45:18.5255553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\graph_matcher.cpython-39.pyc 2025-08-26T20:45:18.5259202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\graph_passes.cpython-39.pyc 2025-08-26T20:45:18.5262830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\mappings.cpython-39.pyc 2025-08-26T20:45:18.5270628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\ns_types.cpython-39.pyc 2025-08-26T20:45:18.5274232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\n_shadows_utils.cpython-39.pyc 2025-08-26T20:45:18.5278158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\pattern_utils.cpython-39.pyc 2025-08-26T20:45:18.5282137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\qconfig_multi_mapping.cpython-39.pyc 2025-08-26T20:45:18.5285882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:18.5289517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\weight_utils.cpython-39.pyc 2025-08-26T20:45:18.5293125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.5305781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\__pycache__\_numeric_suite.cpython-39.pyc 2025-08-26T20:45:18.5309439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\__pycache__\_numeric_suite_fx.cpython-39.pyc 2025-08-26T20:45:18.5313542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.5326989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_mappings.py 2025-08-26T20:45:18.5330661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\__init__.py 2025-08-26T20:45:18.5337566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\base_scheduler.py 2025-08-26T20:45:18.5341119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\cubic_scheduler.py 2025-08-26T20:45:18.5344712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\lambda_scheduler.py 2025-08-26T20:45:18.5353677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\__init__.py 2025-08-26T20:45:18.5360587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\__pycache__\base_scheduler.cpython-39.pyc 2025-08-26T20:45:18.5364423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\__pycache__\cubic_scheduler.cpython-39.pyc 2025-08-26T20:45:18.5368322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\__pycache__\lambda_scheduler.cpython-39.pyc 2025-08-26T20:45:18.5375983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.5388528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\base_sparsifier.py 2025-08-26T20:45:18.5392839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\nearly_diagonal_sparsifier.py 2025-08-26T20:45:18.5396972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\utils.py 2025-08-26T20:45:18.5404826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\weight_norm_sparsifier.py 2025-08-26T20:45:18.5408634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\__init__.py 2025-08-26T20:45:18.5415382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\__pycache__\base_sparsifier.cpython-39.pyc 2025-08-26T20:45:18.5420373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\__pycache__\nearly_diagonal_sparsifier.cpython-39.pyc 2025-08-26T20:45:18.5423465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:18.5433976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\__pycache__\weight_norm_sparsifier.cpython-39.pyc 2025-08-26T20:45:18.5438856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.5449996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\__init__.py 2025-08-26T20:45:18.5457790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\activation_sparsifier\activation_sparsifier.py 2025-08-26T20:45:18.5462785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\activation_sparsifier\__init__.py 2025-08-26T20:45:18.5476613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\activation_sparsifier\__pycache__\activation_sparsifier.cpython-39.pyc 2025-08-26T20:45:18.5481574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\activation_sparsifier\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.5492149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_scheduler\base_data_scheduler.py 2025-08-26T20:45:18.5496924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_scheduler\__init__.py 2025-08-26T20:45:18.5506006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_scheduler\__pycache__\base_data_scheduler.cpython-39.pyc 2025-08-26T20:45:18.5511303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_scheduler\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.5525121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\base_data_sparsifier.py 2025-08-26T20:45:18.5530542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\data_norm_sparsifier.py 2025-08-26T20:45:18.5535516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\quantization_utils.py 2025-08-26T20:45:18.5545868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\__init__.py 2025-08-26T20:45:18.5556285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\__init__.py 2025-08-26T20:45:18.5564060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\data_sparsity.py 2025-08-26T20:45:18.5569167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\_data_sparstity_utils.py 2025-08-26T20:45:18.5574034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\__init__.py 2025-08-26T20:45:18.5586035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\__pycache__\data_sparsity.cpython-39.pyc 2025-08-26T20:45:18.5589872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\__pycache__\_data_sparstity_utils.cpython-39.pyc 2025-08-26T20:45:18.5593624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.5606693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.5615640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\__pycache__\base_data_sparsifier.cpython-39.pyc 2025-08-26T20:45:18.5619835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\__pycache__\data_norm_sparsifier.cpython-39.pyc 2025-08-26T20:45:18.5623231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\__pycache__\quantization_utils.cpython-39.pyc 2025-08-26T20:45:18.5631304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.5640243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\base_structured_sparsifier.py 2025-08-26T20:45:18.5644302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\FPGM_pruner.py 2025-08-26T20:45:18.5648006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\lstm_saliency_pruner.py 2025-08-26T20:45:18.5655706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\match_utils.py 2025-08-26T20:45:18.5659417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\parametrization.py 2025-08-26T20:45:18.5663108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\prune_functions.py 2025-08-26T20:45:18.5667201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\saliency_pruner.py 2025-08-26T20:45:18.5670802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__init__.py 2025-08-26T20:45:18.5678485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\base_structured_sparsifier.cpython-39.pyc 2025-08-26T20:45:18.5682165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\FPGM_pruner.cpython-39.pyc 2025-08-26T20:45:18.5687176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\lstm_saliency_pruner.cpython-39.pyc 2025-08-26T20:45:18.5693960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\match_utils.cpython-39.pyc 2025-08-26T20:45:18.5698692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\parametrization.cpython-39.pyc 2025-08-26T20:45:18.5701697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\prune_functions.cpython-39.pyc 2025-08-26T20:45:18.5705407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\saliency_pruner.cpython-39.pyc 2025-08-26T20:45:18.5709225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.5717569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.5725678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\__pycache__\_mappings.cpython-39.pyc 2025-08-26T20:45:18.5729317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.5738647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fake_quantize.py 2025-08-26T20:45:18.5742270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fuser_method_mappings.py 2025-08-26T20:45:18.5745922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fuse_modules.py 2025-08-26T20:45:18.5755654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\observer.py 2025-08-26T20:45:18.5759471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\qconfig.py 2025-08-26T20:45:18.5762960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\qconfig_mapping.py 2025-08-26T20:45:18.5766529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantization_mappings.py 2025-08-26T20:45:18.5770023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantize.py 2025-08-26T20:45:18.5773536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantize_fx.py 2025-08-26T20:45:18.5777540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantize_jit.py 2025-08-26T20:45:18.5781150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantize_pt2e.py 2025-08-26T20:45:18.5784862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quant_type.py 2025-08-26T20:45:18.5788819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\stubs.py 2025-08-26T20:45:18.5792267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\utils.py 2025-08-26T20:45:18.5796000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\_correct_bias.py 2025-08-26T20:45:18.5799593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\_equalize.py 2025-08-26T20:45:18.5803441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\_learnable_fake_quantize.py 2025-08-26T20:45:18.5806961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__init__.py 2025-08-26T20:45:18.5814468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\backend_config.py 2025-08-26T20:45:18.5818162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\executorch.py 2025-08-26T20:45:18.5821802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\fbgemm.py 2025-08-26T20:45:18.5825268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\native.py 2025-08-26T20:45:18.5832659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\onednn.py 2025-08-26T20:45:18.5836072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\qnnpack.py 2025-08-26T20:45:18.5839382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\tensorrt.py 2025-08-26T20:45:18.5842907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\utils.py 2025-08-26T20:45:18.5846336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\x86.py 2025-08-26T20:45:18.5850174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\_common_operator_config_utils.py 2025-08-26T20:45:18.5853641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\_qnnpack_pt2e.py 2025-08-26T20:45:18.5857085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__init__.py 2025-08-26T20:45:18.5866169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\backend_config.cpython-39.pyc 2025-08-26T20:45:18.5869934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\executorch.cpython-39.pyc 2025-08-26T20:45:18.5873614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\fbgemm.cpython-39.pyc 2025-08-26T20:45:18.5881514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\native.cpython-39.pyc 2025-08-26T20:45:18.5885281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\onednn.cpython-39.pyc 2025-08-26T20:45:18.5888945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\qnnpack.cpython-39.pyc 2025-08-26T20:45:18.5892541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\tensorrt.cpython-39.pyc 2025-08-26T20:45:18.5896145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:18.5899685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\x86.cpython-39.pyc 2025-08-26T20:45:18.5903479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\_common_operator_config_utils.cpython-39.pyc 2025-08-26T20:45:18.5908170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\_qnnpack_pt2e.cpython-39.pyc 2025-08-26T20:45:18.5912153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.5920299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\convert.py 2025-08-26T20:45:18.5924038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\custom_config.py 2025-08-26T20:45:18.5927528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\fuse.py 2025-08-26T20:45:18.5930921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\fuse_handler.py 2025-08-26T20:45:18.5934445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\graph_module.py 2025-08-26T20:45:18.5944367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\lower_to_fbgemm.py 2025-08-26T20:45:18.5947817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\lower_to_qnnpack.py 2025-08-26T20:45:18.5952637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\lstm_utils.py 2025-08-26T20:45:18.5956102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\match_utils.py 2025-08-26T20:45:18.5959630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\pattern_utils.py 2025-08-26T20:45:18.5963172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\prepare.py 2025-08-26T20:45:18.5967046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\qconfig_mapping_utils.py 2025-08-26T20:45:18.5970787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\quantize_handler.py 2025-08-26T20:45:18.5974298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\tracer.py 2025-08-26T20:45:18.5977734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\utils.py 2025-08-26T20:45:18.5981415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_decomposed.py 2025-08-26T20:45:18.5985471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_equalize.py 2025-08-26T20:45:18.5989280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_lower_to_native_backend.py 2025-08-26T20:45:18.5993694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__init__.py 2025-08-26T20:45:18.6000714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\detector.py 2025-08-26T20:45:18.6005104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\model_report.py 2025-08-26T20:45:18.6008693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\model_report_observer.py 2025-08-26T20:45:18.6016624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\model_report_visualizer.py 2025-08-26T20:45:18.6020419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\__init__.py 2025-08-26T20:45:18.6027124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\__pycache__\detector.cpython-39.pyc 2025-08-26T20:45:18.6031438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\__pycache__\model_report.cpython-39.pyc 2025-08-26T20:45:18.6035228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\__pycache__\model_report_observer.cpython-39.pyc 2025-08-26T20:45:18.6043184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\__pycache__\model_report_visualizer.cpython-39.pyc 2025-08-26T20:45:18.6047174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.6055520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\convert.cpython-39.pyc 2025-08-26T20:45:18.6059226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\custom_config.cpython-39.pyc 2025-08-26T20:45:18.6062828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\fuse.cpython-39.pyc 2025-08-26T20:45:18.6071804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\fuse_handler.cpython-39.pyc 2025-08-26T20:45:18.6075383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\graph_module.cpython-39.pyc 2025-08-26T20:45:18.6078965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\lower_to_fbgemm.cpython-39.pyc 2025-08-26T20:45:18.6082652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\lower_to_qnnpack.cpython-39.pyc 2025-08-26T20:45:18.6086519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\lstm_utils.cpython-39.pyc 2025-08-26T20:45:18.6090475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\match_utils.cpython-39.pyc 2025-08-26T20:45:18.6093917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\pattern_utils.cpython-39.pyc 2025-08-26T20:45:18.6097553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\prepare.cpython-39.pyc 2025-08-26T20:45:18.6101642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\qconfig_mapping_utils.cpython-39.pyc 2025-08-26T20:45:18.6105431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\quantize_handler.cpython-39.pyc 2025-08-26T20:45:18.6109138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\tracer.cpython-39.pyc 2025-08-26T20:45:18.6116263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:18.6120248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\_decomposed.cpython-39.pyc 2025-08-26T20:45:18.6124741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\_equalize.cpython-39.pyc 2025-08-26T20:45:18.6133405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\_lower_to_native_backend.cpython-39.pyc 2025-08-26T20:45:18.6137634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.6146586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\duplicate_dq_pass.py 2025-08-26T20:45:18.6150518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\export_utils.py 2025-08-26T20:45:18.6154225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\graph_utils.py 2025-08-26T20:45:18.6157803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\lowering.py 2025-08-26T20:45:18.6165935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\port_metadata_pass.py 2025-08-26T20:45:18.6169479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\prepare.py 2025-08-26T20:45:18.6173097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\qat_utils.py 2025-08-26T20:45:18.6176862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\utils.py 2025-08-26T20:45:18.6180701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\_affine_quantization.py 2025-08-26T20:45:18.6184745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\_numeric_debugger.py 2025-08-26T20:45:18.6188398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__init__.py 2025-08-26T20:45:18.6194846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\representation\rewrite.py 2025-08-26T20:45:18.6198498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\representation\__init__.py 2025-08-26T20:45:18.6206125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\representation\__pycache__\rewrite.cpython-39.pyc 2025-08-26T20:45:18.6209668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\representation\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.6217681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\duplicate_dq_pass.cpython-39.pyc 2025-08-26T20:45:18.6221516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\export_utils.cpython-39.pyc 2025-08-26T20:45:18.6225206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\graph_utils.cpython-39.pyc 2025-08-26T20:45:18.6232641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\lowering.cpython-39.pyc 2025-08-26T20:45:18.6236327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\port_metadata_pass.cpython-39.pyc 2025-08-26T20:45:18.6239756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\prepare.cpython-39.pyc 2025-08-26T20:45:18.6243382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\qat_utils.cpython-39.pyc 2025-08-26T20:45:18.6247177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:18.6271562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\_affine_quantization.cpython-39.pyc 2025-08-26T20:45:18.6275337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\_numeric_debugger.cpython-39.pyc 2025-08-26T20:45:18.6279000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.6287293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\composable_quantizer.py 2025-08-26T20:45:18.6290915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\embedding_quantizer.py 2025-08-26T20:45:18.6294446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\quantizer.py 2025-08-26T20:45:18.6303855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\utils.py 2025-08-26T20:45:18.6307466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\x86_inductor_quantizer.py 2025-08-26T20:45:18.6311554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\xnnpack_quantizer.py 2025-08-26T20:45:18.6315483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\xnnpack_quantizer_utils.py 2025-08-26T20:45:18.6319215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\xpu_inductor_quantizer.py 2025-08-26T20:45:18.6322769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__init__.py 2025-08-26T20:45:18.6330219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\composable_quantizer.cpython-39.pyc 2025-08-26T20:45:18.6334096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\embedding_quantizer.cpython-39.pyc 2025-08-26T20:45:18.6337740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\quantizer.cpython-39.pyc 2025-08-26T20:45:18.6345162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:18.6348825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\x86_inductor_quantizer.cpython-39.pyc 2025-08-26T20:45:18.6352529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\xnnpack_quantizer.cpython-39.pyc 2025-08-26T20:45:18.6356366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\xnnpack_quantizer_utils.cpython-39.pyc 2025-08-26T20:45:18.6360211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\xpu_inductor_quantizer.cpython-39.pyc 2025-08-26T20:45:18.6364201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.6378068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\fake_quantize.cpython-39.pyc 2025-08-26T20:45:18.6381715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\fuser_method_mappings.cpython-39.pyc 2025-08-26T20:45:18.6385865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\fuse_modules.cpython-39.pyc 2025-08-26T20:45:18.6392766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\observer.cpython-39.pyc 2025-08-26T20:45:18.6396933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\qconfig.cpython-39.pyc 2025-08-26T20:45:18.6400787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\qconfig_mapping.cpython-39.pyc 2025-08-26T20:45:18.6404369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\quantization_mappings.cpython-39.pyc 2025-08-26T20:45:18.6407860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\quantize.cpython-39.pyc 2025-08-26T20:45:18.6411639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\quantize_fx.cpython-39.pyc 2025-08-26T20:45:18.6415407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\quantize_jit.cpython-39.pyc 2025-08-26T20:45:18.6419096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\quantize_pt2e.cpython-39.pyc 2025-08-26T20:45:18.6423037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\quant_type.cpython-39.pyc 2025-08-26T20:45:18.6426852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\stubs.cpython-39.pyc 2025-08-26T20:45:18.6430535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:18.6434239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\_correct_bias.cpython-39.pyc 2025-08-26T20:45:18.6437860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\_equalize.cpython-39.pyc 2025-08-26T20:45:18.6441543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\_learnable_fake_quantize.cpython-39.pyc 2025-08-26T20:45:18.6449126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.6462509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.6471904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\anomaly_mode.py 2025-08-26T20:45:18.6475260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\forward_ad.py 2025-08-26T20:45:18.6478782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\function.py 2025-08-26T20:45:18.6482451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\functional.py 2025-08-26T20:45:18.6490606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\gradcheck.py 2025-08-26T20:45:18.6494722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\grad_mode.py 2025-08-26T20:45:18.6498601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\graph.py 2025-08-26T20:45:18.6502191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\profiler.py 2025-08-26T20:45:18.6506134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\profiler_legacy.py 2025-08-26T20:45:18.6509797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\profiler_util.py 2025-08-26T20:45:18.6513566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\variable.py 2025-08-26T20:45:18.6517175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__init__.py 2025-08-26T20:45:18.6524768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\_functions\tensor.py 2025-08-26T20:45:18.6528285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\_functions\utils.py 2025-08-26T20:45:18.6531828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\_functions\__init__.py 2025-08-26T20:45:18.6538940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\_functions\__pycache__\tensor.cpython-39.pyc 2025-08-26T20:45:18.6543248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\_functions\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:18.6547611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\_functions\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.6561064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\anomaly_mode.cpython-39.pyc 2025-08-26T20:45:18.6564638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\forward_ad.cpython-39.pyc 2025-08-26T20:45:18.6568434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\function.cpython-39.pyc 2025-08-26T20:45:18.6575941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\functional.cpython-39.pyc 2025-08-26T20:45:18.6579785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\gradcheck.cpython-39.pyc 2025-08-26T20:45:18.6583648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\grad_mode.cpython-39.pyc 2025-08-26T20:45:18.6587496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\graph.cpython-39.pyc 2025-08-26T20:45:18.6591294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\profiler.cpython-39.pyc 2025-08-26T20:45:18.6595070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\profiler_legacy.cpython-39.pyc 2025-08-26T20:45:18.6598929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\profiler_util.cpython-39.pyc 2025-08-26T20:45:18.6602589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\variable.cpython-39.pyc 2025-08-26T20:45:18.6606715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.6616745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\__init__.py 2025-08-26T20:45:18.6624404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cpu\__init__.py 2025-08-26T20:45:18.6632097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cpu\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.6639833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cuda\__init__.py 2025-08-26T20:45:18.6646933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cuda\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.6654328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cudnn\rnn.py 2025-08-26T20:45:18.6657870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cudnn\__init__.py 2025-08-26T20:45:18.6664963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cudnn\__pycache__\rnn.cpython-39.pyc 2025-08-26T20:45:18.6668614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cudnn\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.6676196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cusparselt\__init__.py 2025-08-26T20:45:18.6683269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cusparselt\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.6694526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\kleidiai\__init__.py 2025-08-26T20:45:18.6701503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\kleidiai\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.6709633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mha\__init__.py 2025-08-26T20:45:18.6716870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mha\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.6724159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\miopen\__init__.py 2025-08-26T20:45:18.6731404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\miopen\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.6738924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mkl\__init__.py 2025-08-26T20:45:18.6745956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mkl\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.6753217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mkldnn\__init__.py 2025-08-26T20:45:18.6760113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mkldnn\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.6767320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mps\__init__.py 2025-08-26T20:45:18.6774403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mps\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.6781781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\nnpack\__init__.py 2025-08-26T20:45:18.6790036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\nnpack\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.6797810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\openmp\__init__.py 2025-08-26T20:45:18.6804891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\openmp\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.6813177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\opt_einsum\__init__.py 2025-08-26T20:45:18.6820314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\opt_einsum\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.6827908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\quantized\__init__.py 2025-08-26T20:45:18.6834833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\quantized\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.6842483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\xeon\run_cpu.py 2025-08-26T20:45:18.6846103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\xeon\__init__.py 2025-08-26T20:45:18.6852167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\xeon\__pycache__\run_cpu.cpython-39.pyc 2025-08-26T20:45:18.6855854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\xeon\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.6863495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\xnnpack\__init__.py 2025-08-26T20:45:18.6871164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\xnnpack\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.6878538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_coreml\preprocess.py 2025-08-26T20:45:18.6881958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_coreml\__init__.py 2025-08-26T20:45:18.6888215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_coreml\__pycache__\preprocess.cpython-39.pyc 2025-08-26T20:45:18.6891855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_coreml\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.6899223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_nnapi\prepare.py 2025-08-26T20:45:18.6902839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_nnapi\serializer.py 2025-08-26T20:45:18.6907059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_nnapi\__init__.py 2025-08-26T20:45:18.6913192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_nnapi\__pycache__\prepare.cpython-39.pyc 2025-08-26T20:45:18.6917062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_nnapi\__pycache__\serializer.cpython-39.pyc 2025-08-26T20:45:18.6922051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_nnapi\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.6935434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.6943562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\FileStoreTest.exe 2025-08-26T20:45:18.6949286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\protoc.exe 2025-08-26T20:45:18.6968448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\TCPStoreTest.exe 2025-08-26T20:45:18.6975338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\test_api.exe 2025-08-26T20:45:18.7028996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\test_jit.exe 2025-08-26T20:45:18.7066888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\test_lazy.exe 2025-08-26T20:45:18.7084746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\test_nativert.exe 2025-08-26T20:45:18.7105140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\compiler\config.py 2025-08-26T20:45:18.7109069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\compiler\_cache.py 2025-08-26T20:45:18.7112482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\compiler\__init__.py 2025-08-26T20:45:18.7120024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\compiler\__pycache__\config.cpython-39.pyc 2025-08-26T20:45:18.7123807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\compiler\__pycache__\_cache.cpython-39.pyc 2025-08-26T20:45:18.7127535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\compiler\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.7140973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\contrib\_tensorboard_vis.py 2025-08-26T20:45:18.7144485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\contrib\__init__.py 2025-08-26T20:45:18.7151505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\contrib\__pycache__\_tensorboard_vis.cpython-39.pyc 2025-08-26T20:45:18.7155617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\contrib\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.7163615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\__init__.py 2025-08-26T20:45:18.7170361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\amp\autocast_mode.py 2025-08-26T20:45:18.7174244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\amp\grad_scaler.py 2025-08-26T20:45:18.7177742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\amp\__init__.py 2025-08-26T20:45:18.7190531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\amp\__pycache__\autocast_mode.cpython-39.pyc 2025-08-26T20:45:18.7194154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\amp\__pycache__\grad_scaler.cpython-39.pyc 2025-08-26T20:45:18.7197679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\amp\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.7210528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.7226337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\csrc\inductor\aoti_runtime\model.h 2025-08-26T20:45:18.7235958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\comm.py 2025-08-26T20:45:18.7239422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\gds.py 2025-08-26T20:45:18.7242689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\graphs.py 2025-08-26T20:45:18.7246067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\jiterator.py 2025-08-26T20:45:18.7249411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\memory.py 2025-08-26T20:45:18.7253371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\nccl.py 2025-08-26T20:45:18.7261387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\nvtx.py 2025-08-26T20:45:18.7265278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\profiler.py 2025-08-26T20:45:18.7268503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\random.py 2025-08-26T20:45:18.7271826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\sparse.py 2025-08-26T20:45:18.7275168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\streams.py 2025-08-26T20:45:18.7278462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\tunable.py 2025-08-26T20:45:18.7281912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\_gpu_trace.py 2025-08-26T20:45:18.7285482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\_memory_viz.py 2025-08-26T20:45:18.7289172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\_pin_memory_utils.py 2025-08-26T20:45:18.7292657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\_sanitizer.py 2025-08-26T20:45:18.7296309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\_utils.py 2025-08-26T20:45:18.7299970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__init__.py 2025-08-26T20:45:18.7307482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\autocast_mode.py 2025-08-26T20:45:18.7310900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\common.py 2025-08-26T20:45:18.7314262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\grad_scaler.py 2025-08-26T20:45:18.7317656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\__init__.py 2025-08-26T20:45:18.7329988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\__pycache__\autocast_mode.cpython-39.pyc 2025-08-26T20:45:18.7333856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\__pycache__\common.cpython-39.pyc 2025-08-26T20:45:18.7337739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\__pycache__\grad_scaler.cpython-39.pyc 2025-08-26T20:45:18.7345972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.7354823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\comm.cpython-39.pyc 2025-08-26T20:45:18.7358451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\gds.cpython-39.pyc 2025-08-26T20:45:18.7362007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\graphs.cpython-39.pyc 2025-08-26T20:45:18.7369683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\jiterator.cpython-39.pyc 2025-08-26T20:45:18.7373368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\memory.cpython-39.pyc 2025-08-26T20:45:18.7377527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\nccl.cpython-39.pyc 2025-08-26T20:45:18.7381164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\nvtx.cpython-39.pyc 2025-08-26T20:45:18.7384721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\profiler.cpython-39.pyc 2025-08-26T20:45:18.7388285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\random.cpython-39.pyc 2025-08-26T20:45:18.7391746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\sparse.cpython-39.pyc 2025-08-26T20:45:18.7395250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\streams.cpython-39.pyc 2025-08-26T20:45:18.7399182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\tunable.cpython-39.pyc 2025-08-26T20:45:18.7403016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\_gpu_trace.cpython-39.pyc 2025-08-26T20:45:18.7414206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\_memory_viz.cpython-39.pyc 2025-08-26T20:45:18.7414902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\_pin_memory_utils.cpython-39.pyc 2025-08-26T20:45:18.7415584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\_sanitizer.cpython-39.pyc 2025-08-26T20:45:18.7417817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\_utils.cpython-39.pyc 2025-08-26T20:45:18.7426748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.7439435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\argparse_util.py 2025-08-26T20:45:18.7444751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\c10d_logger.py 2025-08-26T20:45:18.7449541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\collective_utils.py 2025-08-26T20:45:18.7459126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\constants.py 2025-08-26T20:45:18.7462565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\device_mesh.py 2025-08-26T20:45:18.7494485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\distributed_c10d.py 2025-08-26T20:45:18.7499532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\launch.py 2025-08-26T20:45:18.7503516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\logging_handlers.py 2025-08-26T20:45:18.7507173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\remote_device.py 2025-08-26T20:45:18.7510922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rendezvous.py 2025-08-26T20:45:18.7514733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\run.py 2025-08-26T20:45:18.7518481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\utils.py 2025-08-26T20:45:18.7522754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_checkpointable.py 2025-08-26T20:45:18.7526129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable_state.py 2025-08-26T20:45:18.7529674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_dist2.py 2025-08-26T20:45:18.7533491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_functional_collectives.py 2025-08-26T20:45:18.7537746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_functional_collectives_impl.py 2025-08-26T20:45:18.7541421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_serialization.py 2025-08-26T20:45:18.7545857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_state_dict_utils.py 2025-08-26T20:45:18.7549824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__init__.py 2025-08-26T20:45:18.7562944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\join.py 2025-08-26T20:45:18.7566676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\__init__.py 2025-08-26T20:45:18.7574200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\ddp_zero_hook.py 2025-08-26T20:45:18.7577948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\debugging_hooks.py 2025-08-26T20:45:18.7581913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\default_hooks.py 2025-08-26T20:45:18.7590843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\mixed_precision_hooks.py 2025-08-26T20:45:18.7594683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\optimizer_overlap_hooks.py 2025-08-26T20:45:18.7598347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\post_localSGD_hook.py 2025-08-26T20:45:18.7602227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\powerSGD_hook.py 2025-08-26T20:45:18.7606364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\quantization_hooks.py 2025-08-26T20:45:18.7610030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__init__.py 2025-08-26T20:45:18.7617930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\ddp_zero_hook.cpython-39.pyc 2025-08-26T20:45:18.7621713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\debugging_hooks.cpython-39.pyc 2025-08-26T20:45:18.7625641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\default_hooks.cpython-39.pyc 2025-08-26T20:45:18.7633739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\mixed_precision_hooks.cpython-39.pyc 2025-08-26T20:45:18.7637544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\optimizer_overlap_hooks.cpython-39.pyc 2025-08-26T20:45:18.7641324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\post_localSGD_hook.cpython-39.pyc 2025-08-26T20:45:18.7645524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\powerSGD_hook.cpython-39.pyc 2025-08-26T20:45:18.7648795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\quantization_hooks.cpython-39.pyc 2025-08-26T20:45:18.7652357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.7665063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\averagers.py 2025-08-26T20:45:18.7668671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\hierarchical_model_averager.py 2025-08-26T20:45:18.7672599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\utils.py 2025-08-26T20:45:18.7680562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\__init__.py 2025-08-26T20:45:18.7686973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\__pycache__\averagers.cpython-39.pyc 2025-08-26T20:45:18.7691291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\__pycache__\hierarchical_model_averager.cpython-39.pyc 2025-08-26T20:45:18.7694792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:18.7704239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.7711997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_checkpoint\checkpoint_wrapper.py 2025-08-26T20:45:18.7715567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_checkpoint\__init__.py 2025-08-26T20:45:18.7722381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_checkpoint\__pycache__\checkpoint_wrapper.cpython-39.pyc 2025-08-26T20:45:18.7726146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_checkpoint\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.7733808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_comm_hooks\default_hooks.py 2025-08-26T20:45:18.7737238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_comm_hooks\__init__.py 2025-08-26T20:45:18.7744361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_comm_hooks\__pycache__\default_hooks.cpython-39.pyc 2025-08-26T20:45:18.7748373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_comm_hooks\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.7756563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_optimizer_overlap\optimizer_overlap.py 2025-08-26T20:45:18.7759875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_optimizer_overlap\__init__.py 2025-08-26T20:45:18.7766954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_optimizer_overlap\__pycache__\optimizer_overlap.cpython-39.pyc 2025-08-26T20:45:18.7771609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_optimizer_overlap\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.7780517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_quantization\quantization.py 2025-08-26T20:45:18.7784107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_quantization\__init__.py 2025-08-26T20:45:18.7790660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_quantization\__pycache__\quantization.cpython-39.pyc 2025-08-26T20:45:18.7794364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_quantization\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.7801947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\__pycache__\join.cpython-39.pyc 2025-08-26T20:45:18.7806060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.7813901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\autograd\__init__.py 2025-08-26T20:45:18.7821184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\autograd\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.7829404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\api.py 2025-08-26T20:45:18.7832881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\default_planner.py 2025-08-26T20:45:18.7836669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\filesystem.py 2025-08-26T20:45:18.7840514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\format_utils.py 2025-08-26T20:45:18.7849271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\hf_storage.py 2025-08-26T20:45:18.7852777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\logger.py 2025-08-26T20:45:18.7856358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\logging_handlers.py 2025-08-26T20:45:18.7860101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\metadata.py 2025-08-26T20:45:18.7863522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\optimizer.py 2025-08-26T20:45:18.7868257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\planner.py 2025-08-26T20:45:18.7871921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\planner_helpers.py 2025-08-26T20:45:18.7875431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\resharding.py 2025-08-26T20:45:18.7879516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\staging.py 2025-08-26T20:45:18.7883022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\stateful.py 2025-08-26T20:45:18.7886428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\state_dict.py 2025-08-26T20:45:18.7890516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\state_dict_loader.py 2025-08-26T20:45:18.7894438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\state_dict_saver.py 2025-08-26T20:45:18.7897990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\storage.py 2025-08-26T20:45:18.7901723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\utils.py 2025-08-26T20:45:18.7905226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_async_executor.py 2025-08-26T20:45:18.7908986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_async_process_executor.py 2025-08-26T20:45:18.7912617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_async_thread_executor.py 2025-08-26T20:45:18.7916222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_checkpointer.py 2025-08-26T20:45:18.7925721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_consolidate_hf_safetensors.py 2025-08-26T20:45:18.7929541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_dedup_save_plans.py 2025-08-26T20:45:18.7933117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_dedup_tensors.py 2025-08-26T20:45:18.7936770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_extension.py 2025-08-26T20:45:18.7940246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_fsspec_filesystem.py 2025-08-26T20:45:18.7943951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_hf_utils.py 2025-08-26T20:45:18.7947546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_nested_dict.py 2025-08-26T20:45:18.7951147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_pg_transport.py 2025-08-26T20:45:18.7954992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_sharded_tensor_utils.py 2025-08-26T20:45:18.7964211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_state_dict_stager.py 2025-08-26T20:45:18.7968659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_storage_utils.py 2025-08-26T20:45:18.7972951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_traverse.py 2025-08-26T20:45:18.7976599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_version.py 2025-08-26T20:45:18.7980029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__init__.py 2025-08-26T20:45:18.7988410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\barriers.py 2025-08-26T20:45:18.7991919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\builder.py 2025-08-26T20:45:18.7995526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\checkpointer.py 2025-08-26T20:45:18.8000052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\checkpoint_process.py 2025-08-26T20:45:18.8008603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\checkpoint_reader.py 2025-08-26T20:45:18.8012231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\checkpoint_writer.py 2025-08-26T20:45:18.8015728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\config.py 2025-08-26T20:45:18.8019331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\staging.py 2025-08-26T20:45:18.8023047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\types.py 2025-08-26T20:45:18.8026297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\utils.py 2025-08-26T20:45:18.8030408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__init__.py 2025-08-26T20:45:18.8038706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\barriers.cpython-39.pyc 2025-08-26T20:45:18.8042673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\builder.cpython-39.pyc 2025-08-26T20:45:18.8046480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\checkpointer.cpython-39.pyc 2025-08-26T20:45:18.8056676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\checkpoint_process.cpython-39.pyc 2025-08-26T20:45:18.8059808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\checkpoint_reader.cpython-39.pyc 2025-08-26T20:45:18.8063654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\checkpoint_writer.cpython-39.pyc 2025-08-26T20:45:18.8067300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\config.cpython-39.pyc 2025-08-26T20:45:18.8071746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\staging.cpython-39.pyc 2025-08-26T20:45:18.8075443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\types.cpython-39.pyc 2025-08-26T20:45:18.8079620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:18.8082822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.8091967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\api.cpython-39.pyc 2025-08-26T20:45:18.8095611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\default_planner.cpython-39.pyc 2025-08-26T20:45:18.8099550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\filesystem.cpython-39.pyc 2025-08-26T20:45:18.8109499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\format_utils.cpython-39.pyc 2025-08-26T20:45:18.8113001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\hf_storage.cpython-39.pyc 2025-08-26T20:45:18.8117108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\logger.cpython-39.pyc 2025-08-26T20:45:18.8120725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\logging_handlers.cpython-39.pyc 2025-08-26T20:45:18.8125391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\metadata.cpython-39.pyc 2025-08-26T20:45:18.8128396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\optimizer.cpython-39.pyc 2025-08-26T20:45:18.8132060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\planner.cpython-39.pyc 2025-08-26T20:45:18.8137285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\planner_helpers.cpython-39.pyc 2025-08-26T20:45:18.8139890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\resharding.cpython-39.pyc 2025-08-26T20:45:18.8143809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\staging.cpython-39.pyc 2025-08-26T20:45:18.8147429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\stateful.cpython-39.pyc 2025-08-26T20:45:18.8151453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\state_dict.cpython-39.pyc 2025-08-26T20:45:18.8155487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\state_dict_loader.cpython-39.pyc 2025-08-26T20:45:18.8159139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\state_dict_saver.cpython-39.pyc 2025-08-26T20:45:18.8168284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\storage.cpython-39.pyc 2025-08-26T20:45:18.8171890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:18.8175539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_async_executor.cpython-39.pyc 2025-08-26T20:45:18.8179519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_async_process_executor.cpython-39.pyc 2025-08-26T20:45:18.8183157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_async_thread_executor.cpython-39.pyc 2025-08-26T20:45:18.8186889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_checkpointer.cpython-39.pyc 2025-08-26T20:45:18.8197164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_consolidate_hf_safetensors.cpython-39.pyc 2025-08-26T20:45:18.8198367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_dedup_save_plans.cpython-39.pyc 2025-08-26T20:45:18.8206752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_dedup_tensors.cpython-39.pyc 2025-08-26T20:45:18.8210414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_extension.cpython-39.pyc 2025-08-26T20:45:18.8214114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_fsspec_filesystem.cpython-39.pyc 2025-08-26T20:45:18.8217654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_hf_utils.cpython-39.pyc 2025-08-26T20:45:18.8221358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_nested_dict.cpython-39.pyc 2025-08-26T20:45:18.8225289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_pg_transport.cpython-39.pyc 2025-08-26T20:45:18.8229148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_sharded_tensor_utils.cpython-39.pyc 2025-08-26T20:45:18.8232655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_state_dict_stager.cpython-39.pyc 2025-08-26T20:45:18.8243112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_storage_utils.cpython-39.pyc 2025-08-26T20:45:18.8246872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_traverse.cpython-39.pyc 2025-08-26T20:45:18.8250455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_version.cpython-39.pyc 2025-08-26T20:45:18.8254119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.8264613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\control_plane.py 2025-08-26T20:45:18.8268460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\__init__.py 2025-08-26T20:45:18.8275620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\__init__.py 2025-08-26T20:45:18.8281578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\api.py 2025-08-26T20:45:18.8285289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\health_check_server.py 2025-08-26T20:45:18.8288818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\local_elastic_agent.py 2025-08-26T20:45:18.8292519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\__init__.py 2025-08-26T20:45:18.8306790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\__pycache__\api.cpython-39.pyc 2025-08-26T20:45:18.8311234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\__pycache__\health_check_server.cpython-39.pyc 2025-08-26T20:45:18.8314919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\__pycache__\local_elastic_agent.cpython-39.pyc 2025-08-26T20:45:18.8325474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.8334126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.8342004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\events\api.py 2025-08-26T20:45:18.8345426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\events\handlers.py 2025-08-26T20:45:18.8348778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\events\__init__.py 2025-08-26T20:45:18.8357270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\events\__pycache__\api.cpython-39.pyc 2025-08-26T20:45:18.8361260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\events\__pycache__\handlers.cpython-39.pyc 2025-08-26T20:45:18.8364849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\events\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.8380606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\metrics\api.py 2025-08-26T20:45:18.8384735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\metrics\__init__.py 2025-08-26T20:45:18.8391814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\metrics\__pycache__\api.cpython-39.pyc 2025-08-26T20:45:18.8395676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\metrics\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.8410367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\api.py 2025-08-26T20:45:18.8414306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\redirects.py 2025-08-26T20:45:18.8418165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\tail_log.py 2025-08-26T20:45:18.8421730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\__init__.py 2025-08-26T20:45:18.8436378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\errors\error_handler.py 2025-08-26T20:45:18.8439704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\errors\handlers.py 2025-08-26T20:45:18.8443188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\errors\__init__.py 2025-08-26T20:45:18.8450327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\errors\__pycache__\error_handler.cpython-39.pyc 2025-08-26T20:45:18.8453908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\errors\__pycache__\handlers.cpython-39.pyc 2025-08-26T20:45:18.8457398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\errors\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.8472687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\subprocess_handler\handlers.py 2025-08-26T20:45:18.8476383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\subprocess_handler\subprocess_handler.py 2025-08-26T20:45:18.8479807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\subprocess_handler\__init__.py 2025-08-26T20:45:18.8494944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\subprocess_handler\__pycache__\handlers.cpython-39.pyc 2025-08-26T20:45:18.8498644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\subprocess_handler\__pycache__\subprocess_handler.cpython-39.pyc 2025-08-26T20:45:18.8502375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\subprocess_handler\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.8517977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\__pycache__\api.cpython-39.pyc 2025-08-26T20:45:18.8521700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\__pycache__\redirects.cpython-39.pyc 2025-08-26T20:45:18.8525461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\__pycache__\tail_log.cpython-39.pyc 2025-08-26T20:45:18.8536938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.8544784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\api.py 2025-08-26T20:45:18.8548363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\c10d_rendezvous_backend.py 2025-08-26T20:45:18.8552098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\dynamic_rendezvous.py 2025-08-26T20:45:18.8563813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\etcd_rendezvous.py 2025-08-26T20:45:18.8568167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\etcd_rendezvous_backend.py 2025-08-26T20:45:18.8571802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\etcd_server.py 2025-08-26T20:45:18.8575294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\etcd_store.py 2025-08-26T20:45:18.8579363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\registry.py 2025-08-26T20:45:18.8584030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\static_tcp_rendezvous.py 2025-08-26T20:45:18.8587536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\utils.py 2025-08-26T20:45:18.8591260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\_etcd_stub.py 2025-08-26T20:45:18.8595164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__init__.py 2025-08-26T20:45:18.8603023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\api.cpython-39.pyc 2025-08-26T20:45:18.8606947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\c10d_rendezvous_backend.cpython-39.pyc 2025-08-26T20:45:18.8610570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\dynamic_rendezvous.cpython-39.pyc 2025-08-26T20:45:18.8623477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\etcd_rendezvous.cpython-39.pyc 2025-08-26T20:45:18.8627294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\etcd_rendezvous_backend.cpython-39.pyc 2025-08-26T20:45:18.8631204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\etcd_server.cpython-39.pyc 2025-08-26T20:45:18.8666810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\etcd_store.cpython-39.pyc 2025-08-26T20:45:18.8670537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\registry.cpython-39.pyc 2025-08-26T20:45:18.8674440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\static_tcp_rendezvous.cpython-39.pyc 2025-08-26T20:45:18.8678495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:18.8682128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\_etcd_stub.cpython-39.pyc 2025-08-26T20:45:18.8685802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.8693867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\api.py 2025-08-26T20:45:18.8697302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\debug_info_logging.py 2025-08-26T20:45:18.8700901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\file_based_local_timer.py 2025-08-26T20:45:18.8704852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\local_timer.py 2025-08-26T20:45:18.8713252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\__init__.py 2025-08-26T20:45:18.8720384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\__pycache__\api.cpython-39.pyc 2025-08-26T20:45:18.8724093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\__pycache__\debug_info_logging.cpython-39.pyc 2025-08-26T20:45:18.8727970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\__pycache__\file_based_local_timer.cpython-39.pyc 2025-08-26T20:45:18.8740490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\__pycache__\local_timer.cpython-39.pyc 2025-08-26T20:45:18.8744035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.8752060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\api.py 2025-08-26T20:45:18.8755448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\distributed.py 2025-08-26T20:45:18.8758765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\logging.py 2025-08-26T20:45:18.8762120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\log_level.py 2025-08-26T20:45:18.8765686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\store.py 2025-08-26T20:45:18.8777759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\__init__.py 2025-08-26T20:45:18.8784644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\data\cycling_iterator.py 2025-08-26T20:45:18.8788334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\data\elastic_distributed_sampler.py 2025-08-26T20:45:18.8792553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\data\__init__.py 2025-08-26T20:45:18.8807739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\data\__pycache__\cycling_iterator.cpython-39.pyc 2025-08-26T20:45:18.8812403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\data\__pycache__\elastic_distributed_sampler.cpython-39.pyc 2025-08-26T20:45:18.8816324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\data\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.8833110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\__pycache__\api.cpython-39.pyc 2025-08-26T20:45:18.8836497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\__pycache__\distributed.cpython-39.pyc 2025-08-26T20:45:18.8840498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\__pycache__\logging.cpython-39.pyc 2025-08-26T20:45:18.8852647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\__pycache__\log_level.cpython-39.pyc 2025-08-26T20:45:18.8856421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\__pycache__\store.cpython-39.pyc 2025-08-26T20:45:18.8860108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.8868383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\__pycache__\control_plane.cpython-39.pyc 2025-08-26T20:45:18.8872955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.8881023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\api.py 2025-08-26T20:45:18.8884796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\fully_sharded_data_parallel.py 2025-08-26T20:45:18.8889626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\sharded_grad_scaler.py 2025-08-26T20:45:18.8893209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\wrap.py 2025-08-26T20:45:18.8896908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_common_utils.py 2025-08-26T20:45:18.8909221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_debug_utils.py 2025-08-26T20:45:18.8913411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_dynamo_utils.py 2025-08-26T20:45:18.8916984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_exec_order_utils.py 2025-08-26T20:45:18.8921125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_flat_param.py 2025-08-26T20:45:18.8925696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fsdp_extensions.py 2025-08-26T20:45:18.8929217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_init_utils.py 2025-08-26T20:45:18.8933507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_limiter_utils.py 2025-08-26T20:45:18.8937146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_optim_utils.py 2025-08-26T20:45:18.8942308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_runtime_utils.py 2025-08-26T20:45:18.8945552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_shard_utils.py 2025-08-26T20:45:18.8950265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_state_dict_utils.py 2025-08-26T20:45:18.8954143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_trace_utils.py 2025-08-26T20:45:18.8957749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_traversal_utils.py 2025-08-26T20:45:18.8961636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_unshard_param_utils.py 2025-08-26T20:45:18.8965401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_wrap_utils.py 2025-08-26T20:45:18.8977555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__init__.py 2025-08-26T20:45:18.8985728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fsdp_api.py 2025-08-26T20:45:18.8989496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fsdp_collectives.py 2025-08-26T20:45:18.8994142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fsdp_common.py 2025-08-26T20:45:18.9006731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fsdp_init.py 2025-08-26T20:45:18.9009847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fsdp_param.py 2025-08-26T20:45:18.9013796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fsdp_param_group.py 2025-08-26T20:45:18.9017772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fsdp_state.py 2025-08-26T20:45:18.9021875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fully_shard.py 2025-08-26T20:45:18.9025581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__init__.py 2025-08-26T20:45:18.9033196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fsdp_api.cpython-39.pyc 2025-08-26T20:45:18.9036837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fsdp_collectives.cpython-39.pyc 2025-08-26T20:45:18.9040599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fsdp_common.cpython-39.pyc 2025-08-26T20:45:18.9053829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fsdp_init.cpython-39.pyc 2025-08-26T20:45:18.9058752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fsdp_param.cpython-39.pyc 2025-08-26T20:45:18.9062946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fsdp_param_group.cpython-39.pyc 2025-08-26T20:45:18.9066893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fsdp_state.cpython-39.pyc 2025-08-26T20:45:18.9071285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fully_shard.cpython-39.pyc 2025-08-26T20:45:18.9075504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.9084635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\api.cpython-39.pyc 2025-08-26T20:45:18.9088674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\fully_sharded_data_parallel.cpython-39.pyc 2025-08-26T20:45:18.9093635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\sharded_grad_scaler.cpython-39.pyc 2025-08-26T20:45:18.9201171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\wrap.cpython-39.pyc 2025-08-26T20:45:18.9204860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_common_utils.cpython-39.pyc 2025-08-26T20:45:18.9208533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_debug_utils.cpython-39.pyc 2025-08-26T20:45:18.9212182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_dynamo_utils.cpython-39.pyc 2025-08-26T20:45:18.9215815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_exec_order_utils.cpython-39.pyc 2025-08-26T20:45:18.9219518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_flat_param.cpython-39.pyc 2025-08-26T20:45:18.9224848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_fsdp_extensions.cpython-39.pyc 2025-08-26T20:45:18.9227951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_init_utils.cpython-39.pyc 2025-08-26T20:45:18.9231740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_limiter_utils.cpython-39.pyc 2025-08-26T20:45:18.9235300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_optim_utils.cpython-39.pyc 2025-08-26T20:45:18.9239449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_runtime_utils.cpython-39.pyc 2025-08-26T20:45:18.9243197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_shard_utils.cpython-39.pyc 2025-08-26T20:45:18.9247200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_state_dict_utils.cpython-39.pyc 2025-08-26T20:45:18.9439883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_trace_utils.cpython-39.pyc 2025-08-26T20:45:18.9444160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_traversal_utils.cpython-39.pyc 2025-08-26T20:45:18.9447891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_unshard_param_utils.cpython-39.pyc 2025-08-26T20:45:18.9451576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_wrap_utils.cpython-39.pyc 2025-08-26T20:45:18.9455709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.9464620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\launcher\api.py 2025-08-26T20:45:18.9468081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\launcher\__init__.py 2025-08-26T20:45:18.9475097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\launcher\__pycache__\api.cpython-39.pyc 2025-08-26T20:45:18.9479033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\launcher\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.9487193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\functional.py 2025-08-26T20:45:18.9490792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\__init__.py 2025-08-26T20:45:18.9497936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\api\remote_module.py 2025-08-26T20:45:18.9501637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\api\__init__.py 2025-08-26T20:45:18.9508510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\api\__pycache__\remote_module.cpython-39.pyc 2025-08-26T20:45:18.9513034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\api\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.9519614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\instantiator.py 2025-08-26T20:45:18.9523037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\__init__.py 2025-08-26T20:45:18.9529805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\templates\remote_module_template.py 2025-08-26T20:45:18.9533514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\templates\__init__.py 2025-08-26T20:45:18.9539832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\templates\__pycache__\remote_module_template.cpython-39.pyc 2025-08-26T20:45:18.9543945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\templates\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.9556418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\__pycache__\instantiator.cpython-39.pyc 2025-08-26T20:45:18.9560033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.9572794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\__pycache__\functional.cpython-39.pyc 2025-08-26T20:45:18.9576431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.9585041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\apply_optimizer_in_backward.py 2025-08-26T20:45:18.9588661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_adadelta.py 2025-08-26T20:45:18.9592084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_adagrad.py 2025-08-26T20:45:18.9599761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_adam.py 2025-08-26T20:45:18.9603486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_adamax.py 2025-08-26T20:45:18.9607067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_adamw.py 2025-08-26T20:45:18.9611093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_rmsprop.py 2025-08-26T20:45:18.9614600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_rprop.py 2025-08-26T20:45:18.9618448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_sgd.py 2025-08-26T20:45:18.9621892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\named_optimizer.py 2025-08-26T20:45:18.9625619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\optimizer.py 2025-08-26T20:45:18.9629338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\post_localSGD_optimizer.py 2025-08-26T20:45:18.9633174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\utils.py 2025-08-26T20:45:18.9637199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\zero_redundancy_optimizer.py 2025-08-26T20:45:18.9641429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\zero_redundancy_optimizer.pyi 2025-08-26T20:45:18.9645182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\_deprecation_warning.py 2025-08-26T20:45:18.9648803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__init__.py 2025-08-26T20:45:18.9657138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\apply_optimizer_in_backward.cpython-39.pyc 2025-08-26T20:45:18.9660871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_adadelta.cpython-39.pyc 2025-08-26T20:45:18.9665070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_adagrad.cpython-39.pyc 2025-08-26T20:45:18.9672993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_adam.cpython-39.pyc 2025-08-26T20:45:18.9676615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_adamax.cpython-39.pyc 2025-08-26T20:45:18.9680278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_adamw.cpython-39.pyc 2025-08-26T20:45:18.9683952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_rmsprop.cpython-39.pyc 2025-08-26T20:45:18.9687740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_rprop.cpython-39.pyc 2025-08-26T20:45:18.9691720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_sgd.cpython-39.pyc 2025-08-26T20:45:18.9695491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\named_optimizer.cpython-39.pyc 2025-08-26T20:45:18.9699023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\optimizer.cpython-39.pyc 2025-08-26T20:45:18.9702620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\post_localSGD_optimizer.cpython-39.pyc 2025-08-26T20:45:18.9706254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:18.9709952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\zero_redundancy_optimizer.cpython-39.pyc 2025-08-26T20:45:18.9714107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\_deprecation_warning.cpython-39.pyc 2025-08-26T20:45:18.9718124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.9730891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\microbatch.py 2025-08-26T20:45:18.9734344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\schedules.py 2025-08-26T20:45:18.9738742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\stage.py 2025-08-26T20:45:18.9742537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\_backward.py 2025-08-26T20:45:18.9749793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\_debug.py 2025-08-26T20:45:18.9753174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\_IR.py 2025-08-26T20:45:18.9757287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\_schedule_visualizer.py 2025-08-26T20:45:18.9761192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\_unflatten.py 2025-08-26T20:45:18.9764924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\_utils.py 2025-08-26T20:45:18.9768598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__init__.py 2025-08-26T20:45:18.9775912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\microbatch.cpython-39.pyc 2025-08-26T20:45:18.9779770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\schedules.cpython-39.pyc 2025-08-26T20:45:18.9783650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\stage.cpython-39.pyc 2025-08-26T20:45:18.9793028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\_backward.cpython-39.pyc 2025-08-26T20:45:18.9797223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\_debug.cpython-39.pyc 2025-08-26T20:45:18.9800947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\_IR.cpython-39.pyc 2025-08-26T20:45:18.9804813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\_schedule_visualizer.cpython-39.pyc 2025-08-26T20:45:18.9808637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\_unflatten.cpython-39.pyc 2025-08-26T20:45:18.9812380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\_utils.cpython-39.pyc 2025-08-26T20:45:18.9815878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.9824632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\api.py 2025-08-26T20:45:18.9828544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\backend_registry.py 2025-08-26T20:45:18.9832094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\constants.py 2025-08-26T20:45:18.9835707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\functions.py 2025-08-26T20:45:18.9844563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\internal.py 2025-08-26T20:45:18.9848580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\options.py 2025-08-26T20:45:18.9851978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\rref_proxy.py 2025-08-26T20:45:18.9855636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\server_process_global_profiler.py 2025-08-26T20:45:18.9859141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\_utils.py 2025-08-26T20:45:18.9862502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__init__.py 2025-08-26T20:45:18.9870222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\_testing\faulty_agent_backend_registry.py 2025-08-26T20:45:18.9873716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\_testing\__init__.py 2025-08-26T20:45:18.9880818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\_testing\__pycache__\faulty_agent_backend_registry.cpython-39.pyc 2025-08-26T20:45:18.9884462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\_testing\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.9892283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\api.cpython-39.pyc 2025-08-26T20:45:18.9896351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\backend_registry.cpython-39.pyc 2025-08-26T20:45:18.9899900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\constants.cpython-39.pyc 2025-08-26T20:45:18.9908640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\functions.cpython-39.pyc 2025-08-26T20:45:18.9912228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\internal.cpython-39.pyc 2025-08-26T20:45:18.9915683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\options.cpython-39.pyc 2025-08-26T20:45:18.9919400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\rref_proxy.cpython-39.pyc 2025-08-26T20:45:18.9922984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\server_process_global_profiler.cpython-39.pyc 2025-08-26T20:45:18.9926589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\_utils.cpython-39.pyc 2025-08-26T20:45:18.9930903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:18.9939445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\device_mesh.py 2025-08-26T20:45:18.9943585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\placement_types.py 2025-08-26T20:45:18.9947258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_api.py 2025-08-26T20:45:18.9951111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_collective_utils.py 2025-08-26T20:45:18.9958779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_dispatch.py 2025-08-26T20:45:18.9962586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_dtensor_spec.py 2025-08-26T20:45:18.9966435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_op_schema.py 2025-08-26T20:45:18.9970244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_random.py 2025-08-26T20:45:18.9973742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_redistribute.py 2025-08-26T20:45:18.9977398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_sharding_prop.py 2025-08-26T20:45:18.9981563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_shards_wrapper.py 2025-08-26T20:45:18.9985207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_tp_conv.py 2025-08-26T20:45:18.9988619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_utils.py 2025-08-26T20:45:18.9992078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__init__.py 2025-08-26T20:45:18.9999294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\_comm_mode.py 2025-08-26T20:45:19.0003163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\_op_coverage.py 2025-08-26T20:45:19.0006850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\_visualize_sharding.py 2025-08-26T20:45:19.0010573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\__init__.py 2025-08-26T20:45:19.0025559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\__pycache__\_comm_mode.cpython-39.pyc 2025-08-26T20:45:19.0030576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\__pycache__\_op_coverage.cpython-39.pyc 2025-08-26T20:45:19.0035826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\__pycache__\_visualize_sharding.cpython-39.pyc 2025-08-26T20:45:19.0044246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:19.0052756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\_attention.py 2025-08-26T20:45:19.0056717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\_func_map.py 2025-08-26T20:45:19.0060467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\_register_sharding.py 2025-08-26T20:45:19.0067861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\_tp_transform.py 2025-08-26T20:45:19.0071648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\__init__.py 2025-08-26T20:45:19.0079552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\__pycache__\_attention.cpython-39.pyc 2025-08-26T20:45:19.0083333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\__pycache__\_func_map.cpython-39.pyc 2025-08-26T20:45:19.0103328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\__pycache__\_register_sharding.cpython-39.pyc 2025-08-26T20:45:19.0111807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\__pycache__\_tp_transform.cpython-39.pyc 2025-08-26T20:45:19.0115610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:19.0123915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\api.py 2025-08-26T20:45:19.0127699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\ddp.py 2025-08-26T20:45:19.0131412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\fsdp.py 2025-08-26T20:45:19.0135717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\input_reshard.py 2025-08-26T20:45:19.0139375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\loss.py 2025-08-26T20:45:19.0143001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\style.py 2025-08-26T20:45:19.0151136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\_data_parallel_utils.py 2025-08-26T20:45:19.0154872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__init__.py 2025-08-26T20:45:19.0162740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\api.cpython-39.pyc 2025-08-26T20:45:19.0166501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\ddp.cpython-39.pyc 2025-08-26T20:45:19.0170320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\fsdp.cpython-39.pyc 2025-08-26T20:45:19.0178606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\input_reshard.cpython-39.pyc 2025-08-26T20:45:19.0182296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\loss.cpython-39.pyc 2025-08-26T20:45:19.0186040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\style.cpython-39.pyc 2025-08-26T20:45:19.0190110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\_data_parallel_utils.cpython-39.pyc 2025-08-26T20:45:19.0193712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:19.0201988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\utils.py 2025-08-26T20:45:19.0205354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_common_rules.py 2025-08-26T20:45:19.0208842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_conv_ops.py 2025-08-26T20:45:19.0212657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_einsum_strategy.py 2025-08-26T20:45:19.0220295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_embedding_ops.py 2025-08-26T20:45:19.0223750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_math_ops.py 2025-08-26T20:45:19.0227544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_matrix_ops.py 2025-08-26T20:45:19.0231277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_pointwise_ops.py 2025-08-26T20:45:19.0234895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_random_ops.py 2025-08-26T20:45:19.0238551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_tensor_ops.py 2025-08-26T20:45:19.0242369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_view_ops.py 2025-08-26T20:45:19.0246007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__init__.py 2025-08-26T20:45:19.0253281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:19.0256962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_common_rules.cpython-39.pyc 2025-08-26T20:45:19.0260463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_conv_ops.cpython-39.pyc 2025-08-26T20:45:19.0269861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_einsum_strategy.cpython-39.pyc 2025-08-26T20:45:19.0273606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_embedding_ops.cpython-39.pyc 2025-08-26T20:45:19.0277175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_math_ops.cpython-39.pyc 2025-08-26T20:45:19.0280823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_matrix_ops.cpython-39.pyc 2025-08-26T20:45:19.0284427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_pointwise_ops.cpython-39.pyc 2025-08-26T20:45:19.0288073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_random_ops.cpython-39.pyc 2025-08-26T20:45:19.0292329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_tensor_ops.cpython-39.pyc 2025-08-26T20:45:19.0296183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_view_ops.cpython-39.pyc 2025-08-26T20:45:19.0300546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:19.0308987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\device_mesh.cpython-39.pyc 2025-08-26T20:45:19.0312565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\placement_types.cpython-39.pyc 2025-08-26T20:45:19.0316195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_api.cpython-39.pyc 2025-08-26T20:45:19.0324778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_collective_utils.cpython-39.pyc 2025-08-26T20:45:19.0328417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_dispatch.cpython-39.pyc 2025-08-26T20:45:19.0332167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_dtensor_spec.cpython-39.pyc 2025-08-26T20:45:19.0335725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_op_schema.cpython-39.pyc 2025-08-26T20:45:19.0339371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_random.cpython-39.pyc 2025-08-26T20:45:19.0343400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_redistribute.cpython-39.pyc 2025-08-26T20:45:19.0347059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_sharding_prop.cpython-39.pyc 2025-08-26T20:45:19.0350605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_shards_wrapper.cpython-39.pyc 2025-08-26T20:45:19.0354104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_tp_conv.cpython-39.pyc 2025-08-26T20:45:19.0357770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_utils.cpython-39.pyc 2025-08-26T20:45:19.0361283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:19.0370020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\checkpoint_activation.py 2025-08-26T20:45:19.0373453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\contract.py 2025-08-26T20:45:19.0376845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\replicate.py 2025-08-26T20:45:19.0380359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\replicate_with_fsdp.py 2025-08-26T20:45:19.0387888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\__init__.py 2025-08-26T20:45:19.0395023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\fsdp\fully_shard.py 2025-08-26T20:45:19.0398567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\fsdp\__init__.py 2025-08-26T20:45:19.0405499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\fsdp\__pycache__\fully_shard.cpython-39.pyc 2025-08-26T20:45:19.0409303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\fsdp\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:19.0416972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\__pycache__\checkpoint_activation.cpython-39.pyc 2025-08-26T20:45:19.0420558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\__pycache__\contract.cpython-39.pyc 2025-08-26T20:45:19.0424446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\__pycache__\replicate.cpython-39.pyc 2025-08-26T20:45:19.0432287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\__pycache__\replicate_with_fsdp.cpython-39.pyc 2025-08-26T20:45:19.0436037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:19.0443897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\api.py 2025-08-26T20:45:19.0447385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\common_op_utils.py 2025-08-26T20:45:19.0450791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\metadata.py 2025-08-26T20:45:19.0454751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\op_registry_utils.py 2025-08-26T20:45:19.0458448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharder.py 2025-08-26T20:45:19.0466934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\_utils.py 2025-08-26T20:45:19.0470318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__init__.py 2025-08-26T20:45:19.0477859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\checkpoint\__init__.py 2025-08-26T20:45:19.0484940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\checkpoint\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:19.0492513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_optim\api.py 2025-08-26T20:45:19.0496221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_optim\__init__.py 2025-08-26T20:45:19.0503519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_optim\__pycache__\api.cpython-39.pyc 2025-08-26T20:45:19.0507308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_optim\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:19.0515174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\api.py 2025-08-26T20:45:19.0519071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\logger.py 2025-08-26T20:45:19.0522696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\logging_handlers.py 2025-08-26T20:45:19.0526146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\metadata.py 2025-08-26T20:45:19.0529807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\reshard.py 2025-08-26T20:45:19.0537769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\shard.py 2025-08-26T20:45:19.0541218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\utils.py 2025-08-26T20:45:19.0544947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__init__.py 2025-08-26T20:45:19.0552223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\binary_cmp.py 2025-08-26T20:45:19.0555823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\init.py 2025-08-26T20:45:19.0559550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\misc_ops.py 2025-08-26T20:45:19.0563047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\tensor_ops.py 2025-08-26T20:45:19.0566654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\_common.py 2025-08-26T20:45:19.0574959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\__init__.py 2025-08-26T20:45:19.0582939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\__pycache__\binary_cmp.cpython-39.pyc 2025-08-26T20:45:19.0586595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\__pycache__\init.cpython-39.pyc 2025-08-26T20:45:19.0590280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\__pycache__\misc_ops.cpython-39.pyc 2025-08-26T20:45:19.0598215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\__pycache__\tensor_ops.cpython-39.pyc 2025-08-26T20:45:19.0601912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\__pycache__\_common.cpython-39.pyc 2025-08-26T20:45:19.0605747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:19.0614155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\api.cpython-39.pyc 2025-08-26T20:45:19.0617987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\logger.cpython-39.pyc 2025-08-26T20:45:19.0621862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\logging_handlers.cpython-39.pyc 2025-08-26T20:45:19.0629588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\metadata.cpython-39.pyc 2025-08-26T20:45:19.0633307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\reshard.cpython-39.pyc 2025-08-26T20:45:19.0636772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\shard.cpython-39.pyc 2025-08-26T20:45:19.0640418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:19.0644240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:19.0652159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_plan\api.py 2025-08-26T20:45:19.0656030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_plan\__init__.py 2025-08-26T20:45:19.0662982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_plan\__pycache__\api.cpython-39.pyc 2025-08-26T20:45:19.0667088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_plan\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:19.0674961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\api.py 2025-08-26T20:45:19.0678702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec.py 2025-08-26T20:45:19.0682383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\_internals.py 2025-08-26T20:45:19.0685657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\__init__.py 2025-08-26T20:45:19.0697493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\embedding.py 2025-08-26T20:45:19.0700996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\embedding_bag.py 2025-08-26T20:45:19.0704846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\_common.py 2025-08-26T20:45:19.0713158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\__init__.py 2025-08-26T20:45:19.0720106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\__pycache__\embedding.cpython-39.pyc 2025-08-26T20:45:19.0723894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\__pycache__\embedding_bag.cpython-39.pyc 2025-08-26T20:45:19.0727585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\__pycache__\_common.cpython-39.pyc 2025-08-26T20:45:19.0735390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:19.0743135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\__pycache__\api.cpython-39.pyc 2025-08-26T20:45:19.0746797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\__pycache__\chunk_sharding_spec.cpython-39.pyc 2025-08-26T20:45:19.0750448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\__pycache__\_internals.cpython-39.pyc 2025-08-26T20:45:19.0759220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:19.0767219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__pycache__\api.cpython-39.pyc 2025-08-26T20:45:19.0770789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__pycache__\common_op_utils.cpython-39.pyc 2025-08-26T20:45:19.0774346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__pycache__\metadata.cpython-39.pyc 2025-08-26T20:45:19.0785449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__pycache__\op_registry_utils.cpython-39.pyc 2025-08-26T20:45:19.0789079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__pycache__\sharder.cpython-39.pyc 2025-08-26T20:45:19.0792914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__pycache__\_utils.cpython-39.pyc 2025-08-26T20:45:19.0796446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:19.0804393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_sharded_tensor\__init__.py 2025-08-26T20:45:19.0811855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_sharded_tensor\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:19.0819636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_sharding_spec\__init__.py 2025-08-26T20:45:19.0826906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_sharding_spec\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:19.0835191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_symmetric_memory\_nvshmem_triton.py 2025-08-26T20:45:19.0838720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_symmetric_memory\__init__.py 2025-08-26T20:45:19.0846320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_symmetric_memory\__pycache__\_nvshmem_triton.cpython-39.pyc 2025-08-26T20:45:19.0850001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_symmetric_memory\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:19.0858066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tensor\api.py 2025-08-26T20:45:19.0861521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tensor\placement_types.py 2025-08-26T20:45:19.0865401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tensor\__init__.py 2025-08-26T20:45:19.0872399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tensor\__pycache__\api.cpython-39.pyc 2025-08-26T20:45:19.0876869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tensor\__pycache__\placement_types.cpython-39.pyc 2025-08-26T20:45:19.0880696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tensor\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:19.0892884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\common_utils.py 2025-08-26T20:45:19.0896310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\fake_collectives.py 2025-08-26T20:45:19.0899738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\fsdp2_mem_tracker.py 2025-08-26T20:45:19.0903418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\ilp_utils.py 2025-08-26T20:45:19.0911243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\memory_tracker.py 2025-08-26T20:45:19.0914827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\mem_tracker.py 2025-08-26T20:45:19.0918449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\mod_tracker.py 2025-08-26T20:45:19.0921938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\runtime_estimator.py 2025-08-26T20:45:19.0925764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\sac_estimator.py 2025-08-26T20:45:19.0929391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\sac_ilp.py 2025-08-26T20:45:19.0932783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__init__.py 2025-08-26T20:45:19.0940864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\common_utils.cpython-39.pyc 2025-08-26T20:45:19.0944583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\fake_collectives.cpython-39.pyc 2025-08-26T20:45:19.0948470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\fsdp2_mem_tracker.cpython-39.pyc 2025-08-26T20:45:19.0956589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\ilp_utils.cpython-39.pyc 2025-08-26T20:45:19.0960578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\memory_tracker.cpython-39.pyc 2025-08-26T20:45:19.0964108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\mem_tracker.cpython-39.pyc 2025-08-26T20:45:19.0968510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\mod_tracker.cpython-39.pyc 2025-08-26T20:45:19.0972444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\runtime_estimator.cpython-39.pyc 2025-08-26T20:45:19.0976193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\sac_estimator.cpython-39.pyc 2025-08-26T20:45:19.0979965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\sac_ilp.cpython-39.pyc 2025-08-26T20:45:19.0983890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:19.0992233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\argparse_util.cpython-39.pyc 2025-08-26T20:45:19.0995917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\c10d_logger.cpython-39.pyc 2025-08-26T20:45:19.0999571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\collective_utils.cpython-39.pyc 2025-08-26T20:45:19.1008345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\constants.cpython-39.pyc 2025-08-26T20:45:19.1012428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\device_mesh.cpython-39.pyc 2025-08-26T20:45:19.1015870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\distributed_c10d.cpython-39.pyc 2025-08-26T20:45:19.1020766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\launch.cpython-39.pyc 2025-08-26T20:45:19.1024592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\logging_handlers.cpython-39.pyc 2025-08-26T20:45:19.1028418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\remote_device.cpython-39.pyc 2025-08-26T20:45:19.1032175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\rendezvous.cpython-39.pyc 2025-08-26T20:45:19.1035777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\run.cpython-39.pyc 2025-08-26T20:45:19.1039524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:19.1043314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\_checkpointable.cpython-39.pyc 2025-08-26T20:45:19.1047542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\_composable_state.cpython-39.pyc 2025-08-26T20:45:19.1051396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\_dist2.cpython-39.pyc 2025-08-26T20:45:19.1055506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\_functional_collectives.cpython-39.pyc 2025-08-26T20:45:19.1059317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\_functional_collectives_impl.cpython-39.pyc 2025-08-26T20:45:19.1067250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\_serialization.cpython-39.pyc 2025-08-26T20:45:19.1070734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\_state_dict_utils.cpython-39.pyc 2025-08-26T20:45:19.1074513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:19.1084953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\bernoulli.py 2025-08-26T20:45:19.1089696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\beta.py 2025-08-26T20:45:19.1093309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\binomial.py 2025-08-26T20:45:19.1096749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\categorical.py 2025-08-26T20:45:19.1105029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\cauchy.py 2025-08-26T20:45:19.1108450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\chi2.py 2025-08-26T20:45:19.1112354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\constraints.py 2025-08-26T20:45:19.1116155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\constraint_registry.py 2025-08-26T20:45:19.1119947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\continuous_bernoulli.py 2025-08-26T20:45:19.1123984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\dirichlet.py 2025-08-26T20:45:19.1127861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\distribution.py 2025-08-26T20:45:19.1131409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\exponential.py 2025-08-26T20:45:19.1135293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\exp_family.py 2025-08-26T20:45:19.1139145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\fishersnedecor.py 2025-08-26T20:45:19.1142565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\gamma.py 2025-08-26T20:45:19.1146232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\generalized_pareto.py 2025-08-26T20:45:19.1149796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\geometric.py 2025-08-26T20:45:19.1153616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\gumbel.py 2025-08-26T20:45:19.1157149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\half_cauchy.py 2025-08-26T20:45:19.1160705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\half_normal.py 2025-08-26T20:45:19.1164382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\independent.py 2025-08-26T20:45:19.1167967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\inverse_gamma.py 2025-08-26T20:45:19.1175787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\kl.py 2025-08-26T20:45:19.1179443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\kumaraswamy.py 2025-08-26T20:45:19.1196355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\laplace.py 2025-08-26T20:45:19.1199838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\lkj_cholesky.py 2025-08-26T20:45:19.1203583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\logistic_normal.py 2025-08-26T20:45:19.1207157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\log_normal.py 2025-08-26T20:45:19.1210856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\lowrank_multivariate_normal.py 2025-08-26T20:45:19.1214441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\mixture_same_family.py 2025-08-26T20:45:19.1217928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\multinomial.py 2025-08-26T20:45:19.1222329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\multivariate_normal.py 2025-08-26T20:45:19.1230776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\negative_binomial.py 2025-08-26T20:45:19.1234084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\normal.py 2025-08-26T20:45:19.1237746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\one_hot_categorical.py 2025-08-26T20:45:19.1241211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\pareto.py 2025-08-26T20:45:19.1244768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\poisson.py 2025-08-26T20:45:19.1248233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\relaxed_bernoulli.py 2025-08-26T20:45:19.1252022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\relaxed_categorical.py 2025-08-26T20:45:19.1255569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\studentT.py 2025-08-26T20:45:19.1259058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\transformed_distribution.py 2025-08-26T20:45:19.1262602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\transforms.py 2025-08-26T20:45:19.1266456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\uniform.py 2025-08-26T20:45:19.1271305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\utils.py 2025-08-26T20:45:19.1274803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\von_mises.py 2025-08-26T20:45:19.1283397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\weibull.py 2025-08-26T20:45:19.1286982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\wishart.py 2025-08-26T20:45:19.1290454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__init__.py 2025-08-26T20:45:19.1299175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\bernoulli.cpython-39.pyc 2025-08-26T20:45:19.1302716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\beta.cpython-39.pyc 2025-08-26T20:45:19.1306268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\binomial.cpython-39.pyc 2025-08-26T20:45:19.1314120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\categorical.cpython-39.pyc 2025-08-26T20:45:19.1317642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\cauchy.cpython-39.pyc 2025-08-26T20:45:19.1321171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\chi2.cpython-39.pyc 2025-08-26T20:45:19.1324735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\constraints.cpython-39.pyc 2025-08-26T20:45:19.1328417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\constraint_registry.cpython-39.pyc 2025-08-26T20:45:19.1332006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\continuous_bernoulli.cpython-39.pyc 2025-08-26T20:45:19.1335507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\dirichlet.cpython-39.pyc 2025-08-26T20:45:19.1339343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\distribution.cpython-39.pyc 2025-08-26T20:45:19.1343391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\exponential.cpython-39.pyc 2025-08-26T20:45:19.1347034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\exp_family.cpython-39.pyc 2025-08-26T20:45:19.1350586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\fishersnedecor.cpython-39.pyc 2025-08-26T20:45:19.1354140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\gamma.cpython-39.pyc 2025-08-26T20:45:19.1357769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\generalized_pareto.cpython-39.pyc 2025-08-26T20:45:19.1361380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\geometric.cpython-39.pyc 2025-08-26T20:45:19.1369799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\gumbel.cpython-39.pyc 2025-08-26T20:45:19.1373417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\half_cauchy.cpython-39.pyc 2025-08-26T20:45:19.1377129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\half_normal.cpython-39.pyc 2025-08-26T20:45:19.1380637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\independent.cpython-39.pyc 2025-08-26T20:45:19.1384295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\inverse_gamma.cpython-39.pyc 2025-08-26T20:45:19.1388681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\kl.cpython-39.pyc 2025-08-26T20:45:19.1392501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\kumaraswamy.cpython-39.pyc 2025-08-26T20:45:19.1396298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\laplace.cpython-39.pyc 2025-08-26T20:45:19.1403332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\lkj_cholesky.cpython-39.pyc 2025-08-26T20:45:19.1406961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\logistic_normal.cpython-39.pyc 2025-08-26T20:45:19.1410724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\log_normal.cpython-39.pyc 2025-08-26T20:45:19.1414433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\lowrank_multivariate_normal.cpython-39.pyc 2025-08-26T20:45:19.1417986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\mixture_same_family.cpython-39.pyc 2025-08-26T20:45:19.1421486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\multinomial.cpython-39.pyc 2025-08-26T20:45:19.1425240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\multivariate_normal.cpython-39.pyc 2025-08-26T20:45:19.1428789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\negative_binomial.cpython-39.pyc 2025-08-26T20:45:19.1436895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\normal.cpython-39.pyc 2025-08-26T20:45:19.1440421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\one_hot_categorical.cpython-39.pyc 2025-08-26T20:45:19.1445362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\pareto.cpython-39.pyc 2025-08-26T20:45:19.1449031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\poisson.cpython-39.pyc 2025-08-26T20:45:19.1452708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\relaxed_bernoulli.cpython-39.pyc 2025-08-26T20:45:19.1456621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\relaxed_categorical.cpython-39.pyc 2025-08-26T20:45:19.1460461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\studentT.cpython-39.pyc 2025-08-26T20:45:19.1464308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\transformed_distribution.cpython-39.pyc 2025-08-26T20:45:19.1472214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\transforms.cpython-39.pyc 2025-08-26T20:45:19.1476486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\uniform.cpython-39.pyc 2025-08-26T20:45:19.1479992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:19.1483819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\von_mises.cpython-39.pyc 2025-08-26T20:45:19.1487581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\weibull.cpython-39.pyc 2025-08-26T20:45:19.1491243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\wishart.cpython-39.pyc 2025-08-26T20:45:19.1494846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:19.1504176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\custom_obj.py 2025-08-26T20:45:19.1507734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\custom_ops.py 2025-08-26T20:45:19.1511203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\decomp_utils.py 2025-08-26T20:45:19.1514608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\dynamic_shapes.py 2025-08-26T20:45:19.1523609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\exported_program.py 2025-08-26T20:45:19.1527332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\graph_signature.py 2025-08-26T20:45:19.1530929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\unflatten.py 2025-08-26T20:45:19.1534955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_draft_export.py 2025-08-26T20:45:19.1538723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_remove_auto_functionalized_pass.py 2025-08-26T20:45:19.1542336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_remove_effect_tokens_pass.py 2025-08-26T20:45:19.1545922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_safeguard.py 2025-08-26T20:45:19.1549307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_swap.py 2025-08-26T20:45:19.1553229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_trace.py 2025-08-26T20:45:19.1557224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_tree_utils.py 2025-08-26T20:45:19.1560774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_unlift.py 2025-08-26T20:45:19.1564301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_wrapper_utils.py 2025-08-26T20:45:19.1567748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__init__.py 2025-08-26T20:45:19.1575517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\experimental\_utils.py 2025-08-26T20:45:19.1578913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\experimental\__init__.py 2025-08-26T20:45:19.1586026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\experimental\__pycache__\_utils.cpython-39.pyc 2025-08-26T20:45:19.1589716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\experimental\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:19.1597678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\passes\__init__.py 2025-08-26T20:45:19.1604578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\passes\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:19.1612108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\constants.py 2025-08-26T20:45:19.1615738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\_package.py 2025-08-26T20:45:19.1619746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\_package_weights.py 2025-08-26T20:45:19.1623469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\__init__.py 2025-08-26T20:45:19.1635280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\__pycache__\constants.cpython-39.pyc 2025-08-26T20:45:19.1638965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\__pycache__\_package.cpython-39.pyc 2025-08-26T20:45:19.1642681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\__pycache__\_package_weights.cpython-39.pyc 2025-08-26T20:45:19.1651325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:19.1668351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\custom_obj.cpython-39.pyc 2025-08-26T20:45:19.1673338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\custom_ops.cpython-39.pyc 2025-08-26T20:45:19.1677110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\decomp_utils.cpython-39.pyc 2025-08-26T20:45:19.1684296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\dynamic_shapes.cpython-39.pyc 2025-08-26T20:45:19.1688258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\exported_program.cpython-39.pyc 2025-08-26T20:45:19.1692736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\graph_signature.cpython-39.pyc 2025-08-26T20:45:19.1696719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\unflatten.cpython-39.pyc 2025-08-26T20:45:19.1701020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_draft_export.cpython-39.pyc 2025-08-26T20:45:19.1705148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_remove_auto_functionalized_pass.cpython-39.pyc 2025-08-26T20:45:19.1709102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_remove_effect_tokens_pass.cpython-39.pyc 2025-08-26T20:45:19.1712560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_safeguard.cpython-39.pyc 2025-08-26T20:45:19.1716288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_swap.cpython-39.pyc 2025-08-26T20:45:19.1719799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_trace.cpython-39.pyc 2025-08-26T20:45:19.1723712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_tree_utils.cpython-39.pyc 2025-08-26T20:45:19.1727509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_unlift.cpython-39.pyc 2025-08-26T20:45:19.1731385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_wrapper_utils.cpython-39.pyc 2025-08-26T20:45:19.1738668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:19.1748146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fft\__init__.py 2025-08-26T20:45:19.1755447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fft\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:19.1763593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\func\__init__.py 2025-08-26T20:45:19.1770299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\func\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:19.1777778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\futures\__init__.py 2025-08-26T20:45:19.1784662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\futures\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:19.1792266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\annotate.py 2025-08-26T20:45:19.1796029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\config.py 2025-08-26T20:45:19.1799929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\graph.py 2025-08-26T20:45:19.1803951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\graph_module.py 2025-08-26T20:45:19.1807700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\immutable_collections.py 2025-08-26T20:45:19.1815662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\interpreter.py 2025-08-26T20:45:19.1819224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\node.py 2025-08-26T20:45:19.1822869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\operator_schemas.py 2025-08-26T20:45:19.1826566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\proxy.py 2025-08-26T20:45:19.1830272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\subgraph_rewriter.py 2025-08-26T20:45:19.1834165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\tensor_type.py 2025-08-26T20:45:19.1837650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\traceback.py 2025-08-26T20:45:19.1841013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\_compatibility.py 2025-08-26T20:45:19.1844507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\_graph_pickler.py 2025-08-26T20:45:19.1848546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\_lazy_graph_module.py 2025-08-26T20:45:19.1851935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\_pytree.py 2025-08-26T20:45:19.1855315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\_symbolic_trace.py 2025-08-26T20:45:19.1859174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\_utils.py 2025-08-26T20:45:19.1862693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__init__.py 2025-08-26T20:45:19.1870451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\accelerator_partitioner.py 2025-08-26T20:45:19.1874692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\const_fold.py 2025-08-26T20:45:19.1878191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\debug.py 2025-08-26T20:45:19.1885767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\graph_gradual_typechecker.py 2025-08-26T20:45:19.1889509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\merge_matmul.py 2025-08-26T20:45:19.1893061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\meta_tracer.py 2025-08-26T20:45:19.1898462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\normalize.py 2025-08-26T20:45:19.1901784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\optimization.py 2025-08-26T20:45:19.1906016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\partitioner_utils.py 2025-08-26T20:45:19.1909305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\proxy_tensor.py 2025-08-26T20:45:19.1913584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\recording.py 2025-08-26T20:45:19.1917499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\refinement_types.py 2025-08-26T20:45:19.1920917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\rewriter.py 2025-08-26T20:45:19.1924426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\schema_type_annotation.py 2025-08-26T20:45:19.1928064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\symbolic_shapes.py 2025-08-26T20:45:19.1933736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\sym_node.py 2025-08-26T20:45:19.1937899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unify_refinements.py 2025-08-26T20:45:19.1941632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\validator.py 2025-08-26T20:45:19.1945403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\_backward_state.py 2025-08-26T20:45:19.1949044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\_config.py 2025-08-26T20:45:19.1961138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\_constant_symnode.py 2025-08-26T20:45:19.1961730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\_dynamism.py 2025-08-26T20:45:19.1963624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__init__.py 2025-08-26T20:45:19.1970780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\constraint.py 2025-08-26T20:45:19.1975184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\constraint_generator.py 2025-08-26T20:45:19.1979152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\constraint_transformation.py 2025-08-26T20:45:19.1987087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\operation.py 2025-08-26T20:45:19.1990645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\transform_to_z3.py 2025-08-26T20:45:19.1994465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\util.py 2025-08-26T20:45:19.1998073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\z3_types.py 2025-08-26T20:45:19.2001505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__init__.py 2025-08-26T20:45:19.2008603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\constraint.cpython-39.pyc 2025-08-26T20:45:19.2012674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\constraint_generator.cpython-39.pyc 2025-08-26T20:45:19.2016557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\constraint_transformation.cpython-39.pyc 2025-08-26T20:45:19.2024701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\operation.cpython-39.pyc 2025-08-26T20:45:19.2028532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\transform_to_z3.cpython-39.pyc 2025-08-26T20:45:19.2032701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\util.cpython-39.pyc 2025-08-26T20:45:19.2036034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\z3_types.cpython-39.pyc 2025-08-26T20:45:19.2040221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:19.2048886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\core.py 2025-08-26T20:45:19.2052332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\dispatch.py 2025-08-26T20:45:19.2055999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\match.py 2025-08-26T20:45:19.2059713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\more.py 2025-08-26T20:45:19.2063712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\unification_tools.py 2025-08-26T20:45:19.2071479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\utils.py 2025-08-26T20:45:19.2075332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\variable.py 2025-08-26T20:45:19.2078966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__init__.py 2025-08-26T20:45:19.2086888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\conflict.py 2025-08-26T20:45:19.2090444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\core.py 2025-08-26T20:45:19.2093909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\dispatcher.py 2025-08-26T20:45:19.2098024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\utils.py 2025-08-26T20:45:19.2101729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\variadic.py 2025-08-26T20:45:19.2110079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\__init__.py 2025-08-26T20:45:19.2117492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\__pycache__\conflict.cpython-39.pyc 2025-08-26T20:45:19.2121630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\__pycache__\core.cpython-39.pyc 2025-08-26T20:45:19.2125333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\__pycache__\dispatcher.cpython-39.pyc 2025-08-26T20:45:19.2134132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:19.2137903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\__pycache__\variadic.cpython-39.pyc 2025-08-26T20:45:19.2141686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:19.2150031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\core.cpython-39.pyc 2025-08-26T20:45:19.2153693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\dispatch.cpython-39.pyc 2025-08-26T20:45:19.2157679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\match.cpython-39.pyc 2025-08-26T20:45:19.2165104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\more.cpython-39.pyc 2025-08-26T20:45:19.2168707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\unification_tools.cpython-39.pyc 2025-08-26T20:45:19.2172236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:19.2175835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\variable.cpython-39.pyc 2025-08-26T20:45:19.2179355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:19.2188140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\accelerator_partitioner.cpython-39.pyc 2025-08-26T20:45:19.2191785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\const_fold.cpython-39.pyc 2025-08-26T20:45:19.2195398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\debug.cpython-39.pyc 2025-08-26T20:45:19.2203302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\graph_gradual_typechecker.cpython-39.pyc 2025-08-26T20:45:19.2206924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\merge_matmul.cpython-39.pyc 2025-08-26T20:45:19.2210362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\meta_tracer.cpython-39.pyc 2025-08-26T20:45:19.2213959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\normalize.cpython-39.pyc 2025-08-26T20:45:19.2217711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\optimization.cpython-39.pyc 2025-08-26T20:45:19.2221275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\partitioner_utils.cpython-39.pyc 2025-08-26T20:45:19.2224864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\proxy_tensor.cpython-39.pyc 2025-08-26T20:45:19.2228836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\recording.cpython-39.pyc 2025-08-26T20:45:19.2232434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\refinement_types.cpython-39.pyc 2025-08-26T20:45:19.2236365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\rewriter.cpython-39.pyc 2025-08-26T20:45:19.2239960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\schema_type_annotation.cpython-39.pyc 2025-08-26T20:45:19.2243752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\symbolic_shapes.cpython-39.pyc 2025-08-26T20:45:19.2248397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\sym_node.cpython-39.pyc 2025-08-26T20:45:19.2256720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\unify_refinements.cpython-39.pyc 2025-08-26T20:45:19.2260389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\validator.cpython-39.pyc 2025-08-26T20:45:19.2264283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\_backward_state.cpython-39.pyc 2025-08-26T20:45:19.2286956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\_config.cpython-39.pyc 2025-08-26T20:45:19.2290817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\_constant_symnode.cpython-39.pyc 2025-08-26T20:45:19.2294994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\_dynamism.cpython-39.pyc 2025-08-26T20:45:19.2298629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:19.2307400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\annotate_getitem_nodes.py 2025-08-26T20:45:19.2311062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\fake_tensor_prop.py 2025-08-26T20:45:19.2314418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\graph_drawer.py 2025-08-26T20:45:19.2317904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\graph_manipulation.py 2025-08-26T20:45:19.2326069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\graph_transform_observer.py 2025-08-26T20:45:19.2329539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\net_min_base.py 2025-08-26T20:45:19.2333342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\operator_support.py 2025-08-26T20:45:19.2337069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\param_fetch.py 2025-08-26T20:45:19.2340569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\pass_manager.py 2025-08-26T20:45:19.2344047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\reinplace.py 2025-08-26T20:45:19.2347701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\runtime_assert.py 2025-08-26T20:45:19.2351461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\shape_prop.py 2025-08-26T20:45:19.2355011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\splitter_base.py 2025-08-26T20:45:19.2358981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\split_module.py 2025-08-26T20:45:19.2362544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\split_utils.py 2025-08-26T20:45:19.2366111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\tools_common.py 2025-08-26T20:45:19.2369744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\_tensorify_python_scalars.py 2025-08-26T20:45:19.2373191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__init__.py 2025-08-26T20:45:19.2380136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\backends\cudagraphs.py 2025-08-26T20:45:19.2383662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\backends\__init__.py 2025-08-26T20:45:19.2390420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\backends\__pycache__\cudagraphs.cpython-39.pyc 2025-08-26T20:45:19.2393983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\backends\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:19.2406143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\dialect\__init__.py 2025-08-26T20:45:19.2413261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\dialect\common\cse_pass.py 2025-08-26T20:45:19.2416412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\dialect\common\__init__.py 2025-08-26T20:45:19.2422535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\dialect\common\__pycache__\cse_pass.cpython-39.pyc 2025-08-26T20:45:19.2426456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\dialect\common\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:19.2434036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\dialect\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:19.2442359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\partitioner.py 2025-08-26T20:45:19.2447149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\pass_base.py 2025-08-26T20:45:19.2450718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\pass_manager.py 2025-08-26T20:45:19.2455440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\__init__.py 2025-08-26T20:45:19.2467639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\__pycache__\partitioner.cpython-39.pyc 2025-08-26T20:45:19.2471387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\__pycache__\pass_base.cpython-39.pyc 2025-08-26T20:45:19.2475107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\__pycache__\pass_manager.cpython-39.pyc 2025-08-26T20:45:19.2482610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:19.2491132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\tests\test_pass_manager.py 2025-08-26T20:45:19.2494754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\tests\__init__.py 2025-08-26T20:45:19.2501207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\tests\__pycache__\test_pass_manager.cpython-39.pyc 2025-08-26T20:45:19.2505040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\tests\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:19.2512670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\common.py 2025-08-26T20:45:19.2516456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\fuser_utils.py 2025-08-26T20:45:19.2519866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\matcher_utils.py 2025-08-26T20:45:19.2523590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\matcher_with_name_node_map_utils.py 2025-08-26T20:45:19.2531444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\source_matcher_utils.py 2025-08-26T20:45:19.2534951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\__init__.py 2025-08-26T20:45:19.2542167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\__pycache__\common.cpython-39.pyc 2025-08-26T20:45:19.2545990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\__pycache__\fuser_utils.cpython-39.pyc 2025-08-26T20:45:19.2549679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\__pycache__\matcher_utils.cpython-39.pyc 2025-08-26T20:45:19.2557770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\__pycache__\matcher_with_name_node_map_utils.cpython-39.pyc 2025-08-26T20:45:19.2561695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\__pycache__\source_matcher_utils.cpython-39.pyc 2025-08-26T20:45:19.2565507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:19.2574101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\annotate_getitem_nodes.cpython-39.pyc 2025-08-26T20:45:19.2578210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\fake_tensor_prop.cpython-39.pyc 2025-08-26T20:45:19.2581924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\graph_drawer.cpython-39.pyc 2025-08-26T20:45:19.2589491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\graph_manipulation.cpython-39.pyc 2025-08-26T20:45:19.2592958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\graph_transform_observer.cpython-39.pyc 2025-08-26T20:45:19.2596721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\net_min_base.cpython-39.pyc 2025-08-26T20:45:19.2600767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\operator_support.cpython-39.pyc 2025-08-26T20:45:19.2604315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\param_fetch.cpython-39.pyc 2025-08-26T20:45:19.2608542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\pass_manager.cpython-39.pyc 2025-08-26T20:45:19.2612694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\reinplace.cpython-39.pyc 2025-08-26T20:45:19.2616805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\runtime_assert.cpython-39.pyc 2025-08-26T20:45:19.2621263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\shape_prop.cpython-39.pyc 2025-08-26T20:45:19.2624423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\splitter_base.cpython-39.pyc 2025-08-26T20:45:19.2628659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\split_module.cpython-39.pyc 2025-08-26T20:45:19.2632785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\split_utils.cpython-39.pyc 2025-08-26T20:45:19.2635877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\tools_common.cpython-39.pyc 2025-08-26T20:45:19.2643813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\_tensorify_python_scalars.cpython-39.pyc 2025-08-26T20:45:19.2647340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:19.2656848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\annotate.cpython-39.pyc 2025-08-26T20:45:19.2660610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\config.cpython-39.pyc 2025-08-26T20:45:19.2664206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\graph.cpython-39.pyc 2025-08-26T20:45:19.2672005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\graph_module.cpython-39.pyc 2025-08-26T20:45:19.2675836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\immutable_collections.cpython-39.pyc 2025-08-26T20:45:19.2680042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\interpreter.cpython-39.pyc 2025-08-26T20:45:19.2683825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\node.cpython-39.pyc 2025-08-26T20:45:19.2687540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\operator_schemas.cpython-39.pyc 2025-08-26T20:45:19.2691067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\proxy.cpython-39.pyc 2025-08-26T20:45:19.2694835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\subgraph_rewriter.cpython-39.pyc 2025-08-26T20:45:19.2698540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\tensor_type.cpython-39.pyc 2025-08-26T20:45:19.2701959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\traceback.cpython-39.pyc 2025-08-26T20:45:19.2705725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\_compatibility.cpython-39.pyc 2025-08-26T20:45:19.2709540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\_graph_pickler.cpython-39.pyc 2025-08-26T20:45:19.2713233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\_lazy_graph_module.cpython-39.pyc 2025-08-26T20:45:19.2716893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\_pytree.cpython-39.pyc 2025-08-26T20:45:19.2720630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\_symbolic_trace.cpython-39.pyc 2025-08-26T20:45:19.2728665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\_utils.cpython-39.pyc 2025-08-26T20:45:19.2732285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:19.2744893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\advisor-annotate.h 2025-08-26T20:45:19.2748670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\cpuinfo.h 2025-08-26T20:45:19.2752716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl.h 2025-08-26T20:45:19.2756152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl.hpp 2025-08-26T20:45:19.2759548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_config.h 2025-08-26T20:45:19.2767459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_debug.h 2025-08-26T20:45:19.2771343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_ocl.h 2025-08-26T20:45:19.2775576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_ocl.hpp 2025-08-26T20:45:19.2779062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_sycl.h 2025-08-26T20:45:19.2782621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_sycl.hpp 2025-08-26T20:45:19.2786555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_sycl_types.h 2025-08-26T20:45:19.2790084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_threadpool.h 2025-08-26T20:45:19.2793728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_threadpool.hpp 2025-08-26T20:45:19.2797618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_threadpool_iface.hpp 2025-08-26T20:45:19.2800869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_types.h 2025-08-26T20:45:19.2804400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_version.h 2025-08-26T20:45:19.2807984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\experiments-config.h 2025-08-26T20:45:19.2811740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fp16.h 2025-08-26T20:45:19.2814891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fxdiv.h 2025-08-26T20:45:19.2818804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ittnotify-zca.h 2025-08-26T20:45:19.2822396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ittnotify.h 2025-08-26T20:45:19.2827209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\jitprofiling.h 2025-08-26T20:45:19.2836103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\libittnotify.h 2025-08-26T20:45:19.2839422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\libshm.h 2025-08-26T20:45:19.2842973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\psimd.h 2025-08-26T20:45:19.2847281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pthreadpool.h 2025-08-26T20:45:19.2851192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\sleef.h 2025-08-26T20:45:19.2855995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\xnnpack.h 2025-08-26T20:45:19.2865680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\AccumulateType.h 2025-08-26T20:45:19.2869159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ArrayRef.h 2025-08-26T20:45:19.2872578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ATen.h 2025-08-26T20:45:19.2876224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\autocast_mode.h 2025-08-26T20:45:19.2880136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Backend.h 2025-08-26T20:45:19.2887255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Backtrace.h 2025-08-26T20:45:19.2890759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\BlasBackend.h 2025-08-26T20:45:19.2894412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CachedTensorUtils.h 2025-08-26T20:45:19.2898130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ceil_div.h 2025-08-26T20:45:19.2902286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\code_template.h 2025-08-26T20:45:19.2905975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CollapseDims.h 2025-08-26T20:45:19.2909623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeExplicitAutogradFunctions.h 2025-08-26T20:45:19.2913687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeExplicitAutogradFunctions_inl.h 2025-08-26T20:45:19.2917872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeExplicitAutogradNonFunctionalFunctions.h 2025-08-26T20:45:19.2921744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeExplicitAutogradNonFunctionalFunctions_inl.h 2025-08-26T20:45:19.2925961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeImplicitAutogradFunctions.h 2025-08-26T20:45:19.2929691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeImplicitAutogradFunctions_inl.h 2025-08-26T20:45:19.2933762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeImplicitAutogradNestedTensorFunctions.h 2025-08-26T20:45:19.2938076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeImplicitAutogradNestedTensorFunctions_inl.h 2025-08-26T20:45:19.2946051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Config.h 2025-08-26T20:45:19.2950256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Context.h 2025-08-26T20:45:19.2953979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpp_custom_type_hack.h 2025-08-26T20:45:19.2957911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CPUApplyUtils.h 2025-08-26T20:45:19.2961440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CPUFixedAllocator.h 2025-08-26T20:45:19.2965686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CPUFunctions.h 2025-08-26T20:45:19.2969457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CPUFunctions_inl.h 2025-08-26T20:45:19.2973518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CPUGeneratorImpl.h 2025-08-26T20:45:19.2977443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CUDAFunctions.h 2025-08-26T20:45:19.2981116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CUDAFunctions_inl.h 2025-08-26T20:45:19.2989600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Device.h 2025-08-26T20:45:19.2993712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\DeviceAccelerator.h 2025-08-26T20:45:19.2997931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\DeviceGuard.h 2025-08-26T20:45:19.3000943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Dimname.h 2025-08-26T20:45:19.3005191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\DimVector.h 2025-08-26T20:45:19.3009474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Dispatch.h 2025-08-26T20:45:19.3012890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Dispatch_v2.h 2025-08-26T20:45:19.3017057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\div_rtn.h 2025-08-26T20:45:19.3020942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\DLConvertor.h 2025-08-26T20:45:19.3024308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\dlpack.h 2025-08-26T20:45:19.3028784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\DynamicLibrary.h 2025-08-26T20:45:19.3032175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\EmptyTensor.h 2025-08-26T20:45:19.3039784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ExpandBase.h 2025-08-26T20:45:19.3043234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ExpandUtils.h 2025-08-26T20:45:19.3046780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Formatting.h 2025-08-26T20:45:19.3050340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\FunctionalStorageImpl.h 2025-08-26T20:45:19.3053794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\FunctionalTensorWrapper.h 2025-08-26T20:45:19.3057566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Functions.h 2025-08-26T20:45:19.3061629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\FuncTorchTLS.h 2025-08-26T20:45:19.3065791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Generator.h 2025-08-26T20:45:19.3069604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\InferSize.h 2025-08-26T20:45:19.3074030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\InitialTensorOptions.h 2025-08-26T20:45:19.3080594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\jiterator_macros.h 2025-08-26T20:45:19.3085134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\jit_macros.h 2025-08-26T20:45:19.3087759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Layout.h 2025-08-26T20:45:19.3092044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\LegacyBatchedFallback.h 2025-08-26T20:45:19.3096732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\LegacyBatchedTensorImpl.h 2025-08-26T20:45:19.3100039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\LegacyVmapMode.h 2025-08-26T20:45:19.3104351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\LegacyVmapTransforms.h 2025-08-26T20:45:19.3108468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\LinalgBackend.h 2025-08-26T20:45:19.3111989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\MapAllocator.h 2025-08-26T20:45:19.3116059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\MatrixRef.h 2025-08-26T20:45:19.3128572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\MemoryOverlap.h 2025-08-26T20:45:19.3132156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\MetaFunctions.h 2025-08-26T20:45:19.3135704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\MetaFunctions_inl.h 2025-08-26T20:45:19.3139542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\MethodOperators.h 2025-08-26T20:45:19.3143822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\NamedTensor.h 2025-08-26T20:45:19.3148437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\NamedTensorUtils.h 2025-08-26T20:45:19.3152361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\NativeFunctions.h 2025-08-26T20:45:19.3156479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\NativeMetaFunctions.h 2025-08-26T20:45:19.3160489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\NestedTensorImpl.h 2025-08-26T20:45:19.3170031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\NumericUtils.h 2025-08-26T20:45:19.3174058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\OpaqueTensorImpl.h 2025-08-26T20:45:19.3178406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Operators.h 2025-08-26T20:45:19.3183338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\OpMathType.h 2025-08-26T20:45:19.3187171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\PadNd.h 2025-08-26T20:45:19.3190615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Parallel-inl.h 2025-08-26T20:45:19.3194180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Parallel.h 2025-08-26T20:45:19.3197955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ParallelFuture.h 2025-08-26T20:45:19.3201911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ParallelNative.h 2025-08-26T20:45:19.3205257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ParallelOpenMP.h 2025-08-26T20:45:19.3213418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\PTThreadPool.h 2025-08-26T20:45:19.3217032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\PythonTorchFunctionTLS.h 2025-08-26T20:45:19.3220786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\record_function.h 2025-08-26T20:45:19.3224949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\RedispatchFunctions.h 2025-08-26T20:45:19.3241817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\RegistrationDeclarations.h 2025-08-26T20:45:19.3250424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ROCmFABackend.h 2025-08-26T20:45:19.3254155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\SavedTensorHooks.h 2025-08-26T20:45:19.3257698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Scalar.h 2025-08-26T20:45:19.3261138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ScalarOps.h 2025-08-26T20:45:19.3265057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ScalarType.h 2025-08-26T20:45:19.3268720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\SDPBackend.h 2025-08-26T20:45:19.3272427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\SequenceNumber.h 2025-08-26T20:45:19.3276243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\SmallVector.h 2025-08-26T20:45:19.3280210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\SparseCsrTensorImpl.h 2025-08-26T20:45:19.3283822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\SparseCsrTensorUtils.h 2025-08-26T20:45:19.3287892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\SparseTensorImpl.h 2025-08-26T20:45:19.3291261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Storage.h 2025-08-26T20:45:19.3294745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\StorageUtils.h 2025-08-26T20:45:19.3298354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Tensor.h 2025-08-26T20:45:19.3302058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorAccessor.h 2025-08-26T20:45:19.3309537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorGeometry.h 2025-08-26T20:45:19.3313005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorIndexing.h 2025-08-26T20:45:19.3317180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorIterator.h 2025-08-26T20:45:19.3321129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorIteratorInternal.h 2025-08-26T20:45:19.3325137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorMeta.h 2025-08-26T20:45:19.3329249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorNames.h 2025-08-26T20:45:19.3332991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorOperators.h 2025-08-26T20:45:19.3336608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorOptions.h 2025-08-26T20:45:19.3340425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorSubclassLikeUtils.h 2025-08-26T20:45:19.3344296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorUtils.h 2025-08-26T20:45:19.3348034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ThreadLocalPythonObjects.h 2025-08-26T20:45:19.3351786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ThreadLocalState.h 2025-08-26T20:45:19.3355273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TracerMode.h 2025-08-26T20:45:19.3358788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TypeDefault.h 2025-08-26T20:45:19.3362299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Utils.h 2025-08-26T20:45:19.3365699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Version.h 2025-08-26T20:45:19.3369157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\VmapGeneratedPlumbing.h 2025-08-26T20:45:19.3381295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\WrapDimUtils.h 2025-08-26T20:45:19.3401343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\WrapDimUtilsMulti.h 2025-08-26T20:45:19.3409982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\alias_info.h 2025-08-26T20:45:19.3413874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Array.h 2025-08-26T20:45:19.3418132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ATenGeneral.h 2025-08-26T20:45:19.3420865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ATenOpList.h 2025-08-26T20:45:19.3429870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ATen_fwd.h 2025-08-26T20:45:19.3432384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\aten_interned_strings.h 2025-08-26T20:45:19.3437296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ATen_pch.h 2025-08-26T20:45:19.3441390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Backtrace.h 2025-08-26T20:45:19.3444320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\blob.h 2025-08-26T20:45:19.3447922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\builtin_function.h 2025-08-26T20:45:19.3452977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\CachingHostAllocator.h 2025-08-26T20:45:19.3456046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\CheckMemoryFormat.h 2025-08-26T20:45:19.3459636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\class_type.h 2025-08-26T20:45:19.3464466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\custom_class.h 2025-08-26T20:45:19.3467467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\DeprecatedTypeProperties.h 2025-08-26T20:45:19.3471919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\DeprecatedTypePropertiesRegistry.h 2025-08-26T20:45:19.3476013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Dict.h 2025-08-26T20:45:19.3479178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Dict_inl.h 2025-08-26T20:45:19.3482580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Dimname.h 2025-08-26T20:45:19.3485907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\DimVector.h 2025-08-26T20:45:19.3489673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\DistributionsHelper.h 2025-08-26T20:45:19.3493445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dynamic_type.h 2025-08-26T20:45:19.3500953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\enum_tag.h 2025-08-26T20:45:19.3504887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\enum_type.h 2025-08-26T20:45:19.3508428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Formatting.h 2025-08-26T20:45:19.3512400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\function.h 2025-08-26T20:45:19.3516345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\functional.h 2025-08-26T20:45:19.3519589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\function_schema.h 2025-08-26T20:45:19.3523698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\function_schema_inl.h 2025-08-26T20:45:19.3527862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Generator.h 2025-08-26T20:45:19.3531400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\GeneratorForPrivateuseone.h 2025-08-26T20:45:19.3535481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\grad_mode.h 2025-08-26T20:45:19.3539324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\IListRef.h 2025-08-26T20:45:19.3546966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\IListRef_inl.h 2025-08-26T20:45:19.3550890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\interned_strings.h 2025-08-26T20:45:19.3554307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\interned_strings_class.h 2025-08-26T20:45:19.3558556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ivalue.h 2025-08-26T20:45:19.3562540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ivalue_inl.h 2025-08-26T20:45:19.3566463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ivalue_to.h 2025-08-26T20:45:19.3570220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\jit_type.h 2025-08-26T20:45:19.3574241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\jit_type_base.h 2025-08-26T20:45:19.3578124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\LegacyTypeDispatch.h 2025-08-26T20:45:19.3581857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\List.h 2025-08-26T20:45:19.3585492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\List_inl.h 2025-08-26T20:45:19.3588890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\MT19937RNGEngine.h 2025-08-26T20:45:19.3597458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\NamedTensor.h 2025-08-26T20:45:19.3601098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\NestedIntSymNodeImpl.h 2025-08-26T20:45:19.3604745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\operator_name.h 2025-08-26T20:45:19.3608465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\PhiloxRNGEngine.h 2025-08-26T20:45:19.3612324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\PythonFallbackKernel.h 2025-08-26T20:45:19.3616352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\PythonOpRegistrationTrampoline.h 2025-08-26T20:45:19.3620064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\qualified_name.h 2025-08-26T20:45:19.3624038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\QuantizerBase.h 2025-08-26T20:45:19.3627688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Range.h 2025-08-26T20:45:19.3631278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Reduction.h 2025-08-26T20:45:19.3639847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\rref_interface.h 2025-08-26T20:45:19.3643811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Scalar.h 2025-08-26T20:45:19.3647164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ScalarType.h 2025-08-26T20:45:19.3650972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\stack.h 2025-08-26T20:45:19.3654484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\symbol.h 2025-08-26T20:45:19.3658222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Tensor.h 2025-08-26T20:45:19.3662955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\TensorAccessor.h 2025-08-26T20:45:19.3665387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\TensorBase.h 2025-08-26T20:45:19.3669307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\TensorBody.h 2025-08-26T20:45:19.3675098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\TorchDispatchUtils.h 2025-08-26T20:45:19.3678462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\TransformationHelper.h 2025-08-26T20:45:19.3689251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\typeid.h 2025-08-26T20:45:19.3692701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\type_factory.h 2025-08-26T20:45:19.3696742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\type_ptr.h 2025-08-26T20:45:19.3700172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\UndefinedTensorImpl.h 2025-08-26T20:45:19.3703793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\UnsafeFromTH.h 2025-08-26T20:45:19.3707410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\VariableHooksInterface.h 2025-08-26T20:45:19.3710981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Variadic.h 2025-08-26T20:45:19.3714913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Vitals.h 2025-08-26T20:45:19.3722342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\BoxedKernel.h 2025-08-26T20:45:19.3725708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\BoxedKernel_impl.h 2025-08-26T20:45:19.3729395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\KernelFunction.h 2025-08-26T20:45:19.3732784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\KernelFunction_impl.h 2025-08-26T20:45:19.3740635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\OperatorKernel.h 2025-08-26T20:45:19.3747596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\impl\boxing.h 2025-08-26T20:45:19.3751181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\impl\make_boxed_from_unboxed_functor.h 2025-08-26T20:45:19.3754652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\impl\test_helpers.h 2025-08-26T20:45:19.3758077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\impl\WrapFunctionIntoFunctor.h 2025-08-26T20:45:19.3767359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\impl\WrapFunctionIntoRuntimeFunctor.h 2025-08-26T20:45:19.3775339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dispatch\CppSignature.h 2025-08-26T20:45:19.3778898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dispatch\Dispatcher.h 2025-08-26T20:45:19.3782477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dispatch\DispatchKeyExtractor.h 2025-08-26T20:45:19.3786016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dispatch\ObservedOperators.h 2025-08-26T20:45:19.3794507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dispatch\OperatorEntry.h 2025-08-26T20:45:19.3798386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dispatch\OperatorOptions.h 2025-08-26T20:45:19.3802147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dispatch\RegistrationHandleRAII.h 2025-08-26T20:45:19.3810455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\op_registration\adaption.h 2025-08-26T20:45:19.3814186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\op_registration\infer_schema.h 2025-08-26T20:45:19.3817336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\op_registration\op_allowlist.h 2025-08-26T20:45:19.3820746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\op_registration\op_registration.h 2025-08-26T20:45:19.3834259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\FlushDenormal.h 2025-08-26T20:45:19.3838354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\Utils.h 2025-08-26T20:45:19.3842155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vml.h 2025-08-26T20:45:19.3848899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\functional.h 2025-08-26T20:45:19.3852377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\functional_base.h 2025-08-26T20:45:19.3855868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\functional_bfloat16.h 2025-08-26T20:45:19.3859467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\intrinsics.h 2025-08-26T20:45:19.3867220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec.h 2025-08-26T20:45:19.3870689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec_base.h 2025-08-26T20:45:19.3874497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec_convert.h 2025-08-26T20:45:19.3878398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec_half.h 2025-08-26T20:45:19.3881961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec_mask.h 2025-08-26T20:45:19.3885394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec_n.h 2025-08-26T20:45:19.3889157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec_quant.h 2025-08-26T20:45:19.3897270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\sve\sve_helper.h 2025-08-26T20:45:19.3900772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\sve\vec_bfloat16.h 2025-08-26T20:45:19.3904846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\sve\vec_common_sve.h 2025-08-26T20:45:19.3908409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\sve\vec_double.h 2025-08-26T20:45:19.3916129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\sve\vec_float.h 2025-08-26T20:45:19.3919808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\sve\vec_int.h 2025-08-26T20:45:19.3923480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\sve\vec_qint.h 2025-08-26T20:45:19.3931048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec128\vec128.h 2025-08-26T20:45:19.3934688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec128\vec128_bfloat16_neon.h 2025-08-26T20:45:19.3938533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec128\vec128_convert.h 2025-08-26T20:45:19.3942221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec128\vec128_float_neon.h 2025-08-26T20:45:19.3950801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec128\vec128_half_neon.h 2025-08-26T20:45:19.3954700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec128\vec128_reduced_precision_common_neon.h 2025-08-26T20:45:19.3962718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\missing_vld1_neon.h 2025-08-26T20:45:19.3966326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\missing_vst1_neon.h 2025-08-26T20:45:19.3970075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256.h 2025-08-26T20:45:19.3973695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_16bit_float.h 2025-08-26T20:45:19.3981218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_bfloat16.h 2025-08-26T20:45:19.3985243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_complex_double.h 2025-08-26T20:45:19.3989151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_complex_float.h 2025-08-26T20:45:19.3993073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_convert.h 2025-08-26T20:45:19.3996779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_double.h 2025-08-26T20:45:19.4000422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_float.h 2025-08-26T20:45:19.4004180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_half.h 2025-08-26T20:45:19.4008029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_int.h 2025-08-26T20:45:19.4012272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_mask.h 2025-08-26T20:45:19.4015795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_qint.h 2025-08-26T20:45:19.4023730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_bfloat16_vsx.h 2025-08-26T20:45:19.4027481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_common_vsx.h 2025-08-26T20:45:19.4031140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_complex_double_vsx.h 2025-08-26T20:45:19.4039325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_complex_float_vsx.h 2025-08-26T20:45:19.4043099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_double_vsx.h 2025-08-26T20:45:19.4046839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_float_vsx.h 2025-08-26T20:45:19.4050431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_int16_vsx.h 2025-08-26T20:45:19.4054220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_int32_vsx.h 2025-08-26T20:45:19.4057750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_int64_vsx.h 2025-08-26T20:45:19.4061645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_qint32_vsx.h 2025-08-26T20:45:19.4065667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_qint8_vsx.h 2025-08-26T20:45:19.4069392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_quint8_vsx.h 2025-08-26T20:45:19.4072961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vsx_helpers.h 2025-08-26T20:45:19.4081062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\zarch\vec256_zarch.h 2025-08-26T20:45:19.4089260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512.h 2025-08-26T20:45:19.4093388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_bfloat16.h 2025-08-26T20:45:19.4097414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_complex_double.h 2025-08-26T20:45:19.4101174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_complex_float.h 2025-08-26T20:45:19.4109526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_convert.h 2025-08-26T20:45:19.4113089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_double.h 2025-08-26T20:45:19.4116875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_float.h 2025-08-26T20:45:19.4120558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_float8.h 2025-08-26T20:45:19.4124243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_int.h 2025-08-26T20:45:19.4128307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_mask.h 2025-08-26T20:45:19.4131825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_qint.h 2025-08-26T20:45:19.4142007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\ApplyGridUtils.cuh 2025-08-26T20:45:19.4145765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\AsmUtils.cuh 2025-08-26T20:45:19.4149421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\ATenCUDAGeneral.h 2025-08-26T20:45:19.4153236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\Atomic.cuh 2025-08-26T20:45:19.4157216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CachingHostAllocator.h 2025-08-26T20:45:19.4166805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\cub-RadixSortPairs.cuh 2025-08-26T20:45:19.4168957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\cub.cuh 2025-08-26T20:45:19.4173151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\cub.h 2025-08-26T20:45:19.4176277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\cub_definitions.cuh 2025-08-26T20:45:19.4179927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAApplyUtils.cuh 2025-08-26T20:45:19.4183608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDABlas.h 2025-08-26T20:45:19.4187044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAContext.h 2025-08-26T20:45:19.4190663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAContextLight.h 2025-08-26T20:45:19.4194195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDADataType.h 2025-08-26T20:45:19.4197656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDADevice.h 2025-08-26T20:45:19.4201492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAEvent.h 2025-08-26T20:45:19.4206481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAGeneratorImpl.h 2025-08-26T20:45:19.4209257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAGraph.h 2025-08-26T20:45:19.4212853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAGraphsUtils.cuh 2025-08-26T20:45:19.4216347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDASparse.h 2025-08-26T20:45:19.4219889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDASparseBlas.h 2025-08-26T20:45:19.4228460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDASparseDescriptors.h 2025-08-26T20:45:19.4231980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDATensorMethods.cuh 2025-08-26T20:45:19.4235517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAUtils.h 2025-08-26T20:45:19.4239315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\DeviceUtils.cuh 2025-08-26T20:45:19.4242985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\EmptyTensor.h 2025-08-26T20:45:19.4246547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\Exceptions.h 2025-08-26T20:45:19.4249972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\jiterator.h 2025-08-26T20:45:19.4253470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\jiterator_impl.h 2025-08-26T20:45:19.4257051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\llvm_jit_strings.h 2025-08-26T20:45:19.4265461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\NumericLimits.cuh 2025-08-26T20:45:19.4268915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\PeerToPeerAccess.h 2025-08-26T20:45:19.4272342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\PhiloxCudaState.h 2025-08-26T20:45:19.4275772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\PhiloxUtils.cuh 2025-08-26T20:45:19.4279506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\PinnedMemoryAllocator.h 2025-08-26T20:45:19.4282915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\ScanUtils.cuh 2025-08-26T20:45:19.4286399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\Sleep.h 2025-08-26T20:45:19.4290045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\ThrustAllocator.h 2025-08-26T20:45:19.4297844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\CUDAHooks.h 2025-08-26T20:45:19.4302038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\DeviceThreadHandles.h 2025-08-26T20:45:19.4305563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\IndexUtils.cuh 2025-08-26T20:45:19.4309044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\IntegerDivider.cuh 2025-08-26T20:45:19.4316796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\KernelUtils.h 2025-08-26T20:45:19.4320301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\LazyNVRTC.h 2025-08-26T20:45:19.4323762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\OffsetCalculator.cuh 2025-08-26T20:45:19.4327172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\PhiloxCudaStateRaw.cuh 2025-08-26T20:45:19.4330615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\TensorInfo.cuh 2025-08-26T20:45:19.4334115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\UnpackRaw.cuh 2025-08-26T20:45:19.4341905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\tunable\GemmCommon.h 2025-08-26T20:45:19.4345686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\tunable\GemmHipblaslt.h 2025-08-26T20:45:19.4349459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\tunable\GemmRocblas.h 2025-08-26T20:45:19.4352909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\tunable\StreamTimer.h 2025-08-26T20:45:19.4360596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\tunable\Tunable.h 2025-08-26T20:45:19.4364019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\tunable\TunableGemm.h 2025-08-26T20:45:19.4367357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\tunable\TunableOp.h 2025-08-26T20:45:19.4375463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cudnn\cudnn-wrapper.h 2025-08-26T20:45:19.4379275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cudnn\Descriptors.h 2025-08-26T20:45:19.4382682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cudnn\Handle.h 2025-08-26T20:45:19.4386230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cudnn\Handles.h 2025-08-26T20:45:19.4389511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cudnn\Types.h 2025-08-26T20:45:19.4396930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cudnn\Utils.h 2025-08-26T20:45:19.4404470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\AcceleratorHooksInterface.h 2025-08-26T20:45:19.4407976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\CUDAHooksInterface.h 2025-08-26T20:45:19.4411397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\FunctionTraits.h 2025-08-26T20:45:19.4419120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\HIPHooksInterface.h 2025-08-26T20:45:19.4422641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\HPUHooksInterface.h 2025-08-26T20:45:19.4426376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\IPUHooksInterface.h 2025-08-26T20:45:19.4429816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\MAIAHooksInterface.h 2025-08-26T20:45:19.4433321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\MPSHooksInterface.h 2025-08-26T20:45:19.4436809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\MTIAHooksInterface.h 2025-08-26T20:45:19.4440325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\PrivateUse1HooksInterface.h 2025-08-26T20:45:19.4443852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\XPUHooksInterface.h 2025-08-26T20:45:19.4451909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\ADInterpreters.h 2025-08-26T20:45:19.4455866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\BatchedFallback.h 2025-08-26T20:45:19.4459322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\BatchedTensorImpl.h 2025-08-26T20:45:19.4484298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\BatchingMetaprogramming.h 2025-08-26T20:45:19.4487772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\BatchRulesHelper.h 2025-08-26T20:45:19.4491827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\DynamicLayer.h 2025-08-26T20:45:19.4495724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\FunctionalizeInterpreter.h 2025-08-26T20:45:19.4499196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\Interpreter.h 2025-08-26T20:45:19.4502673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\LegacyVmapTransforms.h 2025-08-26T20:45:19.4506503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\Macros.h 2025-08-26T20:45:19.4509956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\PlumbingHelper.h 2025-08-26T20:45:19.4513640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\TensorWrapper.h 2025-08-26T20:45:19.4517102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\VmapInterpreter.h 2025-08-26T20:45:19.4529483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\hip\impl\HIPAllocatorMasqueradingAsCUDA.h 2025-08-26T20:45:19.4533089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\hip\impl\HIPCachingAllocatorMasqueradingAsCUDA.h 2025-08-26T20:45:19.4536781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\hip\impl\HIPGuardImplMasqueradingAsCUDA.h 2025-08-26T20:45:19.4546082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\hip\impl\HIPStreamMasqueradingAsCUDA.h 2025-08-26T20:45:19.4554561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\metal\Context.h 2025-08-26T20:45:19.4562112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\miopen\Descriptors.h 2025-08-26T20:45:19.4566393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\miopen\Exceptions.h 2025-08-26T20:45:19.4570194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\miopen\Handle.h 2025-08-26T20:45:19.4573537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\miopen\miopen-wrapper.h 2025-08-26T20:45:19.4580741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\miopen\Types.h 2025-08-26T20:45:19.4584269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\miopen\Utils.h 2025-08-26T20:45:19.4591889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\EmptyTensor.h 2025-08-26T20:45:19.4595528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\IndexKernels.h 2025-08-26T20:45:19.4599003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSAllocator.h 2025-08-26T20:45:19.4602442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSAllocatorInterface.h 2025-08-26T20:45:19.4610291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSDevice.h 2025-08-26T20:45:19.4613856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSEvent.h 2025-08-26T20:45:19.4617558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSGeneratorImpl.h 2025-08-26T20:45:19.4621052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSGuardImpl.h 2025-08-26T20:45:19.4624788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSHooks.h 2025-08-26T20:45:19.4628713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSProfiler.h 2025-08-26T20:45:19.4632508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSStream.h 2025-08-26T20:45:19.4640688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Activation.h 2025-08-26T20:45:19.4644297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\AdaptivePooling.h 2025-08-26T20:45:19.4648518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\AmpKernels.h 2025-08-26T20:45:19.4653022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\BatchLinearAlgebra.h 2025-08-26T20:45:19.4661955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\batch_norm.h 2025-08-26T20:45:19.4665883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\BinaryOps.h 2025-08-26T20:45:19.4669354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\BucketizationUtils.h 2025-08-26T20:45:19.4672972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\CanUse32BitIndexMath.h 2025-08-26T20:45:19.4676384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ComplexHelper.h 2025-08-26T20:45:19.4680109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\CompositeRandomAccessor.h 2025-08-26T20:45:19.4683742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\CompositeRandomAccessorCommon.h 2025-08-26T20:45:19.4687405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ConvolutionMM3d.h 2025-08-26T20:45:19.4690982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ConvUtils.h 2025-08-26T20:45:19.4694472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Copy.h 2025-08-26T20:45:19.4697915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\CPUBlas.h 2025-08-26T20:45:19.4701264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\CPUFallback.h 2025-08-26T20:45:19.4705085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Cross.h 2025-08-26T20:45:19.4708566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\DilatedConvolutionUtils.h 2025-08-26T20:45:19.4712155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\DispatchStub.h 2025-08-26T20:45:19.4715531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Distance.h 2025-08-26T20:45:19.4719042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Distributions.h 2025-08-26T20:45:19.4727260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\DistributionTemplates.h 2025-08-26T20:45:19.4730799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\EmbeddingBag.h 2025-08-26T20:45:19.4734428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Fill.h 2025-08-26T20:45:19.4737909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ForeachUtils.h 2025-08-26T20:45:19.4741373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\FractionalMaxPooling.h 2025-08-26T20:45:19.4745024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\FunctionOfAMatrixUtils.h 2025-08-26T20:45:19.4748542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\FusedAdagrad.h 2025-08-26T20:45:19.4752555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\FusedAdam.h 2025-08-26T20:45:19.4756087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\FusedSGD.h 2025-08-26T20:45:19.4759849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Gelu.h 2025-08-26T20:45:19.4763253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\GridSampler.h 2025-08-26T20:45:19.4771716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\GridSamplerUtils.h 2025-08-26T20:45:19.4775181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\group_norm.h 2025-08-26T20:45:19.4778692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Histogram.h 2025-08-26T20:45:19.4782158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\im2col.h 2025-08-26T20:45:19.4785594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\im2col_shape_check.h 2025-08-26T20:45:19.4789374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\IndexingUtils.h 2025-08-26T20:45:19.4793062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\IndexKernel.h 2025-08-26T20:45:19.4796611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\layer_norm.h 2025-08-26T20:45:19.4800322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Lerp.h 2025-08-26T20:45:19.4803499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\LinearAlgebra.h 2025-08-26T20:45:19.4807504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\LinearAlgebraUtils.h 2025-08-26T20:45:19.4816115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\LossMulti.h 2025-08-26T20:45:19.4819707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Math.h 2025-08-26T20:45:19.4824273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\MathBitFallThroughLists.h 2025-08-26T20:45:19.4827868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\MathBitsFallback.h 2025-08-26T20:45:19.4831660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\MaxPooling.h 2025-08-26T20:45:19.4835389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\NonEmptyUtils.h 2025-08-26T20:45:19.4839033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\NonSymbolicBC.h 2025-08-26T20:45:19.4842689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Normalization.h 2025-08-26T20:45:19.4846169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Padding.h 2025-08-26T20:45:19.4849562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\PixelShuffle.h 2025-08-26T20:45:19.4857942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\PointwiseOps.h 2025-08-26T20:45:19.4861365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Pool.h 2025-08-26T20:45:19.4865017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Pow.h 2025-08-26T20:45:19.4868801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\RangeFactories.h 2025-08-26T20:45:19.4872452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\RangeUtils.h 2025-08-26T20:45:19.4875946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ReduceAllOps.h 2025-08-26T20:45:19.4879385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ReduceOps.h 2025-08-26T20:45:19.4883380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ReduceOpsUtils.h 2025-08-26T20:45:19.4886932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ReductionType.h 2025-08-26T20:45:19.4890620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Repeat.h 2025-08-26T20:45:19.4893989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Resize.h 2025-08-26T20:45:19.4897280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ResizeCommon.h 2025-08-26T20:45:19.4908661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\RNN.h 2025-08-26T20:45:19.4912388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ScatterGatherChecks.h 2025-08-26T20:45:19.4916688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\SegmentReduce.h 2025-08-26T20:45:19.4920794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\SharedReduceOps.h 2025-08-26T20:45:19.4924938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\SobolEngineOpsUtils.h 2025-08-26T20:45:19.4927968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Sorting.h 2025-08-26T20:45:19.4931514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\SortingUtils.h 2025-08-26T20:45:19.4935089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\SparseTensorUtils.h 2025-08-26T20:45:19.4938742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\SpectralOpsUtils.h 2025-08-26T20:45:19.4942502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\StridedRandomAccessor.h 2025-08-26T20:45:19.4951020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorAdvancedIndexing.h 2025-08-26T20:45:19.4954732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorAdvancedIndexingUtils.h 2025-08-26T20:45:19.4958238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorCompare.h 2025-08-26T20:45:19.4962025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorConversions.h 2025-08-26T20:45:19.4966083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorDimApply.h 2025-08-26T20:45:19.4969745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorFactories.h 2025-08-26T20:45:19.4973730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorIterator.h 2025-08-26T20:45:19.4977797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorIteratorDynamicCasting.h 2025-08-26T20:45:19.4982425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorProperties.h 2025-08-26T20:45:19.4990481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorShape.h 2025-08-26T20:45:19.4994485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorTransformations.h 2025-08-26T20:45:19.4998237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TopKImpl.h 2025-08-26T20:45:19.5002232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TransposeType.h 2025-08-26T20:45:19.5006025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TriangularOpsUtils.h 2025-08-26T20:45:19.5009566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TypeProperties.h 2025-08-26T20:45:19.5013244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\UnaryOps.h 2025-08-26T20:45:19.5017271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Unfold2d.h 2025-08-26T20:45:19.5020431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Unfold3d.h 2025-08-26T20:45:19.5023821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\UnfoldBackward.h 2025-08-26T20:45:19.5027424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\UpSample.h 2025-08-26T20:45:19.5031110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\verbose_wrapper.h 2025-08-26T20:45:19.5034736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\vol2col.h 2025-08-26T20:45:19.5050575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ao_sparse\quantized\cpu\fbgemm_utils.h 2025-08-26T20:45:19.5054161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ao_sparse\quantized\cpu\packed_params.h 2025-08-26T20:45:19.5058064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ao_sparse\quantized\cpu\qnnpack_utils.h 2025-08-26T20:45:19.5068182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\AtomicAddFloat.h 2025-08-26T20:45:19.5071826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\avx_mathfun.h 2025-08-26T20:45:19.5085678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\CatKernel.h 2025-08-26T20:45:19.5086297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\ChannelShuffleKernel.h 2025-08-26T20:45:19.5089271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\CopyKernel.h 2025-08-26T20:45:19.5093234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\DepthwiseConvKernel.h 2025-08-26T20:45:19.5096807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\DistributionTemplates.h 2025-08-26T20:45:19.5100382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\Elu.h 2025-08-26T20:45:19.5103907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\Gelu.h 2025-08-26T20:45:19.5107556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\GridSamplerKernel.h 2025-08-26T20:45:19.5111402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\IndexKernelUtils.h 2025-08-26T20:45:19.5115037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\Intrinsics.h 2025-08-26T20:45:19.5119194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\int_mm_kernel.h 2025-08-26T20:45:19.5122959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\IsContiguous.h 2025-08-26T20:45:19.5127180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\LogAddExp.h 2025-08-26T20:45:19.5130935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\LogSoftmaxKernelImpl.h 2025-08-26T20:45:19.5134424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\Loops.h 2025-08-26T20:45:19.5137944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\MaxUnpoolKernel.h 2025-08-26T20:45:19.5141754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\mixed_data_type.h 2025-08-26T20:45:19.5145422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\moments_utils.h 2025-08-26T20:45:19.5154706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\PixelShuffleKernel.h 2025-08-26T20:45:19.5158416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\Reduce.h 2025-08-26T20:45:19.5162124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\ReducedPrecisionFloatGemvFastPathKernel.h 2025-08-26T20:45:19.5165936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\ReduceUtils.h 2025-08-26T20:45:19.5170125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\SampledAddmmKernel.h 2025-08-26T20:45:19.5173722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\SerialStackImpl.h 2025-08-26T20:45:19.5177488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\SoftmaxKernel.h 2025-08-26T20:45:19.5181183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\SpmmReduceKernel.h 2025-08-26T20:45:19.5185130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\StackKernel.h 2025-08-26T20:45:19.5188696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\UpSampleKernelAVXAntialias.h 2025-08-26T20:45:19.5196692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\utils.h 2025-08-26T20:45:19.5200345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\WeightNormKernel.h 2025-08-26T20:45:19.5203788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\zmath.h 2025-08-26T20:45:19.5212666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Activation.h 2025-08-26T20:45:19.5216134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\BinaryInternal.h 2025-08-26T20:45:19.5219783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\block_reduce.cuh 2025-08-26T20:45:19.5223328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\CompositeRandomAccessor.h 2025-08-26T20:45:19.5230966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Copy.h 2025-08-26T20:45:19.5234308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\CUDAJitLoops.cuh 2025-08-26T20:45:19.5238055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\CUDALoops.cuh 2025-08-26T20:45:19.5242111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\CuFFTPlanCache.h 2025-08-26T20:45:19.5245783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\CuFFTUtils.h 2025-08-26T20:45:19.5249363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\cutlass_common.cuh 2025-08-26T20:45:19.5253027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\DeviceSqrt.cuh 2025-08-26T20:45:19.5256608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Distributions.h 2025-08-26T20:45:19.5260123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\DistributionTemplates.h 2025-08-26T20:45:19.5263881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\EmbeddingBackwardKernel.cuh 2025-08-26T20:45:19.5267584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\ForeachFunctors.cuh 2025-08-26T20:45:19.5271171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\ForeachMinMaxFunctors.cuh 2025-08-26T20:45:19.5275276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\fused_adagrad_impl.cuh 2025-08-26T20:45:19.5278957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\fused_adagrad_utils.cuh 2025-08-26T20:45:19.5282471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\fused_adamw_amsgrad_impl.cuh 2025-08-26T20:45:19.5290515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\fused_adamw_impl.cuh 2025-08-26T20:45:19.5294146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\fused_adam_amsgrad_impl.cuh 2025-08-26T20:45:19.5297849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\fused_adam_impl.cuh 2025-08-26T20:45:19.5302045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\fused_adam_utils.cuh 2025-08-26T20:45:19.5305948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\GridSampler.cuh 2025-08-26T20:45:19.5309653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\GridSampler.h 2025-08-26T20:45:19.5313413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\GroupMM.h 2025-08-26T20:45:19.5317149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\GroupMMCommon.cuh 2025-08-26T20:45:19.5321364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\im2col.cuh 2025-08-26T20:45:19.5328678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\IndexKernel.h 2025-08-26T20:45:19.5332245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\IndexKernelUtils.h 2025-08-26T20:45:19.5336177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\JitLoops.cuh 2025-08-26T20:45:19.5339689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\jit_utils.h 2025-08-26T20:45:19.5343367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\KernelUtils.cuh 2025-08-26T20:45:19.5346932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\LaunchUtils.h 2025-08-26T20:45:19.5350546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Loops.cuh 2025-08-26T20:45:19.5354248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Math.cuh 2025-08-26T20:45:19.5358968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\MemoryAccess.cuh 2025-08-26T20:45:19.5362719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\MiscUtils.h 2025-08-26T20:45:19.5367284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\MultiTensorApply.cuh 2025-08-26T20:45:19.5374901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Normalization.cuh 2025-08-26T20:45:19.5379025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\PersistentSoftmax.cuh 2025-08-26T20:45:19.5382578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Pow.cuh 2025-08-26T20:45:19.5386225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Randperm.cuh 2025-08-26T20:45:19.5389614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Reduce.cuh 2025-08-26T20:45:19.5393436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\ReduceOps.h 2025-08-26T20:45:19.5397787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\reduction_template.cuh 2025-08-26T20:45:19.5402175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Resize.h 2025-08-26T20:45:19.5405815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\RowwiseScaledMM.h 2025-08-26T20:45:19.5409590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\ScaledGroupMM.h 2025-08-26T20:45:19.5413127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\ScanKernels.h 2025-08-26T20:45:19.5416758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\ScanUtils.cuh 2025-08-26T20:45:19.5424474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Sort.h 2025-08-26T20:45:19.5428080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Sorting.h 2025-08-26T20:45:19.5431495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\SortingCommon.cuh 2025-08-26T20:45:19.5435220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\SortingRadixSelect.cuh 2025-08-26T20:45:19.5438922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\SortStable.h 2025-08-26T20:45:19.5442766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\SortUtils.cuh 2025-08-26T20:45:19.5446597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\TensorModeKernel.cuh 2025-08-26T20:45:19.5450809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\TensorModeKernel.h 2025-08-26T20:45:19.5454373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\TensorTopK.h 2025-08-26T20:45:19.5458013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\thread_constants.h 2025-08-26T20:45:19.5468803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\UniqueCub.cuh 2025-08-26T20:45:19.5472307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\UpSample.cuh 2025-08-26T20:45:19.5476064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\vol2col.cuh 2025-08-26T20:45:19.5486177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\hip\ck_bgemm.h 2025-08-26T20:45:19.5489606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\hip\ck_gemm.h 2025-08-26T20:45:19.5493233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\hip\ck_gemm_template.h 2025-08-26T20:45:19.5496958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\hip\ck_types.h 2025-08-26T20:45:19.5508331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\hip\bgemm_kernels\bgemm_kernel_collection.h 2025-08-26T20:45:19.5512033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\hip\bgemm_kernels\bgemm_kernel_template.h 2025-08-26T20:45:19.5520375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\kleidiai\kai_kernels.h 2025-08-26T20:45:19.5525092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\kleidiai\kai_pack.h 2025-08-26T20:45:19.5528749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\kleidiai\kai_ukernel_interface.h 2025-08-26T20:45:19.5540572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\Conv.h 2025-08-26T20:45:19.5544249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\FusionUtils.h 2025-08-26T20:45:19.5569966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\detail\Attr.h 2025-08-26T20:45:19.5573349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\detail\DnnlExt.h 2025-08-26T20:45:19.5576900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\detail\LRUCache.h 2025-08-26T20:45:19.5580355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\detail\oneDNN.h 2025-08-26T20:45:19.5584250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\detail\oneDNNContext.h 2025-08-26T20:45:19.5587952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\detail\Utils.h 2025-08-26T20:45:19.5601022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\Copy.h 2025-08-26T20:45:19.5604525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\MetalShaderLibrary.h 2025-08-26T20:45:19.5608003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\MPSGraphSequoiaOps.h 2025-08-26T20:45:19.5611792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\MPSGraphSonomaOps.h 2025-08-26T20:45:19.5620128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\MPSGraphVenturaOps.h 2025-08-26T20:45:19.5623905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\OperationUtils.h 2025-08-26T20:45:19.5627519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\TensorFactory.h 2025-08-26T20:45:19.5634815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\kernels\GridSampler.h 2025-08-26T20:45:19.5638305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\kernels\Pooling.h 2025-08-26T20:45:19.5642112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\kernels\UpSample.h 2025-08-26T20:45:19.5649549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\operations\BinaryKernel.h 2025-08-26T20:45:19.5653203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\operations\FusedAdamAmsgradKernelImpl.h 2025-08-26T20:45:19.5656683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\operations\FusedAdamKernelImpl.h 2025-08-26T20:45:19.5664845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\operations\FusedAdamWAmsgradKernelImpl.h 2025-08-26T20:45:19.5668870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\operations\FusedAdamWKernelImpl.h 2025-08-26T20:45:19.5672597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\operations\MultiTensorApply.h 2025-08-26T20:45:19.5680225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mtia\EmptyTensor.h 2025-08-26T20:45:19.5687677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\nested\NestedTensorBinaryOps.h 2025-08-26T20:45:19.5691354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\nested\NestedTensorMath.h 2025-08-26T20:45:19.5694945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\nested\NestedTensorTransformerFunctions.h 2025-08-26T20:45:19.5702446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\nested\NestedTensorTransformerUtils.h 2025-08-26T20:45:19.5706063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\nested\NestedTensorUtils.h 2025-08-26T20:45:19.5714724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\AffineQuantizer.h 2025-08-26T20:45:19.5718315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\AffineQuantizerBase.h 2025-08-26T20:45:19.5721727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\ConvUtils.h 2025-08-26T20:45:19.5729750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\Copy.h 2025-08-26T20:45:19.5733836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\FakeQuantAffine.h 2025-08-26T20:45:19.5737691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\IndexKernel.h 2025-08-26T20:45:19.5741314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\library.h 2025-08-26T20:45:19.5745240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\PackedParams.h 2025-08-26T20:45:19.5753345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\ACLUtils.h 2025-08-26T20:45:19.5757531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\BinaryOps.h 2025-08-26T20:45:19.5761645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\conv_serialization.h 2025-08-26T20:45:19.5765913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\EmbeddingPackedParams.h 2025-08-26T20:45:19.5774757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\fbgemm_utils.h 2025-08-26T20:45:19.5778803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\init_qnnpack.h 2025-08-26T20:45:19.5782935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\OnednnUtils.h 2025-08-26T20:45:19.5786772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\qconv.h 2025-08-26T20:45:19.5790454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\qembeddingbag.h 2025-08-26T20:45:19.5794065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\qembeddingbag_prepack.h 2025-08-26T20:45:19.5797651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\qlinear.h 2025-08-26T20:45:19.5801231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\QnnpackUtils.h 2025-08-26T20:45:19.5804758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\QuantizedOps.h 2025-08-26T20:45:19.5808310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\QuantUtils.h 2025-08-26T20:45:19.5812444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\RuyUtils.h 2025-08-26T20:45:19.5816058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\XnnpackUtils.h 2025-08-26T20:45:19.5824112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cudnn\utils.h 2025-08-26T20:45:19.5832867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\attention.h 2025-08-26T20:45:19.5836638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\sdp_utils.h 2025-08-26T20:45:19.5840287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\sdp_utils_cpp.h 2025-08-26T20:45:19.5851643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\sdp_utils.h 2025-08-26T20:45:19.5858907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\flash_attn\flash_api.h 2025-08-26T20:45:19.5862341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\flash_attn\static_switch.h 2025-08-26T20:45:19.5869941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\debug_utils.h 2025-08-26T20:45:19.5873609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm_kernel_utils.h 2025-08-26T20:45:19.5877145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernel_backward.h 2025-08-26T20:45:19.5885986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernel_forward.h 2025-08-26T20:45:19.5889726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\pytorch_utils.h 2025-08-26T20:45:19.5897505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue\epilogue_pipelined.h 2025-08-26T20:45:19.5901355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue\epilogue_rescale_output.h 2025-08-26T20:45:19.5905129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue\epilogue_thread_apply_logsumexp.h 2025-08-26T20:45:19.5916683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma.h 2025-08-26T20:45:19.5920466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma_base.h 2025-08-26T20:45:19.5923990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma_multistage.h 2025-08-26T20:45:19.5927840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma_pipelined.h 2025-08-26T20:45:19.5935511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\find_default_mma.h 2025-08-26T20:45:19.5939111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\mma_accum_lambda_iterator.h 2025-08-26T20:45:19.5942683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\mma_from_smem.h 2025-08-26T20:45:19.5951190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\default_warp_iterator_from_smem.h 2025-08-26T20:45:19.5954776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\epilogue_predicated_tile_iterator.h 2025-08-26T20:45:19.5958540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\make_residual_last.h 2025-08-26T20:45:19.5966634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\predicated_tile_access_iterator_residual_last.h 2025-08-26T20:45:19.5970586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\predicated_tile_iterator_residual_last.h 2025-08-26T20:45:19.5974441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\transpose_warp_iterator.h 2025-08-26T20:45:19.5978247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\warp_iterator_from_smem.h 2025-08-26T20:45:19.5986289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB.h 2025-08-26T20:45:19.5990238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassF.h 2025-08-26T20:45:19.5998127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\transform\tile_smem_loader.h 2025-08-26T20:45:19.6006600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\hip\aotriton_adapter.h 2025-08-26T20:45:19.6014294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\hip\flash_attn\flash_api.h 2025-08-26T20:45:19.6021593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\hip\flash_attn\ck\me_ck_api.h 2025-08-26T20:45:19.6030424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\utils\Factory.h 2025-08-26T20:45:19.6034471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\utils\ParamsHash.h 2025-08-26T20:45:19.6037965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\utils\ParamUtils.h 2025-08-26T20:45:19.6046949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\abs.h 2025-08-26T20:45:19.6050510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\absolute.h 2025-08-26T20:45:19.6054315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\absolute_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.6057859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\absolute_native.h 2025-08-26T20:45:19.6066166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\absolute_ops.h 2025-08-26T20:45:19.6069988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\abs_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.6073873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\abs_cpu_dispatch.h 2025-08-26T20:45:19.6077450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\abs_cuda_dispatch.h 2025-08-26T20:45:19.6081009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\abs_native.h 2025-08-26T20:45:19.6084447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\abs_ops.h 2025-08-26T20:45:19.6087936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos.h 2025-08-26T20:45:19.6091266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh.h 2025-08-26T20:45:19.6095350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.6098994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh_cpu_dispatch.h 2025-08-26T20:45:19.6102611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh_cuda_dispatch.h 2025-08-26T20:45:19.6106347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh_meta.h 2025-08-26T20:45:19.6109961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh_meta_dispatch.h 2025-08-26T20:45:19.6113618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh_native.h 2025-08-26T20:45:19.6117276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh_ops.h 2025-08-26T20:45:19.6121320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.6128836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos_cpu_dispatch.h 2025-08-26T20:45:19.6132890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos_cuda_dispatch.h 2025-08-26T20:45:19.6136570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos_meta.h 2025-08-26T20:45:19.6140651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos_meta_dispatch.h 2025-08-26T20:45:19.6144356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos_native.h 2025-08-26T20:45:19.6148137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos_ops.h 2025-08-26T20:45:19.6151648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool1d.h 2025-08-26T20:45:19.6155405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool1d_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.6160235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool1d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.6168536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool1d_native.h 2025-08-26T20:45:19.6172857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool1d_ops.h 2025-08-26T20:45:19.6177072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool2d.h 2025-08-26T20:45:19.6181329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool2d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.6185287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool2d_cpu_dispatch.h 2025-08-26T20:45:19.6189326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool2d_cuda_dispatch.h 2025-08-26T20:45:19.6193022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool2d_native.h 2025-08-26T20:45:19.6196842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool2d_ops.h 2025-08-26T20:45:19.6205082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d.h 2025-08-26T20:45:19.6208855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_backward.h 2025-08-26T20:45:19.6212644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_backward_cpu_dispatch.h 2025-08-26T20:45:19.6216336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_backward_cuda_dispatch.h 2025-08-26T20:45:19.6220384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_backward_native.h 2025-08-26T20:45:19.6224534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_backward_ops.h 2025-08-26T20:45:19.6228451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.6232084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_cpu_dispatch.h 2025-08-26T20:45:19.6236042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_cuda_dispatch.h 2025-08-26T20:45:19.6239876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_native.h 2025-08-26T20:45:19.6243605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_ops.h 2025-08-26T20:45:19.6255018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool1d.h 2025-08-26T20:45:19.6258940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool1d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.6262557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool1d_native.h 2025-08-26T20:45:19.6266400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool1d_ops.h 2025-08-26T20:45:19.6270201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d.h 2025-08-26T20:45:19.6274816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward.h 2025-08-26T20:45:19.6278865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.6282555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward_cpu_dispatch.h 2025-08-26T20:45:19.6286410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward_cuda_dispatch.h 2025-08-26T20:45:19.6290020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward_meta.h 2025-08-26T20:45:19.6294538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward_meta_dispatch.h 2025-08-26T20:45:19.6302998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward_native.h 2025-08-26T20:45:19.6306638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward_ops.h 2025-08-26T20:45:19.6310571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.6314260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_cpu_dispatch.h 2025-08-26T20:45:19.6318421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_cuda_dispatch.h 2025-08-26T20:45:19.6322357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_meta.h 2025-08-26T20:45:19.6326069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_meta_dispatch.h 2025-08-26T20:45:19.6334298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_native.h 2025-08-26T20:45:19.6338138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_ops.h 2025-08-26T20:45:19.6341816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d.h 2025-08-26T20:45:19.6345701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward.h 2025-08-26T20:45:19.6349877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.6358025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward_cpu_dispatch.h 2025-08-26T20:45:19.6361789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward_cuda_dispatch.h 2025-08-26T20:45:19.6365505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward_meta.h 2025-08-26T20:45:19.6369238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward_meta_dispatch.h 2025-08-26T20:45:19.6373148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward_native.h 2025-08-26T20:45:19.6377327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward_ops.h 2025-08-26T20:45:19.6381368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.6385568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_cpu_dispatch.h 2025-08-26T20:45:19.6389403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_cuda_dispatch.h 2025-08-26T20:45:19.6393173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_meta.h 2025-08-26T20:45:19.6397219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_meta_dispatch.h 2025-08-26T20:45:19.6401087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_native.h 2025-08-26T20:45:19.6405146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_ops.h 2025-08-26T20:45:19.6408855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add.h 2025-08-26T20:45:19.6412276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addbmm.h 2025-08-26T20:45:19.6415726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addbmm_cpu_dispatch.h 2025-08-26T20:45:19.6419289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addbmm_cuda_dispatch.h 2025-08-26T20:45:19.6422950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addbmm_meta_dispatch.h 2025-08-26T20:45:19.6426658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addbmm_native.h 2025-08-26T20:45:19.6430196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addbmm_ops.h 2025-08-26T20:45:19.6434386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv.h 2025-08-26T20:45:19.6438108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.6441994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv_cpu_dispatch.h 2025-08-26T20:45:19.6445663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv_cuda_dispatch.h 2025-08-26T20:45:19.6454103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv_meta.h 2025-08-26T20:45:19.6457987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv_meta_dispatch.h 2025-08-26T20:45:19.6461717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv_native.h 2025-08-26T20:45:19.6465428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv_ops.h 2025-08-26T20:45:19.6469184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul.h 2025-08-26T20:45:19.6473268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.6476951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul_cpu_dispatch.h 2025-08-26T20:45:19.6480632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul_cuda_dispatch.h 2025-08-26T20:45:19.6484987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul_meta.h 2025-08-26T20:45:19.6489114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul_meta_dispatch.h 2025-08-26T20:45:19.6492927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul_native.h 2025-08-26T20:45:19.6496681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul_ops.h 2025-08-26T20:45:19.6500417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm.h 2025-08-26T20:45:19.6504269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.6507839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm_cpu_dispatch.h 2025-08-26T20:45:19.6511584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm_cuda_dispatch.h 2025-08-26T20:45:19.6515490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm_meta.h 2025-08-26T20:45:19.6519296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm_meta_dispatch.h 2025-08-26T20:45:19.6523157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm_native.h 2025-08-26T20:45:19.6527265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm_ops.h 2025-08-26T20:45:19.6530969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv.h 2025-08-26T20:45:19.6534998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.6544073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv_cpu_dispatch.h 2025-08-26T20:45:19.6547735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv_cuda_dispatch.h 2025-08-26T20:45:19.6551643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv_meta.h 2025-08-26T20:45:19.6555357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv_meta_dispatch.h 2025-08-26T20:45:19.6559265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv_native.h 2025-08-26T20:45:19.6563308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv_ops.h 2025-08-26T20:45:19.6567225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addr.h 2025-08-26T20:45:19.6571089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addr_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.6574504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addr_cpu_dispatch.h 2025-08-26T20:45:19.6578290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addr_cuda_dispatch.h 2025-08-26T20:45:19.6582299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addr_native.h 2025-08-26T20:45:19.6586515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addr_ops.h 2025-08-26T20:45:19.6590311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.6593977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.6597543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_cpu_dispatch.h 2025-08-26T20:45:19.6601601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_cuda_dispatch.h 2025-08-26T20:45:19.6605657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_meta.h 2025-08-26T20:45:19.6609186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_meta_dispatch.h 2025-08-26T20:45:19.6613105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_native.h 2025-08-26T20:45:19.6616742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_ops.h 2025-08-26T20:45:19.6620264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adjoint.h 2025-08-26T20:45:19.6624399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adjoint_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.6628094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adjoint_native.h 2025-08-26T20:45:19.6632126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adjoint_ops.h 2025-08-26T20:45:19.6635906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator.h 2025-08-26T20:45:19.6639537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator_backward.h 2025-08-26T20:45:19.6661865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.6666417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator_backward_native.h 2025-08-26T20:45:19.6671169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator_backward_ops.h 2025-08-26T20:45:19.6675733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.6684309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator_native.h 2025-08-26T20:45:19.6688655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator_ops.h 2025-08-26T20:45:19.6692476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias.h 2025-08-26T20:45:19.6696614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.6700049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_copy.h 2025-08-26T20:45:19.6704038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.6707768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.6711872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_copy_native.h 2025-08-26T20:45:19.6716695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_copy_ops.h 2025-08-26T20:45:19.6720694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_native.h 2025-08-26T20:45:19.6724318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_ops.h 2025-08-26T20:45:19.6728433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_as.h 2025-08-26T20:45:19.6732293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_as_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.6746686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_as_native.h 2025-08-26T20:45:19.6747040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_as_ops.h 2025-08-26T20:45:19.6747289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_tensors.h 2025-08-26T20:45:19.6747664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_tensors_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.6751487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_tensors_native.h 2025-08-26T20:45:19.6755225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_tensors_ops.h 2025-08-26T20:45:19.6759246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_to.h 2025-08-26T20:45:19.6763029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_to_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.6766619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_to_native.h 2025-08-26T20:45:19.6770293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_to_ops.h 2025-08-26T20:45:19.6774099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all.h 2025-08-26T20:45:19.6777528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\allclose.h 2025-08-26T20:45:19.6781086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\allclose_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.6784747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\allclose_native.h 2025-08-26T20:45:19.6788476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\allclose_ops.h 2025-08-26T20:45:19.6792375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.6796484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.6800503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.6804055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_cpu_dispatch.h 2025-08-26T20:45:19.6807654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_cuda_dispatch.h 2025-08-26T20:45:19.6811581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_meta.h 2025-08-26T20:45:19.6814987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_meta_dispatch.h 2025-08-26T20:45:19.6818661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_native.h 2025-08-26T20:45:19.6822579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_ops.h 2025-08-26T20:45:19.6826169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alpha_dropout.h 2025-08-26T20:45:19.6830189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alpha_dropout_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.6833910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alpha_dropout_native.h 2025-08-26T20:45:19.6843045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alpha_dropout_ops.h 2025-08-26T20:45:19.6846773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax.h 2025-08-26T20:45:19.6850501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.6854060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax_cpu_dispatch.h 2025-08-26T20:45:19.6857933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax_cuda_dispatch.h 2025-08-26T20:45:19.6861806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax_meta.h 2025-08-26T20:45:19.6866044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax_meta_dispatch.h 2025-08-26T20:45:19.6869441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax_native.h 2025-08-26T20:45:19.6873060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax_ops.h 2025-08-26T20:45:19.6876584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin.h 2025-08-26T20:45:19.6880148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax.h 2025-08-26T20:45:19.6883978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.6887707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax_cpu_dispatch.h 2025-08-26T20:45:19.6891817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax_cuda_dispatch.h 2025-08-26T20:45:19.6895916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax_meta.h 2025-08-26T20:45:19.6899742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax_meta_dispatch.h 2025-08-26T20:45:19.6903533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax_native.h 2025-08-26T20:45:19.6907275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax_ops.h 2025-08-26T20:45:19.6911243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.6914789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin_cpu_dispatch.h 2025-08-26T20:45:19.6918949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin_cuda_dispatch.h 2025-08-26T20:45:19.6922772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin_meta.h 2025-08-26T20:45:19.6926362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin_meta_dispatch.h 2025-08-26T20:45:19.6930135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin_native.h 2025-08-26T20:45:19.6933837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin_ops.h 2025-08-26T20:45:19.6937246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\and.h 2025-08-26T20:45:19.6941099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\and_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.6944675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\and_native.h 2025-08-26T20:45:19.6948710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\and_ops.h 2025-08-26T20:45:19.6952522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\angle.h 2025-08-26T20:45:19.6956526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\angle_cpu_dispatch.h 2025-08-26T20:45:19.6960502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\angle_cuda_dispatch.h 2025-08-26T20:45:19.6964194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\angle_native.h 2025-08-26T20:45:19.6967969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\angle_ops.h 2025-08-26T20:45:19.6971661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any.h 2025-08-26T20:45:19.6975576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.6979226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.6983269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.6987044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_cpu_dispatch.h 2025-08-26T20:45:19.6990649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_cuda_dispatch.h 2025-08-26T20:45:19.6999472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_meta.h 2025-08-26T20:45:19.7002955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_meta_dispatch.h 2025-08-26T20:45:19.7007384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_native.h 2025-08-26T20:45:19.7011427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_ops.h 2025-08-26T20:45:19.7014823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arange.h 2025-08-26T20:45:19.7018837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arange_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.7022605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arange_cpu_dispatch.h 2025-08-26T20:45:19.7026462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arange_cuda_dispatch.h 2025-08-26T20:45:19.7030387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arange_meta_dispatch.h 2025-08-26T20:45:19.7034457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arange_native.h 2025-08-26T20:45:19.7038751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arange_ops.h 2025-08-26T20:45:19.7042710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccos.h 2025-08-26T20:45:19.7046333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccosh.h 2025-08-26T20:45:19.7050243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccosh_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.7053949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccosh_native.h 2025-08-26T20:45:19.7057810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccosh_ops.h 2025-08-26T20:45:19.7061924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccos_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.7065576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccos_native.h 2025-08-26T20:45:19.7069310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccos_ops.h 2025-08-26T20:45:19.7073806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsin.h 2025-08-26T20:45:19.7077741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsinh.h 2025-08-26T20:45:19.7081695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsinh_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.7085589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsinh_native.h 2025-08-26T20:45:19.7089320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsinh_ops.h 2025-08-26T20:45:19.7093155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsin_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.7096906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsin_native.h 2025-08-26T20:45:19.7100811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsin_ops.h 2025-08-26T20:45:19.7104878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan.h 2025-08-26T20:45:19.7108719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan2.h 2025-08-26T20:45:19.7112446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan2_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.7116032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan2_native.h 2025-08-26T20:45:19.7119776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan2_ops.h 2025-08-26T20:45:19.7123756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctanh.h 2025-08-26T20:45:19.7127450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctanh_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.7131263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctanh_native.h 2025-08-26T20:45:19.7134998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctanh_ops.h 2025-08-26T20:45:19.7139132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.7142923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan_native.h 2025-08-26T20:45:19.7147198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan_ops.h 2025-08-26T20:45:19.7151345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax.h 2025-08-26T20:45:19.7155287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.7158890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax_cpu_dispatch.h 2025-08-26T20:45:19.7162739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax_cuda_dispatch.h 2025-08-26T20:45:19.7167050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax_meta.h 2025-08-26T20:45:19.7170784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax_meta_dispatch.h 2025-08-26T20:45:19.7174987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax_native.h 2025-08-26T20:45:19.7179349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax_ops.h 2025-08-26T20:45:19.7183075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin.h 2025-08-26T20:45:19.7187241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.7190871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin_cpu_dispatch.h 2025-08-26T20:45:19.7194782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin_cuda_dispatch.h 2025-08-26T20:45:19.7198573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin_meta.h 2025-08-26T20:45:19.7202344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin_meta_dispatch.h 2025-08-26T20:45:19.7206039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin_native.h 2025-08-26T20:45:19.7209840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin_ops.h 2025-08-26T20:45:19.7213576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argsort.h 2025-08-26T20:45:19.7217579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argsort_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.7221249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argsort_native.h 2025-08-26T20:45:19.7225131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argsort_ops.h 2025-08-26T20:45:19.7228975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argwhere.h 2025-08-26T20:45:19.7232695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argwhere_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.7236356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argwhere_native.h 2025-08-26T20:45:19.7239943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argwhere_ops.h 2025-08-26T20:45:19.7243573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin.h 2025-08-26T20:45:19.7247028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh.h 2025-08-26T20:45:19.7250816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.7254350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh_cpu_dispatch.h 2025-08-26T20:45:19.7258286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh_cuda_dispatch.h 2025-08-26T20:45:19.7261903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh_meta.h 2025-08-26T20:45:19.7265637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh_meta_dispatch.h 2025-08-26T20:45:19.7269316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh_native.h 2025-08-26T20:45:19.7273225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh_ops.h 2025-08-26T20:45:19.7277251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.7280973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin_cpu_dispatch.h 2025-08-26T20:45:19.7284903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin_cuda_dispatch.h 2025-08-26T20:45:19.7288466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin_meta.h 2025-08-26T20:45:19.7292319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin_meta_dispatch.h 2025-08-26T20:45:19.7296386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin_native.h 2025-08-26T20:45:19.7299977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin_ops.h 2025-08-26T20:45:19.7303472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided.h 2025-08-26T20:45:19.7307356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.7310888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_copy.h 2025-08-26T20:45:19.7315032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.7318930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.7323048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_copy_native.h 2025-08-26T20:45:19.7334381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_copy_ops.h 2025-08-26T20:45:19.7338085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_cpu_dispatch.h 2025-08-26T20:45:19.7341777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_cuda_dispatch.h 2025-08-26T20:45:19.7345720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_meta_dispatch.h 2025-08-26T20:45:19.7349378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_native.h 2025-08-26T20:45:19.7353237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_ops.h 2025-08-26T20:45:19.7356899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_scatter.h 2025-08-26T20:45:19.7360826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_scatter_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.7364876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_scatter_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.7368782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_scatter_native.h 2025-08-26T20:45:19.7372740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_scatter_ops.h 2025-08-26T20:45:19.7376452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan.h 2025-08-26T20:45:19.7379895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2.h 2025-08-26T20:45:19.7383644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.7387522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2_cpu_dispatch.h 2025-08-26T20:45:19.7392032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2_cuda_dispatch.h 2025-08-26T20:45:19.7395524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2_meta.h 2025-08-26T20:45:19.7399315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2_meta_dispatch.h 2025-08-26T20:45:19.7402990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2_native.h 2025-08-26T20:45:19.7407078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2_ops.h 2025-08-26T20:45:19.7410743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh.h 2025-08-26T20:45:19.7414445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.7418044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh_cpu_dispatch.h 2025-08-26T20:45:19.7421844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh_cuda_dispatch.h 2025-08-26T20:45:19.7425489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh_meta.h 2025-08-26T20:45:19.7429252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh_meta_dispatch.h 2025-08-26T20:45:19.7432888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh_native.h 2025-08-26T20:45:19.7436521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh_ops.h 2025-08-26T20:45:19.7440423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.7444491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan_cpu_dispatch.h 2025-08-26T20:45:19.7448151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan_cuda_dispatch.h 2025-08-26T20:45:19.7451763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan_meta.h 2025-08-26T20:45:19.7455316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan_meta_dispatch.h 2025-08-26T20:45:19.7459198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan_native.h 2025-08-26T20:45:19.7463097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan_ops.h 2025-08-26T20:45:19.7466912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_1d.h 2025-08-26T20:45:19.7470872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_1d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.7474622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_1d_native.h 2025-08-26T20:45:19.7478301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_1d_ops.h 2025-08-26T20:45:19.7482153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_2d.h 2025-08-26T20:45:19.7486122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_2d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.7490074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_2d_native.h 2025-08-26T20:45:19.7494041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_2d_ops.h 2025-08-26T20:45:19.7497890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_3d.h 2025-08-26T20:45:19.7501879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_3d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.7505751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_3d_native.h 2025-08-26T20:45:19.7509511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_3d_ops.h 2025-08-26T20:45:19.7513334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool1d.h 2025-08-26T20:45:19.7517867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool1d_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.7521792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool1d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.7525369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool1d_native.h 2025-08-26T20:45:19.7529156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool1d_ops.h 2025-08-26T20:45:19.7532958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d.h 2025-08-26T20:45:19.7536925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward.h 2025-08-26T20:45:19.7541022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.7545139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward_cpu_dispatch.h 2025-08-26T20:45:19.7549196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward_cuda_dispatch.h 2025-08-26T20:45:19.7553012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward_meta.h 2025-08-26T20:45:19.7557049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward_meta_dispatch.h 2025-08-26T20:45:19.7560700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward_native.h 2025-08-26T20:45:19.7564722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward_ops.h 2025-08-26T20:45:19.7568959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.7572711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_cpu_dispatch.h 2025-08-26T20:45:19.7577573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_cuda_dispatch.h 2025-08-26T20:45:19.7581402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_meta.h 2025-08-26T20:45:19.7585377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_meta_dispatch.h 2025-08-26T20:45:19.7589208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_native.h 2025-08-26T20:45:19.7594112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_ops.h 2025-08-26T20:45:19.7597862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d.h 2025-08-26T20:45:19.7601754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward.h 2025-08-26T20:45:19.7606556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.7610174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward_cpu_dispatch.h 2025-08-26T20:45:19.7614083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward_cuda_dispatch.h 2025-08-26T20:45:19.7619412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward_meta.h 2025-08-26T20:45:19.7623633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward_meta_dispatch.h 2025-08-26T20:45:19.7627611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward_native.h 2025-08-26T20:45:19.7636783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward_ops.h 2025-08-26T20:45:19.7641102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.7644808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_cpu_dispatch.h 2025-08-26T20:45:19.7648636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_cuda_dispatch.h 2025-08-26T20:45:19.7652669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_meta.h 2025-08-26T20:45:19.7656709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_meta_dispatch.h 2025-08-26T20:45:19.7660483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_native.h 2025-08-26T20:45:19.7664584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_ops.h 2025-08-26T20:45:19.7668769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm.h 2025-08-26T20:45:19.7673089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.7677474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm_cpu_dispatch.h 2025-08-26T20:45:19.7695342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm_cuda_dispatch.h 2025-08-26T20:45:19.7699224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm_meta.h 2025-08-26T20:45:19.7703183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm_meta_dispatch.h 2025-08-26T20:45:19.7707175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm_native.h 2025-08-26T20:45:19.7711169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm_ops.h 2025-08-26T20:45:19.7714627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bartlett_window.h 2025-08-26T20:45:19.7718351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bartlett_window_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.7722028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bartlett_window_native.h 2025-08-26T20:45:19.7726061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bartlett_window_ops.h 2025-08-26T20:45:19.7729765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm.h 2025-08-26T20:45:19.7733305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward.h 2025-08-26T20:45:19.7737081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_cpu_dispatch.h 2025-08-26T20:45:19.7741002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_cuda_dispatch.h 2025-08-26T20:45:19.7745170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_elemt.h 2025-08-26T20:45:19.7749120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_elemt_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.7753139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_elemt_cuda_dispatch.h 2025-08-26T20:45:19.7756920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_elemt_native.h 2025-08-26T20:45:19.7761049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_elemt_ops.h 2025-08-26T20:45:19.7764772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_native.h 2025-08-26T20:45:19.7768528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_ops.h 2025-08-26T20:45:19.7772553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_reduce.h 2025-08-26T20:45:19.7776649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_reduce_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.7780511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_reduce_cuda_dispatch.h 2025-08-26T20:45:19.7784367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_reduce_native.h 2025-08-26T20:45:19.7788165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_reduce_ops.h 2025-08-26T20:45:19.7792009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.7795890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_elemt.h 2025-08-26T20:45:19.7799723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_elemt_cuda_dispatch.h 2025-08-26T20:45:19.7803496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_elemt_native.h 2025-08-26T20:45:19.7807266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_elemt_ops.h 2025-08-26T20:45:19.7811051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats.h 2025-08-26T20:45:19.7815133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.7818994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_cuda_dispatch.h 2025-08-26T20:45:19.7823133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_native.h 2025-08-26T20:45:19.7827064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_ops.h 2025-08-26T20:45:19.7831016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_with_counts.h 2025-08-26T20:45:19.7835278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_with_counts_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.7839522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_with_counts_cuda_dispatch.h 2025-08-26T20:45:19.7843624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_with_counts_native.h 2025-08-26T20:45:19.7847460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_with_counts_ops.h 2025-08-26T20:45:19.7851228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_native.h 2025-08-26T20:45:19.7854920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_ops.h 2025-08-26T20:45:19.7858660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_stats.h 2025-08-26T20:45:19.7862626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_stats_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.7866698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_stats_cuda_dispatch.h 2025-08-26T20:45:19.7870468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_stats_native.h 2025-08-26T20:45:19.7874552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_stats_ops.h 2025-08-26T20:45:19.7878391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_update_stats.h 2025-08-26T20:45:19.7882506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_update_stats_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.7886216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_update_stats_cpu_dispatch.h 2025-08-26T20:45:19.7890159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_update_stats_cuda_dispatch.h 2025-08-26T20:45:19.7894287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_update_stats_native.h 2025-08-26T20:45:19.7898633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_update_stats_ops.h 2025-08-26T20:45:19.7902113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli.h 2025-08-26T20:45:19.7906136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.7909831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.7913712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli_cpu_dispatch.h 2025-08-26T20:45:19.7917516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli_cuda_dispatch.h 2025-08-26T20:45:19.7927978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli_meta_dispatch.h 2025-08-26T20:45:19.7931678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli_native.h 2025-08-26T20:45:19.7935359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli_ops.h 2025-08-26T20:45:19.7939510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bilinear.h 2025-08-26T20:45:19.7943703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bilinear_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.7947769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bilinear_native.h 2025-08-26T20:45:19.7951686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bilinear_ops.h 2025-08-26T20:45:19.7955385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy.h 2025-08-26T20:45:19.7959105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_backward.h 2025-08-26T20:45:19.7963199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_backward_cpu_dispatch.h 2025-08-26T20:45:19.7966977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_backward_cuda_dispatch.h 2025-08-26T20:45:19.7971164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_backward_native.h 2025-08-26T20:45:19.7975076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_backward_ops.h 2025-08-26T20:45:19.7979025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_cpu_dispatch.h 2025-08-26T20:45:19.7982798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_cuda_dispatch.h 2025-08-26T20:45:19.7986600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_native.h 2025-08-26T20:45:19.7990303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_ops.h 2025-08-26T20:45:19.7994153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_with_logits.h 2025-08-26T20:45:19.7998230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_with_logits_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.8002208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_with_logits_native.h 2025-08-26T20:45:19.8005932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_with_logits_ops.h 2025-08-26T20:45:19.8009540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bincount.h 2025-08-26T20:45:19.8013150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bincount_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.8016790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bincount_cpu_dispatch.h 2025-08-26T20:45:19.8021054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bincount_cuda_dispatch.h 2025-08-26T20:45:19.8024641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bincount_native.h 2025-08-26T20:45:19.8028335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bincount_ops.h 2025-08-26T20:45:19.8032012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binomial.h 2025-08-26T20:45:19.8036104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binomial_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.8040177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binomial_cpu_dispatch.h 2025-08-26T20:45:19.8043872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binomial_cuda_dispatch.h 2025-08-26T20:45:19.8047868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binomial_native.h 2025-08-26T20:45:19.8051715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binomial_ops.h 2025-08-26T20:45:19.8055425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and.h 2025-08-26T20:45:19.8059498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.8063268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.8067008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_cpu_dispatch.h 2025-08-26T20:45:19.8070788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_cuda_dispatch.h 2025-08-26T20:45:19.8074567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_meta.h 2025-08-26T20:45:19.8079165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_meta_dispatch.h 2025-08-26T20:45:19.8082839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_native.h 2025-08-26T20:45:19.8086793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_ops.h 2025-08-26T20:45:19.8090579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift.h 2025-08-26T20:45:19.8094532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.8098775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.8102827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_cpu_dispatch.h 2025-08-26T20:45:19.8106712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_cuda_dispatch.h 2025-08-26T20:45:19.8110558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_meta.h 2025-08-26T20:45:19.8114466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_meta_dispatch.h 2025-08-26T20:45:19.8118218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_native.h 2025-08-26T20:45:19.8122268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_ops.h 2025-08-26T20:45:19.8126643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not.h 2025-08-26T20:45:19.8130384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.8134111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not_cpu_dispatch.h 2025-08-26T20:45:19.8137986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not_cuda_dispatch.h 2025-08-26T20:45:19.8142207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not_meta.h 2025-08-26T20:45:19.8146194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not_meta_dispatch.h 2025-08-26T20:45:19.8150026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not_native.h 2025-08-26T20:45:19.8154473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not_ops.h 2025-08-26T20:45:19.8158260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or.h 2025-08-26T20:45:19.8162413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.8166188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.8170542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_cpu_dispatch.h 2025-08-26T20:45:19.8175402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_cuda_dispatch.h 2025-08-26T20:45:19.8178894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_meta.h 2025-08-26T20:45:19.8183714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_meta_dispatch.h 2025-08-26T20:45:19.8188018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_native.h 2025-08-26T20:45:19.8192252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_ops.h 2025-08-26T20:45:19.8196827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift.h 2025-08-26T20:45:19.8201571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.8206136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.8210703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_cpu_dispatch.h 2025-08-26T20:45:19.8215218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_cuda_dispatch.h 2025-08-26T20:45:19.8219340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_meta.h 2025-08-26T20:45:19.8223346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_meta_dispatch.h 2025-08-26T20:45:19.8227286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_native.h 2025-08-26T20:45:19.8231230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_ops.h 2025-08-26T20:45:19.8235084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor.h 2025-08-26T20:45:19.8239454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.8243571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.8247735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_cpu_dispatch.h 2025-08-26T20:45:19.8251526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_cuda_dispatch.h 2025-08-26T20:45:19.8255434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_meta.h 2025-08-26T20:45:19.8259190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_meta_dispatch.h 2025-08-26T20:45:19.8263495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_native.h 2025-08-26T20:45:19.8267615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_ops.h 2025-08-26T20:45:19.8278103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\blackman_window.h 2025-08-26T20:45:19.8279365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\blackman_window_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.8282200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\blackman_window_native.h 2025-08-26T20:45:19.8285860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\blackman_window_ops.h 2025-08-26T20:45:19.8289647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\block_diag.h 2025-08-26T20:45:19.8293725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\block_diag_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.8297475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\block_diag_native.h 2025-08-26T20:45:19.8301317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\block_diag_ops.h 2025-08-26T20:45:19.8305306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm.h 2025-08-26T20:45:19.8308971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.8312483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm_cpu_dispatch.h 2025-08-26T20:45:19.8316135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm_cuda_dispatch.h 2025-08-26T20:45:19.8320290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm_meta.h 2025-08-26T20:45:19.8323940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm_meta_dispatch.h 2025-08-26T20:45:19.8327674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm_native.h 2025-08-26T20:45:19.8331232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm_ops.h 2025-08-26T20:45:19.8334686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_tensors.h 2025-08-26T20:45:19.8338466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_tensors_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.8342037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_tensors_native.h 2025-08-26T20:45:19.8345975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_tensors_ops.h 2025-08-26T20:45:19.8350234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_to.h 2025-08-26T20:45:19.8354034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_to_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.8358352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_to_native.h 2025-08-26T20:45:19.8362271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_to_ops.h 2025-08-26T20:45:19.8365930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bucketize.h 2025-08-26T20:45:19.8369783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bucketize_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.8373216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bucketize_cpu_dispatch.h 2025-08-26T20:45:19.8377197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bucketize_cuda_dispatch.h 2025-08-26T20:45:19.8380898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bucketize_native.h 2025-08-26T20:45:19.8384653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bucketize_ops.h 2025-08-26T20:45:19.8388406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\can_cast.h 2025-08-26T20:45:19.8392076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\can_cast_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.8395832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\can_cast_native.h 2025-08-26T20:45:19.8399431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\can_cast_ops.h 2025-08-26T20:45:19.8403215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cartesian_prod.h 2025-08-26T20:45:19.8407147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cartesian_prod_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.8410801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cartesian_prod_native.h 2025-08-26T20:45:19.8414394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cartesian_prod_ops.h 2025-08-26T20:45:19.8418078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat.h 2025-08-26T20:45:19.8421796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.8425624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.8429854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_cpu_dispatch.h 2025-08-26T20:45:19.8433492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_cuda_dispatch.h 2025-08-26T20:45:19.8437170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_meta.h 2025-08-26T20:45:19.8440565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_meta_dispatch.h 2025-08-26T20:45:19.8444095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_native.h 2025-08-26T20:45:19.8447639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_ops.h 2025-08-26T20:45:19.8451307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cauchy.h 2025-08-26T20:45:19.8454915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cauchy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.8458911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cauchy_cpu_dispatch.h 2025-08-26T20:45:19.8463550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cauchy_cuda_dispatch.h 2025-08-26T20:45:19.8467721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cauchy_meta_dispatch.h 2025-08-26T20:45:19.8478121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cauchy_native.h 2025-08-26T20:45:19.8482217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cauchy_ops.h 2025-08-26T20:45:19.8486035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices.h 2025-08-26T20:45:19.8489851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.8493731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_copy.h 2025-08-26T20:45:19.8498134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.8502236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.8506795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_copy_native.h 2025-08-26T20:45:19.8510898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_copy_ops.h 2025-08-26T20:45:19.8515025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_native.h 2025-08-26T20:45:19.8518679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_ops.h 2025-08-26T20:45:19.8523407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cdist.h 2025-08-26T20:45:19.8526675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cdist_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.8530840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cdist_native.h 2025-08-26T20:45:19.8534885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cdist_ops.h 2025-08-26T20:45:19.8538251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil.h 2025-08-26T20:45:19.8542512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.8546628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil_cpu_dispatch.h 2025-08-26T20:45:19.8550175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil_cuda_dispatch.h 2025-08-26T20:45:19.8554247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil_meta.h 2025-08-26T20:45:19.8557854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil_meta_dispatch.h 2025-08-26T20:45:19.8561541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil_native.h 2025-08-26T20:45:19.8565194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil_ops.h 2025-08-26T20:45:19.8568592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\celu.h 2025-08-26T20:45:19.8572256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\celu_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.8575767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\celu_native.h 2025-08-26T20:45:19.8579818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\celu_ops.h 2025-08-26T20:45:19.8583607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chain_matmul.h 2025-08-26T20:45:19.8587479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chain_matmul_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.8591298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chain_matmul_native.h 2025-08-26T20:45:19.8594956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chain_matmul_ops.h 2025-08-26T20:45:19.8598615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chalf.h 2025-08-26T20:45:19.8602744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chalf_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.8606338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chalf_native.h 2025-08-26T20:45:19.8610062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chalf_ops.h 2025-08-26T20:45:19.8614034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\channel_shuffle.h 2025-08-26T20:45:19.8617841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\channel_shuffle_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.8621936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\channel_shuffle_cpu_dispatch.h 2025-08-26T20:45:19.8626038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\channel_shuffle_cuda_dispatch.h 2025-08-26T20:45:19.8629699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\channel_shuffle_native.h 2025-08-26T20:45:19.8633512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\channel_shuffle_ops.h 2025-08-26T20:45:19.8637248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky.h 2025-08-26T20:45:19.8641197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_cpu_dispatch.h 2025-08-26T20:45:19.8645490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_cuda_dispatch.h 2025-08-26T20:45:19.8649156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_inverse.h 2025-08-26T20:45:19.8652844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_inverse_cpu_dispatch.h 2025-08-26T20:45:19.8656733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_inverse_cuda_dispatch.h 2025-08-26T20:45:19.8660425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_inverse_native.h 2025-08-26T20:45:19.8664742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_inverse_ops.h 2025-08-26T20:45:19.8668946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_native.h 2025-08-26T20:45:19.8672650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_ops.h 2025-08-26T20:45:19.8676694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_solve.h 2025-08-26T20:45:19.8680994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_solve_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.8684698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_solve_native.h 2025-08-26T20:45:19.8689408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_solve_ops.h 2025-08-26T20:45:19.8693329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\choose_qparams_optimized.h 2025-08-26T20:45:19.8697304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\choose_qparams_optimized_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.8701405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\choose_qparams_optimized_native.h 2025-08-26T20:45:19.8705273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\choose_qparams_optimized_ops.h 2025-08-26T20:45:19.8709064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chunk.h 2025-08-26T20:45:19.8728693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chunk_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.8732446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chunk_native.h 2025-08-26T20:45:19.8736023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chunk_ops.h 2025-08-26T20:45:19.8739958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp.h 2025-08-26T20:45:19.8743772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.8747352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_cpu_dispatch.h 2025-08-26T20:45:19.8751285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_cuda_dispatch.h 2025-08-26T20:45:19.8754761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max.h 2025-08-26T20:45:19.8759110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.8762791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max_cpu_dispatch.h 2025-08-26T20:45:19.8767034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max_cuda_dispatch.h 2025-08-26T20:45:19.8770498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max_meta.h 2025-08-26T20:45:19.8774238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max_meta_dispatch.h 2025-08-26T20:45:19.8777900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max_native.h 2025-08-26T20:45:19.8781523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max_ops.h 2025-08-26T20:45:19.8785415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_meta.h 2025-08-26T20:45:19.8789199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_meta_dispatch.h 2025-08-26T20:45:19.8792903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min.h 2025-08-26T20:45:19.8797533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.8801218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min_cpu_dispatch.h 2025-08-26T20:45:19.8804997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min_cuda_dispatch.h 2025-08-26T20:45:19.8809157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min_meta.h 2025-08-26T20:45:19.8812964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min_meta_dispatch.h 2025-08-26T20:45:19.8816657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min_native.h 2025-08-26T20:45:19.8820369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min_ops.h 2025-08-26T20:45:19.8825574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_native.h 2025-08-26T20:45:19.8828380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_ops.h 2025-08-26T20:45:19.8831954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clip.h 2025-08-26T20:45:19.8835611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clip_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.8839156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clip_native.h 2025-08-26T20:45:19.8843137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clip_ops.h 2025-08-26T20:45:19.8846500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clone.h 2025-08-26T20:45:19.8850045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clone_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.8853735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clone_native.h 2025-08-26T20:45:19.8857276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clone_ops.h 2025-08-26T20:45:19.8861425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\coalesce.h 2025-08-26T20:45:19.8865133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\coalesce_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.8868746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\coalesce_native.h 2025-08-26T20:45:19.8872449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\coalesce_ops.h 2025-08-26T20:45:19.8876104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col2im.h 2025-08-26T20:45:19.8879653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col2im_cpu_dispatch.h 2025-08-26T20:45:19.8883445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col2im_cuda_dispatch.h 2025-08-26T20:45:19.8887319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col2im_native.h 2025-08-26T20:45:19.8890948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col2im_ops.h 2025-08-26T20:45:19.8894772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\column_stack.h 2025-08-26T20:45:19.8899187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\column_stack_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.8902630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\column_stack_native.h 2025-08-26T20:45:19.8906362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\column_stack_ops.h 2025-08-26T20:45:19.8910045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices.h 2025-08-26T20:45:19.8914191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.8918793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_copy.h 2025-08-26T20:45:19.8923217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.8927144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.8931122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_copy_native.h 2025-08-26T20:45:19.8935566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_copy_ops.h 2025-08-26T20:45:19.8939510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_native.h 2025-08-26T20:45:19.8943441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_ops.h 2025-08-26T20:45:19.8947188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\combinations.h 2025-08-26T20:45:19.8951164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\combinations_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.8955040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\combinations_native.h 2025-08-26T20:45:19.8959433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\combinations_ops.h 2025-08-26T20:45:19.8963218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\complex.h 2025-08-26T20:45:19.8966983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\complex_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.8970744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\complex_cpu_dispatch.h 2025-08-26T20:45:19.8974576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\complex_cuda_dispatch.h 2025-08-26T20:45:19.8978337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\complex_native.h 2025-08-26T20:45:19.8982169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\complex_ops.h 2025-08-26T20:45:19.8986187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concat.h 2025-08-26T20:45:19.8989747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concatenate.h 2025-08-26T20:45:19.8993636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concatenate_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.8997790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concatenate_native.h 2025-08-26T20:45:19.9001620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concatenate_ops.h 2025-08-26T20:45:19.9005764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concat_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.9009636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concat_native.h 2025-08-26T20:45:19.9013355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concat_ops.h 2025-08-26T20:45:19.9017163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj.h 2025-08-26T20:45:19.9020848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.9024550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_native.h 2025-08-26T20:45:19.9028450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_ops.h 2025-08-26T20:45:19.9032302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_physical.h 2025-08-26T20:45:19.9036180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_physical_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.9040890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_physical_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.9044733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_physical_cpu_dispatch.h 2025-08-26T20:45:19.9048501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_physical_cuda_dispatch.h 2025-08-26T20:45:19.9052621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_physical_native.h 2025-08-26T20:45:19.9056682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_physical_ops.h 2025-08-26T20:45:19.9060616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\constant_pad_nd.h 2025-08-26T20:45:19.9064643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\constant_pad_nd_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.9068301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\constant_pad_nd_native.h 2025-08-26T20:45:19.9072018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\constant_pad_nd_ops.h 2025-08-26T20:45:19.9075815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\contiguous.h 2025-08-26T20:45:19.9088368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\contiguous_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.9092412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\contiguous_native.h 2025-08-26T20:45:19.9096617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\contiguous_ops.h 2025-08-26T20:45:19.9099868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv1d.h 2025-08-26T20:45:19.9103902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv1d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.9108053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv1d_native.h 2025-08-26T20:45:19.9111576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv1d_ops.h 2025-08-26T20:45:19.9115883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv2d.h 2025-08-26T20:45:19.9119636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv2d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.9123543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv2d_native.h 2025-08-26T20:45:19.9127352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv2d_ops.h 2025-08-26T20:45:19.9131106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv3d.h 2025-08-26T20:45:19.9134768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv3d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.9138355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv3d_native.h 2025-08-26T20:45:19.9141897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv3d_ops.h 2025-08-26T20:45:19.9145613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution.h 2025-08-26T20:45:19.9149901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward.h 2025-08-26T20:45:19.9153884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.9157650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_cuda_dispatch.h 2025-08-26T20:45:19.9162089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_native.h 2025-08-26T20:45:19.9165835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_ops.h 2025-08-26T20:45:19.9169644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_overrideable.h 2025-08-26T20:45:19.9191330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_overrideable_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.9192212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_overrideable_native.h 2025-08-26T20:45:19.9192967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_overrideable_ops.h 2025-08-26T20:45:19.9193736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.9194445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_native.h 2025-08-26T20:45:19.9197246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_ops.h 2025-08-26T20:45:19.9201122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_overrideable.h 2025-08-26T20:45:19.9205360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_overrideable_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.9210043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_overrideable_native.h 2025-08-26T20:45:19.9213277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_overrideable_ops.h 2025-08-26T20:45:19.9217369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_depthwise3d.h 2025-08-26T20:45:19.9221178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_depthwise3d_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.9226605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_depthwise3d_cuda_dispatch.h 2025-08-26T20:45:19.9229084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_depthwise3d_native.h 2025-08-26T20:45:19.9232840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_depthwise3d_ops.h 2025-08-26T20:45:19.9236613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc.h 2025-08-26T20:45:19.9240200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc_backward.h 2025-08-26T20:45:19.9244148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.9248275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc_backward_native.h 2025-08-26T20:45:19.9252333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc_backward_ops.h 2025-08-26T20:45:19.9256265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.9260071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc_native.h 2025-08-26T20:45:19.9263883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc_ops.h 2025-08-26T20:45:19.9267808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose1d.h 2025-08-26T20:45:19.9271996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose1d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.9275897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose1d_native.h 2025-08-26T20:45:19.9279835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose1d_ops.h 2025-08-26T20:45:19.9283621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose2d.h 2025-08-26T20:45:19.9287566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose2d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.9291310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose2d_native.h 2025-08-26T20:45:19.9295110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose2d_ops.h 2025-08-26T20:45:19.9298893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose3d.h 2025-08-26T20:45:19.9302819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose3d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.9306978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose3d_native.h 2025-08-26T20:45:19.9310776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose3d_ops.h 2025-08-26T20:45:19.9314503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy.h 2025-08-26T20:45:19.9318040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign.h 2025-08-26T20:45:19.9321914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.9325916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.9329787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_cpu_dispatch.h 2025-08-26T20:45:19.9333678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_cuda_dispatch.h 2025-08-26T20:45:19.9337405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_meta.h 2025-08-26T20:45:19.9341386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_meta_dispatch.h 2025-08-26T20:45:19.9345479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_native.h 2025-08-26T20:45:19.9349172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_ops.h 2025-08-26T20:45:19.9353463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.9357176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.9360917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_meta_dispatch.h 2025-08-26T20:45:19.9364506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_native.h 2025-08-26T20:45:19.9368297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_ops.h 2025-08-26T20:45:19.9371779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_sparse_to_sparse.h 2025-08-26T20:45:19.9375621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_sparse_to_sparse_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.9379312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_sparse_to_sparse_meta_dispatch.h 2025-08-26T20:45:19.9383132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_sparse_to_sparse_native.h 2025-08-26T20:45:19.9387219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_sparse_to_sparse_ops.h 2025-08-26T20:45:19.9391016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\corrcoef.h 2025-08-26T20:45:19.9394632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\corrcoef_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.9398210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\corrcoef_native.h 2025-08-26T20:45:19.9401820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\corrcoef_ops.h 2025-08-26T20:45:19.9405587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos.h 2025-08-26T20:45:19.9409017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh.h 2025-08-26T20:45:19.9412715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.9417180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh_cpu_dispatch.h 2025-08-26T20:45:19.9420966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh_cuda_dispatch.h 2025-08-26T20:45:19.9424878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh_meta.h 2025-08-26T20:45:19.9428531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh_meta_dispatch.h 2025-08-26T20:45:19.9432358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh_native.h 2025-08-26T20:45:19.9436137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh_ops.h 2025-08-26T20:45:19.9439641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_embedding_loss.h 2025-08-26T20:45:19.9443736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_embedding_loss_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.9448058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_embedding_loss_native.h 2025-08-26T20:45:19.9451865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_embedding_loss_ops.h 2025-08-26T20:45:19.9456422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_similarity.h 2025-08-26T20:45:19.9461042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_similarity_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.9465534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_similarity_native.h 2025-08-26T20:45:19.9469389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_similarity_ops.h 2025-08-26T20:45:19.9474051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.9477969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos_cpu_dispatch.h 2025-08-26T20:45:19.9481925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos_cuda_dispatch.h 2025-08-26T20:45:19.9485402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos_meta.h 2025-08-26T20:45:19.9488977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos_meta_dispatch.h 2025-08-26T20:45:19.9492994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos_native.h 2025-08-26T20:45:19.9496505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos_ops.h 2025-08-26T20:45:19.9500270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\count_nonzero.h 2025-08-26T20:45:19.9504644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\count_nonzero_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.9508317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\count_nonzero_cpu_dispatch.h 2025-08-26T20:45:19.9512589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\count_nonzero_cuda_dispatch.h 2025-08-26T20:45:19.9516526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\count_nonzero_native.h 2025-08-26T20:45:19.9520302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\count_nonzero_ops.h 2025-08-26T20:45:19.9524453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cov.h 2025-08-26T20:45:19.9528280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cov_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.9532114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cov_native.h 2025-08-26T20:45:19.9535944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cov_ops.h 2025-08-26T20:45:19.9539488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross.h 2025-08-26T20:45:19.9543092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.9546937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross_entropy_loss.h 2025-08-26T20:45:19.9550996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross_entropy_loss_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.9554674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross_entropy_loss_native.h 2025-08-26T20:45:19.9558967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross_entropy_loss_ops.h 2025-08-26T20:45:19.9562720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross_native.h 2025-08-26T20:45:19.9567103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross_ops.h 2025-08-26T20:45:19.9571082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices.h 2025-08-26T20:45:19.9574999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.9578814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_copy.h 2025-08-26T20:45:19.9582880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.9588026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.9591836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_copy_native.h 2025-08-26T20:45:19.9595985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_copy_ops.h 2025-08-26T20:45:19.9599836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_native.h 2025-08-26T20:45:19.9603588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_ops.h 2025-08-26T20:45:19.9608190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ctc_loss.h 2025-08-26T20:45:19.9611733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ctc_loss_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.9615755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ctc_loss_native.h 2025-08-26T20:45:19.9619309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ctc_loss_ops.h 2025-08-26T20:45:19.9623396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator.h 2025-08-26T20:45:19.9636055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_backward.h 2025-08-26T20:45:19.9639994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.9643959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_backward_cuda_dispatch.h 2025-08-26T20:45:19.9648285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_backward_native.h 2025-08-26T20:45:19.9652413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_backward_ops.h 2025-08-26T20:45:19.9656488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.9660462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_cuda_dispatch.h 2025-08-26T20:45:19.9664741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_native.h 2025-08-26T20:45:19.9668880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_ops.h 2025-08-26T20:45:19.9673389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm.h 2025-08-26T20:45:19.9677439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_backward.h 2025-08-26T20:45:19.9681366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.9685545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_backward_cuda_dispatch.h 2025-08-26T20:45:19.9689581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_backward_native.h 2025-08-26T20:45:19.9693824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_backward_ops.h 2025-08-26T20:45:19.9697821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_cuda_dispatch.h 2025-08-26T20:45:19.9701965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_native.h 2025-08-26T20:45:19.9705936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_ops.h 2025-08-26T20:45:19.9710053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution.h 2025-08-26T20:45:19.9713948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_add_relu.h 2025-08-26T20:45:19.9718745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_add_relu_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.9722713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_add_relu_cuda_dispatch.h 2025-08-26T20:45:19.9726944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_add_relu_native.h 2025-08-26T20:45:19.9730796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_add_relu_ops.h 2025-08-26T20:45:19.9734679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_cuda_dispatch.h 2025-08-26T20:45:19.9738585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_native.h 2025-08-26T20:45:19.9742584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_ops.h 2025-08-26T20:45:19.9746647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_relu.h 2025-08-26T20:45:19.9764397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_relu_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.9768253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_relu_cuda_dispatch.h 2025-08-26T20:45:19.9772701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_relu_native.h 2025-08-26T20:45:19.9776511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_relu_ops.h 2025-08-26T20:45:19.9780576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_transpose.h 2025-08-26T20:45:19.9785287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_transpose_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.9789177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_transpose_cuda_dispatch.h 2025-08-26T20:45:19.9793277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_transpose_native.h 2025-08-26T20:45:19.9797122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_transpose_ops.h 2025-08-26T20:45:19.9800857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler.h 2025-08-26T20:45:19.9804867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_backward.h 2025-08-26T20:45:19.9808850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.9812670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_backward_cuda_dispatch.h 2025-08-26T20:45:19.9816596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_backward_native.h 2025-08-26T20:45:19.9820522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_backward_ops.h 2025-08-26T20:45:19.9824504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.9828622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_cuda_dispatch.h 2025-08-26T20:45:19.9832439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_native.h 2025-08-26T20:45:19.9836562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_ops.h 2025-08-26T20:45:19.9840707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_is_acceptable.h 2025-08-26T20:45:19.9844658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_is_acceptable_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.9848371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_is_acceptable_native.h 2025-08-26T20:45:19.9852339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_is_acceptable_ops.h 2025-08-26T20:45:19.9856308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummax.h 2025-08-26T20:45:19.9859922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummaxmin_backward.h 2025-08-26T20:45:19.9864016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummaxmin_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.9867714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummaxmin_backward_native.h 2025-08-26T20:45:19.9871962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummaxmin_backward_ops.h 2025-08-26T20:45:19.9876044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummax_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.9880518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummax_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.9884324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummax_native.h 2025-08-26T20:45:19.9888156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummax_ops.h 2025-08-26T20:45:19.9891767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummin.h 2025-08-26T20:45:19.9895407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummin_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:19.9899316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummin_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.9903257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummin_native.h 2025-08-26T20:45:19.9907730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummin_ops.h 2025-08-26T20:45:19.9911287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod.h 2025-08-26T20:45:19.9914795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_backward.h 2025-08-26T20:45:19.9918788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.9922433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_backward_native.h 2025-08-26T20:45:19.9926159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_backward_ops.h 2025-08-26T20:45:19.9930433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.9934469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.9938320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_cpu_dispatch.h 2025-08-26T20:45:19.9942186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_cuda_dispatch.h 2025-08-26T20:45:19.9946032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_meta.h 2025-08-26T20:45:19.9949999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_meta_dispatch.h 2025-08-26T20:45:19.9953935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_native.h 2025-08-26T20:45:19.9959184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_ops.h 2025-08-26T20:45:19.9962749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum.h 2025-08-26T20:45:19.9967516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:19.9971215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:19.9976180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_cpu_dispatch.h 2025-08-26T20:45:19.9979236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_cuda_dispatch.h 2025-08-26T20:45:19.9983033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_meta.h 2025-08-26T20:45:19.9987966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_meta_dispatch.h 2025-08-26T20:45:19.9991618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_native.h 2025-08-26T20:45:19.9995584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_ops.h 2025-08-26T20:45:19.9999403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumulative_trapezoid.h 2025-08-26T20:45:20.0003780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumulative_trapezoid_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.0007489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumulative_trapezoid_native.h 2025-08-26T20:45:20.0011378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumulative_trapezoid_ops.h 2025-08-26T20:45:20.0015443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\data.h 2025-08-26T20:45:20.0019410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\data_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.0023267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\data_native.h 2025-08-26T20:45:20.0026732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\data_ops.h 2025-08-26T20:45:20.0030275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\deg2rad.h 2025-08-26T20:45:20.0034377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\deg2rad_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.0037911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\deg2rad_native.h 2025-08-26T20:45:20.0041752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\deg2rad_ops.h 2025-08-26T20:45:20.0045453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dense_dim.h 2025-08-26T20:45:20.0049970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dense_dim_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.0054469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dense_dim_native.h 2025-08-26T20:45:20.0058768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dense_dim_ops.h 2025-08-26T20:45:20.0062110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dequantize.h 2025-08-26T20:45:20.0066529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dequantize_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.0070341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dequantize_cpu_dispatch.h 2025-08-26T20:45:20.0074059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dequantize_cuda_dispatch.h 2025-08-26T20:45:20.0078384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dequantize_native.h 2025-08-26T20:45:20.0082288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dequantize_ops.h 2025-08-26T20:45:20.0087319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\det.h 2025-08-26T20:45:20.0089971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach.h 2025-08-26T20:45:20.0093779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.0097491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_copy.h 2025-08-26T20:45:20.0102093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.0106366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.0110557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_copy_native.h 2025-08-26T20:45:20.0114264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_copy_ops.h 2025-08-26T20:45:20.0118601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_native.h 2025-08-26T20:45:20.0122526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_ops.h 2025-08-26T20:45:20.0127472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\det_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.0130319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\det_native.h 2025-08-26T20:45:20.0134050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\det_ops.h 2025-08-26T20:45:20.0139998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag.h 2025-08-26T20:45:20.0143721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagflat.h 2025-08-26T20:45:20.0149315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagflat_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.0153194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagflat_native.h 2025-08-26T20:45:20.0157059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagflat_ops.h 2025-08-26T20:45:20.0161092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal.h 2025-08-26T20:45:20.0164760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_backward.h 2025-08-26T20:45:20.0168578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.0172554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_backward_native.h 2025-08-26T20:45:20.0176542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_backward_ops.h 2025-08-26T20:45:20.0180643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.0184825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.0188828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_copy.h 2025-08-26T20:45:20.0193184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.0197813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.0201924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_copy_native.h 2025-08-26T20:45:20.0205796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_copy_ops.h 2025-08-26T20:45:20.0209842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_native.h 2025-08-26T20:45:20.0213964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_ops.h 2025-08-26T20:45:20.0217988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_scatter.h 2025-08-26T20:45:20.0222590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_scatter_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.0226942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_scatter_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.0230784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_scatter_native.h 2025-08-26T20:45:20.0234524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_scatter_ops.h 2025-08-26T20:45:20.0238640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.0242965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_embed.h 2025-08-26T20:45:20.0247009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_embed_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.0251006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_embed_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.0254861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_embed_native.h 2025-08-26T20:45:20.0258627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_embed_ops.h 2025-08-26T20:45:20.0262549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_native.h 2025-08-26T20:45:20.0266739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_ops.h 2025-08-26T20:45:20.0270190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diff.h 2025-08-26T20:45:20.0273958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diff_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.0277850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diff_native.h 2025-08-26T20:45:20.0281563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diff_ops.h 2025-08-26T20:45:20.0284997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma.h 2025-08-26T20:45:20.0288712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.0292673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma_cpu_dispatch.h 2025-08-26T20:45:20.0296777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma_cuda_dispatch.h 2025-08-26T20:45:20.0300573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma_meta.h 2025-08-26T20:45:20.0304339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma_meta_dispatch.h 2025-08-26T20:45:20.0308301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma_native.h 2025-08-26T20:45:20.0311962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma_ops.h 2025-08-26T20:45:20.0316241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dist.h 2025-08-26T20:45:20.0320058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dist_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.0323714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dist_native.h 2025-08-26T20:45:20.0327279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dist_ops.h 2025-08-26T20:45:20.0330719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div.h 2025-08-26T20:45:20.0334161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\divide.h 2025-08-26T20:45:20.0338359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\divide_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.0342341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\divide_native.h 2025-08-26T20:45:20.0346319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\divide_ops.h 2025-08-26T20:45:20.0350158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.0353829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.0357415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_cpu_dispatch.h 2025-08-26T20:45:20.0361032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_cuda_dispatch.h 2025-08-26T20:45:20.0365152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_meta.h 2025-08-26T20:45:20.0368678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_meta_dispatch.h 2025-08-26T20:45:20.0372532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_native.h 2025-08-26T20:45:20.0376097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_ops.h 2025-08-26T20:45:20.0379577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dot.h 2025-08-26T20:45:20.0383173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dot_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.0386923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dot_cpu_dispatch.h 2025-08-26T20:45:20.0390493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dot_cuda_dispatch.h 2025-08-26T20:45:20.0394241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dot_native.h 2025-08-26T20:45:20.0398110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dot_ops.h 2025-08-26T20:45:20.0401573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dropout.h 2025-08-26T20:45:20.0405088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dropout_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.0408699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dropout_native.h 2025-08-26T20:45:20.0412310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dropout_ops.h 2025-08-26T20:45:20.0415963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dsplit.h 2025-08-26T20:45:20.0419645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dsplit_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.0423515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dsplit_native.h 2025-08-26T20:45:20.0427163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dsplit_ops.h 2025-08-26T20:45:20.0431265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dstack.h 2025-08-26T20:45:20.0435347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dstack_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.0438798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dstack_native.h 2025-08-26T20:45:20.0442410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dstack_ops.h 2025-08-26T20:45:20.0446420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\einsum.h 2025-08-26T20:45:20.0450191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\einsum_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.0453969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\einsum_native.h 2025-08-26T20:45:20.0457679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\einsum_ops.h 2025-08-26T20:45:20.0461282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu.h 2025-08-26T20:45:20.0464873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward.h 2025-08-26T20:45:20.0468715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.0472431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward_cpu_dispatch.h 2025-08-26T20:45:20.0476088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward_cuda_dispatch.h 2025-08-26T20:45:20.0480318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward_meta.h 2025-08-26T20:45:20.0484128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward_meta_dispatch.h 2025-08-26T20:45:20.0487991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward_native.h 2025-08-26T20:45:20.0491758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward_ops.h 2025-08-26T20:45:20.0496059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.0499723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_cpu_dispatch.h 2025-08-26T20:45:20.0503336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_cuda_dispatch.h 2025-08-26T20:45:20.0507222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_meta.h 2025-08-26T20:45:20.0510871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_meta_dispatch.h 2025-08-26T20:45:20.0514474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_native.h 2025-08-26T20:45:20.0518150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_ops.h 2025-08-26T20:45:20.0521622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding.h 2025-08-26T20:45:20.0525335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_backward.h 2025-08-26T20:45:20.0529198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.0533268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_backward_native.h 2025-08-26T20:45:20.0537871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_backward_ops.h 2025-08-26T20:45:20.0541776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_bag.h 2025-08-26T20:45:20.0545946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_bag_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.0549892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_bag_native.h 2025-08-26T20:45:20.0553973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_bag_ops.h 2025-08-26T20:45:20.0558097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.0562118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_dense_backward.h 2025-08-26T20:45:20.0566717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_dense_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.0570845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_dense_backward_cpu_dispatch.h 2025-08-26T20:45:20.0574871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_dense_backward_cuda_dispatch.h 2025-08-26T20:45:20.0578810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_dense_backward_native.h 2025-08-26T20:45:20.0582798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_dense_backward_ops.h 2025-08-26T20:45:20.0586916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_native.h 2025-08-26T20:45:20.0590933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_ops.h 2025-08-26T20:45:20.0596040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_renorm.h 2025-08-26T20:45:20.0600256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_renorm_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.0604082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_renorm_cpu_dispatch.h 2025-08-26T20:45:20.0607996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_renorm_cuda_dispatch.h 2025-08-26T20:45:20.0612055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_renorm_meta_dispatch.h 2025-08-26T20:45:20.0615795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_renorm_native.h 2025-08-26T20:45:20.0620288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_renorm_ops.h 2025-08-26T20:45:20.0624178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_sparse_backward.h 2025-08-26T20:45:20.0628097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_sparse_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.0631901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_sparse_backward_native.h 2025-08-26T20:45:20.0635882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_sparse_backward_ops.h 2025-08-26T20:45:20.0640294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty.h 2025-08-26T20:45:20.0644099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.0647914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.0651589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_cpu_dispatch.h 2025-08-26T20:45:20.0655484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_cuda_dispatch.h 2025-08-26T20:45:20.0659227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_like.h 2025-08-26T20:45:20.0663151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_like_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.0667034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_like_native.h 2025-08-26T20:45:20.0671272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_like_ops.h 2025-08-26T20:45:20.0675066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_meta_dispatch.h 2025-08-26T20:45:20.0678796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_native.h 2025-08-26T20:45:20.0682515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_ops.h 2025-08-26T20:45:20.0686321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_permuted.h 2025-08-26T20:45:20.0690145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_permuted_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.0694286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_permuted_native.h 2025-08-26T20:45:20.0697948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_permuted_ops.h 2025-08-26T20:45:20.0701856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_quantized.h 2025-08-26T20:45:20.0705815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_quantized_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.0709669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_quantized_native.h 2025-08-26T20:45:20.0713435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_quantized_ops.h 2025-08-26T20:45:20.0717432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_strided.h 2025-08-26T20:45:20.0721074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_strided_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.0725183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_strided_cpu_dispatch.h 2025-08-26T20:45:20.0729036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_strided_cuda_dispatch.h 2025-08-26T20:45:20.0732887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_strided_meta_dispatch.h 2025-08-26T20:45:20.0736850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_strided_native.h 2025-08-26T20:45:20.0740658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_strided_ops.h 2025-08-26T20:45:20.0745088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq.h 2025-08-26T20:45:20.0748892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\equal.h 2025-08-26T20:45:20.0752386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\equal_cpu_dispatch.h 2025-08-26T20:45:20.0756246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\equal_cuda_dispatch.h 2025-08-26T20:45:20.0760245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\equal_native.h 2025-08-26T20:45:20.0763996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\equal_ops.h 2025-08-26T20:45:20.0767903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.0790496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq_cpu_dispatch.h 2025-08-26T20:45:20.0794203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq_cuda_dispatch.h 2025-08-26T20:45:20.0797786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq_meta.h 2025-08-26T20:45:20.0801287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq_meta_dispatch.h 2025-08-26T20:45:20.0805157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq_native.h 2025-08-26T20:45:20.0808802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq_ops.h 2025-08-26T20:45:20.0812390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf.h 2025-08-26T20:45:20.0816530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc.h 2025-08-26T20:45:20.0820770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.0833168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc_cpu_dispatch.h 2025-08-26T20:45:20.0837010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc_cuda_dispatch.h 2025-08-26T20:45:20.0840712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc_meta.h 2025-08-26T20:45:20.0844795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc_meta_dispatch.h 2025-08-26T20:45:20.0848853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc_native.h 2025-08-26T20:45:20.0852553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc_ops.h 2025-08-26T20:45:20.0856075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv.h 2025-08-26T20:45:20.0859957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.0863750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv_cpu_dispatch.h 2025-08-26T20:45:20.0867594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv_cuda_dispatch.h 2025-08-26T20:45:20.0871437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv_meta.h 2025-08-26T20:45:20.0875340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv_meta_dispatch.h 2025-08-26T20:45:20.0879238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv_native.h 2025-08-26T20:45:20.0883095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv_ops.h 2025-08-26T20:45:20.0887126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.0891289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf_cpu_dispatch.h 2025-08-26T20:45:20.0895115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf_cuda_dispatch.h 2025-08-26T20:45:20.0899096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf_meta.h 2025-08-26T20:45:20.0902630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf_meta_dispatch.h 2025-08-26T20:45:20.0907063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf_native.h 2025-08-26T20:45:20.0910987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf_ops.h 2025-08-26T20:45:20.0914465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp.h 2025-08-26T20:45:20.0918328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2.h 2025-08-26T20:45:20.0922503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.0926094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2_cpu_dispatch.h 2025-08-26T20:45:20.0930212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2_cuda_dispatch.h 2025-08-26T20:45:20.0933894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2_meta.h 2025-08-26T20:45:20.0937758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2_meta_dispatch.h 2025-08-26T20:45:20.0941683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2_native.h 2025-08-26T20:45:20.0945753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2_ops.h 2025-08-26T20:45:20.0949243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand.h 2025-08-26T20:45:20.0953094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_as.h 2025-08-26T20:45:20.0957499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_as_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.0961169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_as_native.h 2025-08-26T20:45:20.0965426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_as_ops.h 2025-08-26T20:45:20.0969953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.0974068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_copy.h 2025-08-26T20:45:20.0978030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.0982152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.0986279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_copy_native.h 2025-08-26T20:45:20.0991321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_copy_ops.h 2025-08-26T20:45:20.0994543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_native.h 2025-08-26T20:45:20.0998211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_ops.h 2025-08-26T20:45:20.1002292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1.h 2025-08-26T20:45:20.1006171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.1009685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1_cpu_dispatch.h 2025-08-26T20:45:20.1013368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1_cuda_dispatch.h 2025-08-26T20:45:20.1018020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1_meta.h 2025-08-26T20:45:20.1020955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1_meta_dispatch.h 2025-08-26T20:45:20.1024976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1_native.h 2025-08-26T20:45:20.1028720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1_ops.h 2025-08-26T20:45:20.1032456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exponential.h 2025-08-26T20:45:20.1036656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exponential_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.1040502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exponential_cpu_dispatch.h 2025-08-26T20:45:20.1044492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exponential_cuda_dispatch.h 2025-08-26T20:45:20.1048850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exponential_meta_dispatch.h 2025-08-26T20:45:20.1052099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exponential_native.h 2025-08-26T20:45:20.1056002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exponential_ops.h 2025-08-26T20:45:20.1060030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.1064195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp_cpu_dispatch.h 2025-08-26T20:45:20.1068180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp_cuda_dispatch.h 2025-08-26T20:45:20.1072378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp_meta.h 2025-08-26T20:45:20.1075822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp_meta_dispatch.h 2025-08-26T20:45:20.1079654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp_native.h 2025-08-26T20:45:20.1083450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp_ops.h 2025-08-26T20:45:20.1086871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eye.h 2025-08-26T20:45:20.1090466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eye_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.1094402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eye_cpu_dispatch.h 2025-08-26T20:45:20.1098048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eye_cuda_dispatch.h 2025-08-26T20:45:20.1101640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eye_meta_dispatch.h 2025-08-26T20:45:20.1105771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eye_native.h 2025-08-26T20:45:20.1109261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eye_ops.h 2025-08-26T20:45:20.1113061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine.h 2025-08-26T20:45:20.1117465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask.h 2025-08-26T20:45:20.1121367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward.h 2025-08-26T20:45:20.1125320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1129345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward_native.h 2025-08-26T20:45:20.1133626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward_ops.h 2025-08-26T20:45:20.1137834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.1141752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_cpu_dispatch.h 2025-08-26T20:45:20.1145803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_cuda_dispatch.h 2025-08-26T20:45:20.1149786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_native.h 2025-08-26T20:45:20.1153612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_ops.h 2025-08-26T20:45:20.1157673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1161540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_native.h 2025-08-26T20:45:20.1165516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_ops.h 2025-08-26T20:45:20.1169534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine.h 2025-08-26T20:45:20.1173470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask.h 2025-08-26T20:45:20.1177383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward.h 2025-08-26T20:45:20.1181773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1185868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward_native.h 2025-08-26T20:45:20.1190161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward_ops.h 2025-08-26T20:45:20.1194703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.1198838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_cpu_dispatch.h 2025-08-26T20:45:20.1202796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_cuda_dispatch.h 2025-08-26T20:45:20.1214147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_native.h 2025-08-26T20:45:20.1214502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_ops.h 2025-08-26T20:45:20.1216431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1220590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_native.h 2025-08-26T20:45:20.1225159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_ops.h 2025-08-26T20:45:20.1229365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight.h 2025-08-26T20:45:20.1233630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1237758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation.h 2025-08-26T20:45:20.1242139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1246080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation_native.h 2025-08-26T20:45:20.1250395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation_ops.h 2025-08-26T20:45:20.1254548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight_native.h 2025-08-26T20:45:20.1258539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight_ops.h 2025-08-26T20:45:20.1262653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight.h 2025-08-26T20:45:20.1266941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1271052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation.h 2025-08-26T20:45:20.1275494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1279738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation_native.h 2025-08-26T20:45:20.1283704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation_ops.h 2025-08-26T20:45:20.1287534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight_native.h 2025-08-26T20:45:20.1291453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight_ops.h 2025-08-26T20:45:20.1295627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_quantize_weight.h 2025-08-26T20:45:20.1299690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_quantize_weight_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1303590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_quantize_weight_native.h 2025-08-26T20:45:20.1307919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_quantize_weight_ops.h 2025-08-26T20:45:20.1311925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16.h 2025-08-26T20:45:20.1316058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1320154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_native.h 2025-08-26T20:45:20.1324085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_ops.h 2025-08-26T20:45:20.1327977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_quantized_matrix.h 2025-08-26T20:45:20.1332050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_quantized_matrix_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1335866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_quantized_matrix_native.h 2025-08-26T20:45:20.1340070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_quantized_matrix_ops.h 2025-08-26T20:45:20.1344199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_alpha_dropout.h 2025-08-26T20:45:20.1354899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_alpha_dropout_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1355198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_alpha_dropout_native.h 2025-08-26T20:45:20.1356168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_alpha_dropout_ops.h 2025-08-26T20:45:20.1360037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_dropout.h 2025-08-26T20:45:20.1364174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_dropout_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1367986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_dropout_native.h 2025-08-26T20:45:20.1372303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_dropout_ops.h 2025-08-26T20:45:20.1376737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft.h 2025-08-26T20:45:20.1379549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft2.h 2025-08-26T20:45:20.1383072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft2_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1386846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft2_native.h 2025-08-26T20:45:20.1391059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft2_ops.h 2025-08-26T20:45:20.1395196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftfreq.h 2025-08-26T20:45:20.1398969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftfreq_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.1402655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftfreq_native.h 2025-08-26T20:45:20.1406436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftfreq_ops.h 2025-08-26T20:45:20.1410452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftn.h 2025-08-26T20:45:20.1414165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftn_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1417934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftn_native.h 2025-08-26T20:45:20.1422027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftn_ops.h 2025-08-26T20:45:20.1425918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftshift.h 2025-08-26T20:45:20.1429874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftshift_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1433752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftshift_native.h 2025-08-26T20:45:20.1437635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftshift_ops.h 2025-08-26T20:45:20.1441552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1445261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft_native.h 2025-08-26T20:45:20.1449483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft_ops.h 2025-08-26T20:45:20.1453254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft.h 2025-08-26T20:45:20.1456689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft2.h 2025-08-26T20:45:20.1460419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft2_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1464533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft2_native.h 2025-08-26T20:45:20.1468386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft2_ops.h 2025-08-26T20:45:20.1472073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfftn.h 2025-08-26T20:45:20.1476008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfftn_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1480460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfftn_native.h 2025-08-26T20:45:20.1484783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfftn_ops.h 2025-08-26T20:45:20.1488791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1492499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft_native.h 2025-08-26T20:45:20.1496404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft_ops.h 2025-08-26T20:45:20.1500133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft.h 2025-08-26T20:45:20.1504043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft2.h 2025-08-26T20:45:20.1517157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft2_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1521976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft2_native.h 2025-08-26T20:45:20.1525643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft2_ops.h 2025-08-26T20:45:20.1530167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftn.h 2025-08-26T20:45:20.1534315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftn_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1538114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftn_native.h 2025-08-26T20:45:20.1542125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftn_ops.h 2025-08-26T20:45:20.1546002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftshift.h 2025-08-26T20:45:20.1551188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftshift_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1554151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftshift_native.h 2025-08-26T20:45:20.1558351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftshift_ops.h 2025-08-26T20:45:20.1562552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1566255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft_native.h 2025-08-26T20:45:20.1570488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft_ops.h 2025-08-26T20:45:20.1574535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft.h 2025-08-26T20:45:20.1578903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft2.h 2025-08-26T20:45:20.1582288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft2_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1586233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft2_native.h 2025-08-26T20:45:20.1590992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft2_ops.h 2025-08-26T20:45:20.1593937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfftn.h 2025-08-26T20:45:20.1597986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfftn_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1602624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfftn_native.h 2025-08-26T20:45:20.1606234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfftn_ops.h 2025-08-26T20:45:20.1610617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1614462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft_native.h 2025-08-26T20:45:20.1618331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft_ops.h 2025-08-26T20:45:20.1622169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft.h 2025-08-26T20:45:20.1626037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft2.h 2025-08-26T20:45:20.1629791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft2_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1633869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft2_native.h 2025-08-26T20:45:20.1638104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft2_ops.h 2025-08-26T20:45:20.1642905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfftn.h 2025-08-26T20:45:20.1647422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfftn_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1651230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfftn_native.h 2025-08-26T20:45:20.1655093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfftn_ops.h 2025-08-26T20:45:20.1659203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1663319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft_native.h 2025-08-26T20:45:20.1668043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft_ops.h 2025-08-26T20:45:20.1671956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft.h 2025-08-26T20:45:20.1675314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft2.h 2025-08-26T20:45:20.1679751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft2_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1683821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft2_native.h 2025-08-26T20:45:20.1687530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft2_ops.h 2025-08-26T20:45:20.1691905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftfreq.h 2025-08-26T20:45:20.1695782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftfreq_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.1700064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftfreq_native.h 2025-08-26T20:45:20.1704024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftfreq_ops.h 2025-08-26T20:45:20.1707992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftn.h 2025-08-26T20:45:20.1711828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftn_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1716625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftn_native.h 2025-08-26T20:45:20.1720776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftn_ops.h 2025-08-26T20:45:20.1724766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1728600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft_native.h 2025-08-26T20:45:20.1732495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft_ops.h 2025-08-26T20:45:20.1736324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill.h 2025-08-26T20:45:20.1739937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.1743706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_cpu_dispatch.h 2025-08-26T20:45:20.1748331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_cuda_dispatch.h 2025-08-26T20:45:20.1751946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_diagonal.h 2025-08-26T20:45:20.1755871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_diagonal_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1760626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_diagonal_native.h 2025-08-26T20:45:20.1763577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_diagonal_ops.h 2025-08-26T20:45:20.1768465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_meta_dispatch.h 2025-08-26T20:45:20.1772068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_native.h 2025-08-26T20:45:20.1775697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_ops.h 2025-08-26T20:45:20.1779149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fix.h 2025-08-26T20:45:20.1782828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fix_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1787167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fix_native.h 2025-08-26T20:45:20.1791349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fix_ops.h 2025-08-26T20:45:20.1794775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten.h 2025-08-26T20:45:20.1798311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1801935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten_dense_tensors.h 2025-08-26T20:45:20.1805908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten_dense_tensors_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1809484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten_dense_tensors_native.h 2025-08-26T20:45:20.1813405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten_dense_tensors_ops.h 2025-08-26T20:45:20.1817478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten_native.h 2025-08-26T20:45:20.1821236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten_ops.h 2025-08-26T20:45:20.1839830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flip.h 2025-08-26T20:45:20.1843826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fliplr.h 2025-08-26T20:45:20.1847536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fliplr_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1851354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fliplr_native.h 2025-08-26T20:45:20.1855080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fliplr_ops.h 2025-08-26T20:45:20.1858767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flipud.h 2025-08-26T20:45:20.1862609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flipud_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1866391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flipud_native.h 2025-08-26T20:45:20.1870063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flipud_ops.h 2025-08-26T20:45:20.1873900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flip_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.1877462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flip_cpu_dispatch.h 2025-08-26T20:45:20.1881165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flip_cuda_dispatch.h 2025-08-26T20:45:20.1884932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flip_native.h 2025-08-26T20:45:20.1888763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flip_ops.h 2025-08-26T20:45:20.1892277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\float_power.h 2025-08-26T20:45:20.1896076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\float_power_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.1899744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\float_power_native.h 2025-08-26T20:45:20.1903466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\float_power_ops.h 2025-08-26T20:45:20.1907139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor.h 2025-08-26T20:45:20.1910797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.1914602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_cpu_dispatch.h 2025-08-26T20:45:20.1918754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_cuda_dispatch.h 2025-08-26T20:45:20.1922941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_divide.h 2025-08-26T20:45:20.1926525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_divide_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.1930257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_divide_cpu_dispatch.h 2025-08-26T20:45:20.1933995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_divide_cuda_dispatch.h 2025-08-26T20:45:20.1937737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_divide_meta_dispatch.h 2025-08-26T20:45:20.1941989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_divide_native.h 2025-08-26T20:45:20.1945969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_divide_ops.h 2025-08-26T20:45:20.1950167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_meta.h 2025-08-26T20:45:20.1954150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_meta_dispatch.h 2025-08-26T20:45:20.1957773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_native.h 2025-08-26T20:45:20.1961541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_ops.h 2025-08-26T20:45:20.1965234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax.h 2025-08-26T20:45:20.1969189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.1973265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax_cpu_dispatch.h 2025-08-26T20:45:20.1977031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax_cuda_dispatch.h 2025-08-26T20:45:20.1980702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax_meta.h 2025-08-26T20:45:20.1984595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax_meta_dispatch.h 2025-08-26T20:45:20.1988334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax_native.h 2025-08-26T20:45:20.1991985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax_ops.h 2025-08-26T20:45:20.1995386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin.h 2025-08-26T20:45:20.1999200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.2002956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin_cpu_dispatch.h 2025-08-26T20:45:20.2006666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin_cuda_dispatch.h 2025-08-26T20:45:20.2010829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin_meta.h 2025-08-26T20:45:20.2024416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin_meta_dispatch.h 2025-08-26T20:45:20.2028399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin_native.h 2025-08-26T20:45:20.2032032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin_ops.h 2025-08-26T20:45:20.2035545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod.h 2025-08-26T20:45:20.2039785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.2043318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.2047467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_cpu_dispatch.h 2025-08-26T20:45:20.2051302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_cuda_dispatch.h 2025-08-26T20:45:20.2055092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_meta.h 2025-08-26T20:45:20.2059175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_meta_dispatch.h 2025-08-26T20:45:20.2063400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_native.h 2025-08-26T20:45:20.2067631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_ops.h 2025-08-26T20:45:20.2070473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac.h 2025-08-26T20:45:20.2074830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d.h 2025-08-26T20:45:20.2079547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward.h 2025-08-26T20:45:20.2082997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.2086795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward_cpu_dispatch.h 2025-08-26T20:45:20.2091455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward_cuda_dispatch.h 2025-08-26T20:45:20.2095302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward_meta.h 2025-08-26T20:45:20.2099615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward_meta_dispatch.h 2025-08-26T20:45:20.2103467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward_native.h 2025-08-26T20:45:20.2107822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward_ops.h 2025-08-26T20:45:20.2111491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.2115411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_cpu_dispatch.h 2025-08-26T20:45:20.2120054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_cuda_dispatch.h 2025-08-26T20:45:20.2123573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_meta.h 2025-08-26T20:45:20.2127980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_meta_dispatch.h 2025-08-26T20:45:20.2131935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_native.h 2025-08-26T20:45:20.2135690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_ops.h 2025-08-26T20:45:20.2140121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d.h 2025-08-26T20:45:20.2144466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_backward.h 2025-08-26T20:45:20.2148938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_backward_cpu_dispatch.h 2025-08-26T20:45:20.2152410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_backward_cuda_dispatch.h 2025-08-26T20:45:20.2156714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_backward_native.h 2025-08-26T20:45:20.2160773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_backward_ops.h 2025-08-26T20:45:20.2166159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.2169418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_cpu_dispatch.h 2025-08-26T20:45:20.2173873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_cuda_dispatch.h 2025-08-26T20:45:20.2177903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_meta.h 2025-08-26T20:45:20.2181740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_meta_dispatch.h 2025-08-26T20:45:20.2186301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_native.h 2025-08-26T20:45:20.2191145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_ops.h 2025-08-26T20:45:20.2195303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.2199175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac_cpu_dispatch.h 2025-08-26T20:45:20.2203026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac_cuda_dispatch.h 2025-08-26T20:45:20.2206790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac_meta.h 2025-08-26T20:45:20.2210466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac_meta_dispatch.h 2025-08-26T20:45:20.2214410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac_native.h 2025-08-26T20:45:20.2218115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac_ops.h 2025-08-26T20:45:20.2223007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frexp.h 2025-08-26T20:45:20.2226965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frexp_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.2231093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frexp_cpu_dispatch.h 2025-08-26T20:45:20.2234604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frexp_cuda_dispatch.h 2025-08-26T20:45:20.2238437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frexp_native.h 2025-08-26T20:45:20.2242485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frexp_ops.h 2025-08-26T20:45:20.2246385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frobenius_norm.h 2025-08-26T20:45:20.2250200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frobenius_norm_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.2254206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frobenius_norm_native.h 2025-08-26T20:45:20.2257932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frobenius_norm_ops.h 2025-08-26T20:45:20.2261573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\from_blob.h 2025-08-26T20:45:20.2265269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\from_file.h 2025-08-26T20:45:20.2269179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\from_file_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.2273205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\from_file_cpu_dispatch.h 2025-08-26T20:45:20.2276921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\from_file_native.h 2025-08-26T20:45:20.2280817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\from_file_ops.h 2025-08-26T20:45:20.2284589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full.h 2025-08-26T20:45:20.2288437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.2292426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full_like.h 2025-08-26T20:45:20.2296261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full_like_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.2300094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full_like_native.h 2025-08-26T20:45:20.2303994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full_like_ops.h 2025-08-26T20:45:20.2307701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full_native.h 2025-08-26T20:45:20.2311589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full_ops.h 2025-08-26T20:45:20.2315680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fused_moving_avg_obs_fake_quant.h 2025-08-26T20:45:20.2319615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fused_moving_avg_obs_fake_quant_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.2323762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fused_moving_avg_obs_fake_quant_native.h 2025-08-26T20:45:20.2327592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fused_moving_avg_obs_fake_quant_ops.h 2025-08-26T20:45:20.2331288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather.h 2025-08-26T20:45:20.2334945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_backward.h 2025-08-26T20:45:20.2338794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.2342508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_backward_native.h 2025-08-26T20:45:20.2346608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_backward_ops.h 2025-08-26T20:45:20.2350483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.2354277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.2358269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_cpu_dispatch.h 2025-08-26T20:45:20.2362121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_cuda_dispatch.h 2025-08-26T20:45:20.2366263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_meta.h 2025-08-26T20:45:20.2370464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_meta_dispatch.h 2025-08-26T20:45:20.2374236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_native.h 2025-08-26T20:45:20.2378314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_ops.h 2025-08-26T20:45:20.2382084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd.h 2025-08-26T20:45:20.2385876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.2389934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd_cpu_dispatch.h 2025-08-26T20:45:20.2394136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd_cuda_dispatch.h 2025-08-26T20:45:20.2397754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd_meta.h 2025-08-26T20:45:20.2401224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd_meta_dispatch.h 2025-08-26T20:45:20.2404852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd_native.h 2025-08-26T20:45:20.2408407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd_ops.h 2025-08-26T20:45:20.2411856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge.h 2025-08-26T20:45:20.2415299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu.h 2025-08-26T20:45:20.2419040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward.h 2025-08-26T20:45:20.2423295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.2426957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward_cpu_dispatch.h 2025-08-26T20:45:20.2430787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward_cuda_dispatch.h 2025-08-26T20:45:20.2434549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward_meta.h 2025-08-26T20:45:20.2438460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward_meta_dispatch.h 2025-08-26T20:45:20.2442811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward_native.h 2025-08-26T20:45:20.2446276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward_ops.h 2025-08-26T20:45:20.2450690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.2454411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_cpu_dispatch.h 2025-08-26T20:45:20.2458079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_cuda_dispatch.h 2025-08-26T20:45:20.2461909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_meta.h 2025-08-26T20:45:20.2465895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_meta_dispatch.h 2025-08-26T20:45:20.2469669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_native.h 2025-08-26T20:45:20.2473450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_ops.h 2025-08-26T20:45:20.2477475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geometric.h 2025-08-26T20:45:20.2480944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geometric_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.2484997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geometric_cpu_dispatch.h 2025-08-26T20:45:20.2489378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geometric_cuda_dispatch.h 2025-08-26T20:45:20.2493155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geometric_meta_dispatch.h 2025-08-26T20:45:20.2497662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geometric_native.h 2025-08-26T20:45:20.2501522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geometric_ops.h 2025-08-26T20:45:20.2506297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geqrf.h 2025-08-26T20:45:20.2509146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geqrf_cpu_dispatch.h 2025-08-26T20:45:20.2513689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geqrf_cuda_dispatch.h 2025-08-26T20:45:20.2517882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geqrf_native.h 2025-08-26T20:45:20.2521355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geqrf_ops.h 2025-08-26T20:45:20.2525513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ger.h 2025-08-26T20:45:20.2529504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ger_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.2532935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ger_native.h 2025-08-26T20:45:20.2536985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ger_ops.h 2025-08-26T20:45:20.2541005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.2544678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge_cpu_dispatch.h 2025-08-26T20:45:20.2548475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge_cuda_dispatch.h 2025-08-26T20:45:20.2552418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge_meta.h 2025-08-26T20:45:20.2555899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge_meta_dispatch.h 2025-08-26T20:45:20.2560049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge_native.h 2025-08-26T20:45:20.2563952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge_ops.h 2025-08-26T20:45:20.2567333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu.h 2025-08-26T20:45:20.2571217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward.h 2025-08-26T20:45:20.2575451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_cpu_dispatch.h 2025-08-26T20:45:20.2578923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_cuda_dispatch.h 2025-08-26T20:45:20.2583092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_jvp.h 2025-08-26T20:45:20.2587342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_jvp_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.2592539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_jvp_cpu_dispatch.h 2025-08-26T20:45:20.2595479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_jvp_cuda_dispatch.h 2025-08-26T20:45:20.2599742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_jvp_native.h 2025-08-26T20:45:20.2604251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_jvp_ops.h 2025-08-26T20:45:20.2607896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_native.h 2025-08-26T20:45:20.2612162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_ops.h 2025-08-26T20:45:20.2616482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.2621480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_cpu_dispatch.h 2025-08-26T20:45:20.2624372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_cuda_dispatch.h 2025-08-26T20:45:20.2628249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_jvp.h 2025-08-26T20:45:20.2633174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_jvp_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.2635968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_jvp_cpu_dispatch.h 2025-08-26T20:45:20.2639852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_jvp_cuda_dispatch.h 2025-08-26T20:45:20.2644400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_jvp_native.h 2025-08-26T20:45:20.2647276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_jvp_ops.h 2025-08-26T20:45:20.2651694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_meta.h 2025-08-26T20:45:20.2655556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_meta_dispatch.h 2025-08-26T20:45:20.2659517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_native.h 2025-08-26T20:45:20.2663922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_ops.h 2025-08-26T20:45:20.2667562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gradient.h 2025-08-26T20:45:20.2671199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gradient_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.2675477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gradient_native.h 2025-08-26T20:45:20.2679354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gradient_ops.h 2025-08-26T20:45:20.2682972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater.h 2025-08-26T20:45:20.2686983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.2690747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater_equal.h 2025-08-26T20:45:20.2694839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater_equal_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.2705576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater_equal_native.h 2025-08-26T20:45:20.2706164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater_equal_ops.h 2025-08-26T20:45:20.2707413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater_native.h 2025-08-26T20:45:20.2711667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater_ops.h 2025-08-26T20:45:20.2715184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler.h 2025-08-26T20:45:20.2719269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d.h 2025-08-26T20:45:20.2723405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_backward.h 2025-08-26T20:45:20.2727354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.2731598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_backward_cpu_dispatch.h 2025-08-26T20:45:20.2735441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_backward_cuda_dispatch.h 2025-08-26T20:45:20.2739335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_backward_native.h 2025-08-26T20:45:20.2743321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_backward_ops.h 2025-08-26T20:45:20.2747503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.2751363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_cpu_dispatch.h 2025-08-26T20:45:20.2756757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_cuda_dispatch.h 2025-08-26T20:45:20.2759291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_native.h 2025-08-26T20:45:20.2763025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_ops.h 2025-08-26T20:45:20.2766757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d.h 2025-08-26T20:45:20.2770526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_backward.h 2025-08-26T20:45:20.2774800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.2778522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_backward_cpu_dispatch.h 2025-08-26T20:45:20.2782392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_backward_cuda_dispatch.h 2025-08-26T20:45:20.2787453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_backward_native.h 2025-08-26T20:45:20.2791963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_backward_ops.h 2025-08-26T20:45:20.2797340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.2804256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_cpu_dispatch.h 2025-08-26T20:45:20.2808238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_cuda_dispatch.h 2025-08-26T20:45:20.2812139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_native.h 2025-08-26T20:45:20.2815980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_ops.h 2025-08-26T20:45:20.2820350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.2824172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_native.h 2025-08-26T20:45:20.2829068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_ops.h 2025-08-26T20:45:20.2832633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\group_norm.h 2025-08-26T20:45:20.2836541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\group_norm_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.2840215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\group_norm_native.h 2025-08-26T20:45:20.2844051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\group_norm_ops.h 2025-08-26T20:45:20.2847762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru.h 2025-08-26T20:45:20.2851138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru_cell.h 2025-08-26T20:45:20.2855695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru_cell_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.3838141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru_cell_native.h 2025-08-26T20:45:20.3843390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru_cell_ops.h 2025-08-26T20:45:20.3849375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.3854372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru_native.h 2025-08-26T20:45:20.3860773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru_ops.h 2025-08-26T20:45:20.3865879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt.h 2025-08-26T20:45:20.3871331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.3875359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt_cpu_dispatch.h 2025-08-26T20:45:20.3879379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt_cuda_dispatch.h 2025-08-26T20:45:20.3882975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt_meta.h 2025-08-26T20:45:20.3886591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt_meta_dispatch.h 2025-08-26T20:45:20.3890182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt_native.h 2025-08-26T20:45:20.3893994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt_ops.h 2025-08-26T20:45:20.3897434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hamming_window.h 2025-08-26T20:45:20.3901233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hamming_window_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.3905459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hamming_window_native.h 2025-08-26T20:45:20.3909025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hamming_window_ops.h 2025-08-26T20:45:20.3913586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hann_window.h 2025-08-26T20:45:20.3916710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hann_window_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.3920941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hann_window_native.h 2025-08-26T20:45:20.3925240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hann_window_ops.h 2025-08-26T20:45:20.3929060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink.h 2025-08-26T20:45:20.3932928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward.h 2025-08-26T20:45:20.3937008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.3940765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward_cpu_dispatch.h 2025-08-26T20:45:20.3944757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward_cuda_dispatch.h 2025-08-26T20:45:20.3948553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward_meta.h 2025-08-26T20:45:20.3952452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward_meta_dispatch.h 2025-08-26T20:45:20.3956487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward_native.h 2025-08-26T20:45:20.3960427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward_ops.h 2025-08-26T20:45:20.3964491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.3968198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_cpu_dispatch.h 2025-08-26T20:45:20.3972036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_cuda_dispatch.h 2025-08-26T20:45:20.3976135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_meta.h 2025-08-26T20:45:20.3980042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_meta_dispatch.h 2025-08-26T20:45:20.3984256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_native.h 2025-08-26T20:45:20.3988045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_ops.h 2025-08-26T20:45:20.3992103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid.h 2025-08-26T20:45:20.3995730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward.h 2025-08-26T20:45:20.3999861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.4004430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward_cpu_dispatch.h 2025-08-26T20:45:20.4008280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward_cuda_dispatch.h 2025-08-26T20:45:20.4012359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward_meta.h 2025-08-26T20:45:20.4016492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward_meta_dispatch.h 2025-08-26T20:45:20.4020248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward_native.h 2025-08-26T20:45:20.4024782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward_ops.h 2025-08-26T20:45:20.4029490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.4033372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_cpu_dispatch.h 2025-08-26T20:45:20.4037574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_cuda_dispatch.h 2025-08-26T20:45:20.4041343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_meta.h 2025-08-26T20:45:20.4045208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_meta_dispatch.h 2025-08-26T20:45:20.4049063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_native.h 2025-08-26T20:45:20.4053219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_ops.h 2025-08-26T20:45:20.4057291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish.h 2025-08-26T20:45:20.4061176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_backward.h 2025-08-26T20:45:20.4065535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.4069492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_backward_cpu_dispatch.h 2025-08-26T20:45:20.4073377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_backward_cuda_dispatch.h 2025-08-26T20:45:20.4077187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_backward_native.h 2025-08-26T20:45:20.4081181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_backward_ops.h 2025-08-26T20:45:20.4084996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_cpu_dispatch.h 2025-08-26T20:45:20.4088811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_cuda_dispatch.h 2025-08-26T20:45:20.4092876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_meta_dispatch.h 2025-08-26T20:45:20.4096686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_native.h 2025-08-26T20:45:20.4100536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_ops.h 2025-08-26T20:45:20.4104653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh.h 2025-08-26T20:45:20.4108266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_backward.h 2025-08-26T20:45:20.4112139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_backward_cpu_dispatch.h 2025-08-26T20:45:20.4116023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_backward_cuda_dispatch.h 2025-08-26T20:45:20.4121064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_backward_native.h 2025-08-26T20:45:20.4123995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_backward_ops.h 2025-08-26T20:45:20.4127997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_cpu_dispatch.h 2025-08-26T20:45:20.4133009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_cuda_dispatch.h 2025-08-26T20:45:20.4136323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_meta_dispatch.h 2025-08-26T20:45:20.4140470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_native.h 2025-08-26T20:45:20.4144621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_ops.h 2025-08-26T20:45:20.4148290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hash_tensor.h 2025-08-26T20:45:20.4153135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hash_tensor_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.4157127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hash_tensor_cpu_dispatch.h 2025-08-26T20:45:20.4161848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hash_tensor_cuda_dispatch.h 2025-08-26T20:45:20.4165180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hash_tensor_meta.h 2025-08-26T20:45:20.4204864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hash_tensor_meta_dispatch.h 2025-08-26T20:45:20.4209456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hash_tensor_native.h 2025-08-26T20:45:20.4213746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hash_tensor_ops.h 2025-08-26T20:45:20.4299523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside.h 2025-08-26T20:45:20.4315427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.4319628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside_cpu_dispatch.h 2025-08-26T20:45:20.4323665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside_cuda_dispatch.h 2025-08-26T20:45:20.4896567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside_meta.h 2025-08-26T20:45:20.4900262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside_meta_dispatch.h 2025-08-26T20:45:20.4904153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside_native.h 2025-08-26T20:45:20.4921575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside_ops.h 2025-08-26T20:45:20.4935287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hinge_embedding_loss.h 2025-08-26T20:45:20.4940258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hinge_embedding_loss_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.4950761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hinge_embedding_loss_native.h 2025-08-26T20:45:20.4964058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hinge_embedding_loss_ops.h 2025-08-26T20:45:20.4977937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histc.h 2025-08-26T20:45:20.4982443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histc_cpu_dispatch.h 2025-08-26T20:45:20.4987220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histc_cuda_dispatch.h 2025-08-26T20:45:20.4990992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histc_native.h 2025-08-26T20:45:20.4995263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histc_ops.h 2025-08-26T20:45:20.4999572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogram.h 2025-08-26T20:45:20.5003486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogramdd.h 2025-08-26T20:45:20.5007606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogramdd_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.5011469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogramdd_native.h 2025-08-26T20:45:20.5015626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogramdd_ops.h 2025-08-26T20:45:20.5019802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogram_cpu_dispatch.h 2025-08-26T20:45:20.5023751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogram_native.h 2025-08-26T20:45:20.5027617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogram_ops.h 2025-08-26T20:45:20.5031341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hsplit.h 2025-08-26T20:45:20.5035151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hsplit_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.5038780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hsplit_native.h 2025-08-26T20:45:20.5042507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hsplit_ops.h 2025-08-26T20:45:20.5046336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hspmm.h 2025-08-26T20:45:20.5050043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hspmm_native.h 2025-08-26T20:45:20.5054192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hspmm_ops.h 2025-08-26T20:45:20.5058245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hstack.h 2025-08-26T20:45:20.5061956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hstack_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.5070398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hstack_native.h 2025-08-26T20:45:20.5074221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hstack_ops.h 2025-08-26T20:45:20.5078177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss.h 2025-08-26T20:45:20.5082323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_backward.h 2025-08-26T20:45:20.5086402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.5090436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_backward_cpu_dispatch.h 2025-08-26T20:45:20.5094320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_backward_cuda_dispatch.h 2025-08-26T20:45:20.5098259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_backward_native.h 2025-08-26T20:45:20.5102034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_backward_ops.h 2025-08-26T20:45:20.5106220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_cpu_dispatch.h 2025-08-26T20:45:20.5111528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_cuda_dispatch.h 2025-08-26T20:45:20.5115881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_native.h 2025-08-26T20:45:20.5120921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_ops.h 2025-08-26T20:45:20.5124646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot.h 2025-08-26T20:45:20.5128404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.5132359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot_cpu_dispatch.h 2025-08-26T20:45:20.5136140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot_cuda_dispatch.h 2025-08-26T20:45:20.5139925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot_meta.h 2025-08-26T20:45:20.5144124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot_meta_dispatch.h 2025-08-26T20:45:20.5148416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot_native.h 2025-08-26T20:45:20.5152227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot_ops.h 2025-08-26T20:45:20.5156241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0.h 2025-08-26T20:45:20.5160422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.5164555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0_cpu_dispatch.h 2025-08-26T20:45:20.5167866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0_cuda_dispatch.h 2025-08-26T20:45:20.5172063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0_meta.h 2025-08-26T20:45:20.5176009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0_meta_dispatch.h 2025-08-26T20:45:20.5179581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0_native.h 2025-08-26T20:45:20.5183561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0_ops.h 2025-08-26T20:45:20.5187233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma.h 2025-08-26T20:45:20.5190837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac.h 2025-08-26T20:45:20.5194874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.5198653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac_cpu_dispatch.h 2025-08-26T20:45:20.5202370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac_cuda_dispatch.h 2025-08-26T20:45:20.5206579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac_meta.h 2025-08-26T20:45:20.5210726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac_meta_dispatch.h 2025-08-26T20:45:20.5223792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac_native.h 2025-08-26T20:45:20.5224368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac_ops.h 2025-08-26T20:45:20.5225085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.5229421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma_cpu_dispatch.h 2025-08-26T20:45:20.5232613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma_cuda_dispatch.h 2025-08-26T20:45:20.5236451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma_meta.h 2025-08-26T20:45:20.5241745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma_meta_dispatch.h 2025-08-26T20:45:20.5244290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma_native.h 2025-08-26T20:45:20.5248481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma_ops.h 2025-08-26T20:45:20.5252226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\im2col.h 2025-08-26T20:45:20.5255757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\im2col_cpu_dispatch.h 2025-08-26T20:45:20.5259820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\im2col_cuda_dispatch.h 2025-08-26T20:45:20.5263617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\im2col_native.h 2025-08-26T20:45:20.5267602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\im2col_ops.h 2025-08-26T20:45:20.5271663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\imag.h 2025-08-26T20:45:20.5275461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\imag_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.5279029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\imag_native.h 2025-08-26T20:45:20.5282609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\imag_ops.h 2025-08-26T20:45:20.5286312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index.h 2025-08-26T20:45:20.5289779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add.h 2025-08-26T20:45:20.5293695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.5297619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.5301554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_cpu_dispatch.h 2025-08-26T20:45:20.5305900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_cuda_dispatch.h 2025-08-26T20:45:20.5309563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_meta.h 2025-08-26T20:45:20.5313378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_meta_dispatch.h 2025-08-26T20:45:20.5317136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_native.h 2025-08-26T20:45:20.5320933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_ops.h 2025-08-26T20:45:20.5324927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.5328754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy.h 2025-08-26T20:45:20.5332782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.5337026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.5341466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_cpu_dispatch.h 2025-08-26T20:45:20.5345669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_cuda_dispatch.h 2025-08-26T20:45:20.5350172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_meta.h 2025-08-26T20:45:20.5353489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_meta_dispatch.h 2025-08-26T20:45:20.5357661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_native.h 2025-08-26T20:45:20.5361417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_ops.h 2025-08-26T20:45:20.5365141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_cpu_dispatch.h 2025-08-26T20:45:20.5369157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_cuda_dispatch.h 2025-08-26T20:45:20.5373010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill.h 2025-08-26T20:45:20.5377977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.5381353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.5386153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill_cpu_dispatch.h 2025-08-26T20:45:20.5390530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill_cuda_dispatch.h 2025-08-26T20:45:20.5395321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill_meta_dispatch.h 2025-08-26T20:45:20.5398304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill_native.h 2025-08-26T20:45:20.5402304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill_ops.h 2025-08-26T20:45:20.5407109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_meta.h 2025-08-26T20:45:20.5410357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_meta_dispatch.h 2025-08-26T20:45:20.5414883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_native.h 2025-08-26T20:45:20.5418869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_ops.h 2025-08-26T20:45:20.5422660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_put.h 2025-08-26T20:45:20.5426898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_put_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.5430937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_put_native.h 2025-08-26T20:45:20.5435671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_put_ops.h 2025-08-26T20:45:20.5438531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce.h 2025-08-26T20:45:20.5442672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.5447470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce_cpu_dispatch.h 2025-08-26T20:45:20.5450623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce_cuda_dispatch.h 2025-08-26T20:45:20.5455293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce_meta.h 2025-08-26T20:45:20.5459702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce_meta_dispatch.h 2025-08-26T20:45:20.5464717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce_native.h 2025-08-26T20:45:20.5467691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce_ops.h 2025-08-26T20:45:20.5472049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select.h 2025-08-26T20:45:20.5476277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_backward.h 2025-08-26T20:45:20.5480474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.5484538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_backward_native.h 2025-08-26T20:45:20.5488433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_backward_ops.h 2025-08-26T20:45:20.5493483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.5496300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_cpu_dispatch.h 2025-08-26T20:45:20.5500744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_cuda_dispatch.h 2025-08-26T20:45:20.5504993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_native.h 2025-08-26T20:45:20.5508556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_ops.h 2025-08-26T20:45:20.5512454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices.h 2025-08-26T20:45:20.5516594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.5519929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_copy.h 2025-08-26T20:45:20.5524420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.5528876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.5533718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_copy_native.h 2025-08-26T20:45:20.5536662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_copy_ops.h 2025-08-26T20:45:20.5541056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_native.h 2025-08-26T20:45:20.5545257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_ops.h 2025-08-26T20:45:20.5550239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\infinitely_differentiable_gelu_backward.h 2025-08-26T20:45:20.5554099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\infinitely_differentiable_gelu_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.5558782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\infinitely_differentiable_gelu_backward_native.h 2025-08-26T20:45:20.5562861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\infinitely_differentiable_gelu_backward_ops.h 2025-08-26T20:45:20.5566639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inner.h 2025-08-26T20:45:20.5570374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inner_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.5574228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inner_native.h 2025-08-26T20:45:20.5578052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inner_ops.h 2025-08-26T20:45:20.5582303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\instance_norm.h 2025-08-26T20:45:20.5586498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\instance_norm_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.5591465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\instance_norm_native.h 2025-08-26T20:45:20.5594670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\instance_norm_ops.h 2025-08-26T20:45:20.5598792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\int_repr.h 2025-08-26T20:45:20.5603058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\int_repr_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.5606216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\int_repr_native.h 2025-08-26T20:45:20.5610683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\int_repr_ops.h 2025-08-26T20:45:20.5614571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inverse.h 2025-08-26T20:45:20.5618149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inverse_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.5623009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inverse_native.h 2025-08-26T20:45:20.5660113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inverse_ops.h 2025-08-26T20:45:20.5662996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isclose.h 2025-08-26T20:45:20.5666790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isclose_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.5671620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isclose_native.h 2025-08-26T20:45:20.5674814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isclose_ops.h 2025-08-26T20:45:20.5679020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isfinite.h 2025-08-26T20:45:20.5683284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isfinite_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.5686440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isfinite_native.h 2025-08-26T20:45:20.5690076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isfinite_ops.h 2025-08-26T20:45:20.5694247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin.h 2025-08-26T20:45:20.5697316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isinf.h 2025-08-26T20:45:20.5701627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isinf_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.5705758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isinf_native.h 2025-08-26T20:45:20.5709903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isinf_ops.h 2025-08-26T20:45:20.5713523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.5717036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin_cpu_dispatch.h 2025-08-26T20:45:20.5720745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin_cuda_dispatch.h 2025-08-26T20:45:20.5725568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin_meta.h 2025-08-26T20:45:20.5729355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin_meta_dispatch.h 2025-08-26T20:45:20.5733328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin_native.h 2025-08-26T20:45:20.5737055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin_ops.h 2025-08-26T20:45:20.5742339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isnan.h 2025-08-26T20:45:20.5746464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isnan_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.5749874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isnan_cpu_dispatch.h 2025-08-26T20:45:20.5754207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isnan_cuda_dispatch.h 2025-08-26T20:45:20.5757885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isnan_native.h 2025-08-26T20:45:20.5761588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isnan_ops.h 2025-08-26T20:45:20.5765322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf.h 2025-08-26T20:45:20.5769380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.5773293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf_cpu_dispatch.h 2025-08-26T20:45:20.5777071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf_cuda_dispatch.h 2025-08-26T20:45:20.5780886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf_meta.h 2025-08-26T20:45:20.5784747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf_meta_dispatch.h 2025-08-26T20:45:20.5788490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf_native.h 2025-08-26T20:45:20.5792241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf_ops.h 2025-08-26T20:45:20.5797389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf.h 2025-08-26T20:45:20.5801479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.5805048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf_cpu_dispatch.h 2025-08-26T20:45:20.5808771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf_cuda_dispatch.h 2025-08-26T20:45:20.5812795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf_meta.h 2025-08-26T20:45:20.5816663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf_meta_dispatch.h 2025-08-26T20:45:20.5820788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf_native.h 2025-08-26T20:45:20.5825288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf_ops.h 2025-08-26T20:45:20.5829161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isreal.h 2025-08-26T20:45:20.5832771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isreal_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.5836405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isreal_native.h 2025-08-26T20:45:20.5840071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isreal_ops.h 2025-08-26T20:45:20.5843765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\istft.h 2025-08-26T20:45:20.5847427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\istft_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.5851011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\istft_native.h 2025-08-26T20:45:20.5854824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\istft_ops.h 2025-08-26T20:45:20.5858564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_coalesced.h 2025-08-26T20:45:20.5862349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_coalesced_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.5866487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_coalesced_native.h 2025-08-26T20:45:20.5871207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_coalesced_ops.h 2025-08-26T20:45:20.5874991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_complex.h 2025-08-26T20:45:20.5878800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_complex_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.5882423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_complex_native.h 2025-08-26T20:45:20.5886340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_complex_ops.h 2025-08-26T20:45:20.5890071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_conj.h 2025-08-26T20:45:20.5893785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_conj_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.5897418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_conj_native.h 2025-08-26T20:45:20.5901080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_conj_ops.h 2025-08-26T20:45:20.5905029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_distributed.h 2025-08-26T20:45:20.5909500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_distributed_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.5913398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_distributed_native.h 2025-08-26T20:45:20.5917107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_distributed_ops.h 2025-08-26T20:45:20.5920959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_floating_point.h 2025-08-26T20:45:20.5925119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_floating_point_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.5929828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_floating_point_native.h 2025-08-26T20:45:20.5933561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_floating_point_ops.h 2025-08-26T20:45:20.5937615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_inference.h 2025-08-26T20:45:20.5941521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_inference_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.5945408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_inference_native.h 2025-08-26T20:45:20.5949048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_inference_ops.h 2025-08-26T20:45:20.5952788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_leaf.h 2025-08-26T20:45:20.5956406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_leaf_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.5960062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_leaf_native.h 2025-08-26T20:45:20.5963812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_leaf_ops.h 2025-08-26T20:45:20.5968373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_neg.h 2025-08-26T20:45:20.5971867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_neg_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.5975594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_neg_native.h 2025-08-26T20:45:20.5979477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_neg_ops.h 2025-08-26T20:45:20.5983231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_nonzero.h 2025-08-26T20:45:20.5987099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_nonzero_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.5990873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_nonzero_native.h 2025-08-26T20:45:20.5994617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_nonzero_ops.h 2025-08-26T20:45:20.5998511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_pinned.h 2025-08-26T20:45:20.6002438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_pinned_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.6006177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_pinned_native.h 2025-08-26T20:45:20.6009834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_pinned_ops.h 2025-08-26T20:45:20.6013547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_same_size.h 2025-08-26T20:45:20.6017393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_same_size_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.6021334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_same_size_native.h 2025-08-26T20:45:20.6025504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_same_size_ops.h 2025-08-26T20:45:20.6029177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_set_to.h 2025-08-26T20:45:20.6033349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_set_to_cpu_dispatch.h 2025-08-26T20:45:20.6037238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_set_to_cuda_dispatch.h 2025-08-26T20:45:20.6041024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_set_to_native.h 2025-08-26T20:45:20.6044910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_set_to_ops.h 2025-08-26T20:45:20.6048780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_signed.h 2025-08-26T20:45:20.6052691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_signed_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.6056634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_signed_native.h 2025-08-26T20:45:20.6061105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_signed_ops.h 2025-08-26T20:45:20.6065165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_vulkan_available.h 2025-08-26T20:45:20.6069097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_vulkan_available_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.6073118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_vulkan_available_native.h 2025-08-26T20:45:20.6077394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_vulkan_available_ops.h 2025-08-26T20:45:20.6081399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\item.h 2025-08-26T20:45:20.6085305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\item_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.6088996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\item_native.h 2025-08-26T20:45:20.6092625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\item_ops.h 2025-08-26T20:45:20.6096576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kaiser_window.h 2025-08-26T20:45:20.6100510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kaiser_window_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.6104341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kaiser_window_native.h 2025-08-26T20:45:20.6108547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kaiser_window_ops.h 2025-08-26T20:45:20.6112562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kl_div.h 2025-08-26T20:45:20.6116361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kl_div_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.6120241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kl_div_native.h 2025-08-26T20:45:20.6123957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kl_div_ops.h 2025-08-26T20:45:20.6127711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kron.h 2025-08-26T20:45:20.6131372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kron_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.6135467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kron_native.h 2025-08-26T20:45:20.6139271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kron_ops.h 2025-08-26T20:45:20.6144321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kthvalue.h 2025-08-26T20:45:20.6148674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kthvalue_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.6152843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kthvalue_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.6156826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kthvalue_cpu_dispatch.h 2025-08-26T20:45:20.6160719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kthvalue_cuda_dispatch.h 2025-08-26T20:45:20.6164780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kthvalue_native.h 2025-08-26T20:45:20.6168854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kthvalue_ops.h 2025-08-26T20:45:20.6172591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\l1_loss.h 2025-08-26T20:45:20.6176623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\l1_loss_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.6180418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\l1_loss_native.h 2025-08-26T20:45:20.6184137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\l1_loss_ops.h 2025-08-26T20:45:20.6187990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\layer_norm.h 2025-08-26T20:45:20.6191892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\layer_norm_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.6195641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\layer_norm_native.h 2025-08-26T20:45:20.6199845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\layer_norm_ops.h 2025-08-26T20:45:20.6203844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm.h 2025-08-26T20:45:20.6208523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.6211366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm_cpu_dispatch.h 2025-08-26T20:45:20.6215784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm_cuda_dispatch.h 2025-08-26T20:45:20.6219441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm_meta.h 2025-08-26T20:45:20.6223017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm_meta_dispatch.h 2025-08-26T20:45:20.6227344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm_native.h 2025-08-26T20:45:20.6230955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm_ops.h 2025-08-26T20:45:20.6234822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ldexp.h 2025-08-26T20:45:20.6238534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ldexp_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.6242184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ldexp_native.h 2025-08-26T20:45:20.6245862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ldexp_ops.h 2025-08-26T20:45:20.6250224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le.h 2025-08-26T20:45:20.6253913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu.h 2025-08-26T20:45:20.6257597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward.h 2025-08-26T20:45:20.6261849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.6265844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward_cpu_dispatch.h 2025-08-26T20:45:20.6269733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward_cuda_dispatch.h 2025-08-26T20:45:20.6273676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward_meta.h 2025-08-26T20:45:20.6277487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward_meta_dispatch.h 2025-08-26T20:45:20.6281379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward_native.h 2025-08-26T20:45:20.6285179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward_ops.h 2025-08-26T20:45:20.6289370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.6293103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_cpu_dispatch.h 2025-08-26T20:45:20.6296925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_cuda_dispatch.h 2025-08-26T20:45:20.6300754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_meta.h 2025-08-26T20:45:20.6304772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_meta_dispatch.h 2025-08-26T20:45:20.6308519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_native.h 2025-08-26T20:45:20.6312332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_ops.h 2025-08-26T20:45:20.6316292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp.h 2025-08-26T20:45:20.6319992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.6323616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp_cpu_dispatch.h 2025-08-26T20:45:20.6327295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp_cuda_dispatch.h 2025-08-26T20:45:20.6331004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp_meta.h 2025-08-26T20:45:20.6334716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp_meta_dispatch.h 2025-08-26T20:45:20.6338535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp_native.h 2025-08-26T20:45:20.6342253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp_ops.h 2025-08-26T20:45:20.6346033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less.h 2025-08-26T20:45:20.6349621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.6353135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less_equal.h 2025-08-26T20:45:20.6356903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less_equal_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.6360599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less_equal_native.h 2025-08-26T20:45:20.6365028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less_equal_ops.h 2025-08-26T20:45:20.6370263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less_native.h 2025-08-26T20:45:20.6374105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less_ops.h 2025-08-26T20:45:20.6377903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.6381772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le_cpu_dispatch.h 2025-08-26T20:45:20.6385875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le_cuda_dispatch.h 2025-08-26T20:45:20.6390098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le_meta.h 2025-08-26T20:45:20.6393623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le_meta_dispatch.h 2025-08-26T20:45:20.6397707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le_native.h 2025-08-26T20:45:20.6401483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le_ops.h 2025-08-26T20:45:20.6404877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma.h 2025-08-26T20:45:20.6408835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.6413462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma_cpu_dispatch.h 2025-08-26T20:45:20.6416434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma_cuda_dispatch.h 2025-08-26T20:45:20.6420200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma_meta.h 2025-08-26T20:45:20.6424944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma_meta_dispatch.h 2025-08-26T20:45:20.6428236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma_native.h 2025-08-26T20:45:20.6432706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma_ops.h 2025-08-26T20:45:20.6436596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift.h 2025-08-26T20:45:20.6440407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.6444386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh.h 2025-08-26T20:45:20.6448292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.6451972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_copy.h 2025-08-26T20:45:20.6456087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.6460739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.6465197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_copy_native.h 2025-08-26T20:45:20.6468712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_copy_ops.h 2025-08-26T20:45:20.6472760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_native.h 2025-08-26T20:45:20.6477130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_ops.h 2025-08-26T20:45:20.6480933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_native.h 2025-08-26T20:45:20.6484900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_ops.h 2025-08-26T20:45:20.6488454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky.h 2025-08-26T20:45:20.6492347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.6496480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex.h 2025-08-26T20:45:20.6500528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.6505287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex_cpu_dispatch.h 2025-08-26T20:45:20.6508323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex_cuda_dispatch.h 2025-08-26T20:45:20.6512248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex_meta.h 2025-08-26T20:45:20.6517091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex_meta_dispatch.h 2025-08-26T20:45:20.6520172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex_native.h 2025-08-26T20:45:20.6524513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex_ops.h 2025-08-26T20:45:20.6529096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_native.h 2025-08-26T20:45:20.6534051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ops.h 2025-08-26T20:45:20.6537048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cond.h 2025-08-26T20:45:20.6541121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cond_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.6545841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cond_native.h 2025-08-26T20:45:20.6549150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cond_ops.h 2025-08-26T20:45:20.6553237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross.h 2025-08-26T20:45:20.6557587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.6561338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross_cpu_dispatch.h 2025-08-26T20:45:20.6565523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross_cuda_dispatch.h 2025-08-26T20:45:20.6569497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross_meta.h 2025-08-26T20:45:20.6574290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross_meta_dispatch.h 2025-08-26T20:45:20.6577406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross_native.h 2025-08-26T20:45:20.6581434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross_ops.h 2025-08-26T20:45:20.6586101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_det.h 2025-08-26T20:45:20.6590087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_det_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.6594252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_det_native.h 2025-08-26T20:45:20.6598249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_det_ops.h 2025-08-26T20:45:20.6603099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_diagonal.h 2025-08-26T20:45:20.6606530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_diagonal_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.6610347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_diagonal_native.h 2025-08-26T20:45:20.6615064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_diagonal_ops.h 2025-08-26T20:45:20.6617953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eig.h 2025-08-26T20:45:20.6622321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigh.h 2025-08-26T20:45:20.6626782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigh_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.6630146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigh_native.h 2025-08-26T20:45:20.6634245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigh_ops.h 2025-08-26T20:45:20.6638148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvals.h 2025-08-26T20:45:20.6641939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvalsh.h 2025-08-26T20:45:20.6646365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvalsh_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.6650375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvalsh_native.h 2025-08-26T20:45:20.6655142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvalsh_ops.h 2025-08-26T20:45:20.6658266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvals_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.6662818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvals_cpu_dispatch.h 2025-08-26T20:45:20.6698207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvals_cuda_dispatch.h 2025-08-26T20:45:20.6701938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvals_native.h 2025-08-26T20:45:20.6706554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvals_ops.h 2025-08-26T20:45:20.6711111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eig_cpu_dispatch.h 2025-08-26T20:45:20.6715018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eig_cuda_dispatch.h 2025-08-26T20:45:20.6719160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eig_native.h 2025-08-26T20:45:20.6723174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eig_ops.h 2025-08-26T20:45:20.6727464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_householder_product.h 2025-08-26T20:45:20.6731451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_householder_product_cpu_dispatch.h 2025-08-26T20:45:20.6735706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_householder_product_cuda_dispatch.h 2025-08-26T20:45:20.6739633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_householder_product_native.h 2025-08-26T20:45:20.6743746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_householder_product_ops.h 2025-08-26T20:45:20.6747704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv.h 2025-08-26T20:45:20.6751737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.6755658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex.h 2025-08-26T20:45:20.6759818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.6763557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex_cpu_dispatch.h 2025-08-26T20:45:20.6767416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex_cuda_dispatch.h 2025-08-26T20:45:20.6771361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex_meta.h 2025-08-26T20:45:20.6775229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex_meta_dispatch.h 2025-08-26T20:45:20.6779105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex_native.h 2025-08-26T20:45:20.6783445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex_ops.h 2025-08-26T20:45:20.6787383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_native.h 2025-08-26T20:45:20.6791021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ops.h 2025-08-26T20:45:20.6794909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor.h 2025-08-26T20:45:20.6799015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.6803560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex.h 2025-08-26T20:45:20.6808141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.6812132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex_cpu_dispatch.h 2025-08-26T20:45:20.6816013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex_cuda_dispatch.h 2025-08-26T20:45:20.6819926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex_meta.h 2025-08-26T20:45:20.6824041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex_meta_dispatch.h 2025-08-26T20:45:20.6828588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex_native.h 2025-08-26T20:45:20.6832523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex_ops.h 2025-08-26T20:45:20.6836387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_native.h 2025-08-26T20:45:20.6840203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ops.h 2025-08-26T20:45:20.6844018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve.h 2025-08-26T20:45:20.6848214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.6852316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve_cpu_dispatch.h 2025-08-26T20:45:20.6856221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve_cuda_dispatch.h 2025-08-26T20:45:20.6860041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve_meta.h 2025-08-26T20:45:20.6864033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve_meta_dispatch.h 2025-08-26T20:45:20.6868117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve_native.h 2025-08-26T20:45:20.6871962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve_ops.h 2025-08-26T20:45:20.6876082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lstsq.h 2025-08-26T20:45:20.6880041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lstsq_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.6883755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lstsq_cpu_dispatch.h 2025-08-26T20:45:20.6887529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lstsq_cuda_dispatch.h 2025-08-26T20:45:20.6891297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lstsq_native.h 2025-08-26T20:45:20.6895142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lstsq_ops.h 2025-08-26T20:45:20.6898921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu.h 2025-08-26T20:45:20.6902946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.6906996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_cpu_dispatch.h 2025-08-26T20:45:20.6910852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_cuda_dispatch.h 2025-08-26T20:45:20.6914652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor.h 2025-08-26T20:45:20.6919095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.6922750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex.h 2025-08-26T20:45:20.6927302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.6931255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex_cpu_dispatch.h 2025-08-26T20:45:20.6935075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex_cuda_dispatch.h 2025-08-26T20:45:20.6938890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex_meta.h 2025-08-26T20:45:20.6942812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex_meta_dispatch.h 2025-08-26T20:45:20.6946694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex_native.h 2025-08-26T20:45:20.6950500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex_ops.h 2025-08-26T20:45:20.6954490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_native.h 2025-08-26T20:45:20.6958299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ops.h 2025-08-26T20:45:20.6962195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_meta.h 2025-08-26T20:45:20.6965912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_meta_dispatch.h 2025-08-26T20:45:20.6970011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_native.h 2025-08-26T20:45:20.6973931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_ops.h 2025-08-26T20:45:20.6977701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve.h 2025-08-26T20:45:20.6981744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.6986449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve_cpu_dispatch.h 2025-08-26T20:45:20.6990291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve_cuda_dispatch.h 2025-08-26T20:45:20.6994063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve_meta.h 2025-08-26T20:45:20.6997910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve_meta_dispatch.h 2025-08-26T20:45:20.7001722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve_native.h 2025-08-26T20:45:20.7005774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve_ops.h 2025-08-26T20:45:20.7010255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matmul.h 2025-08-26T20:45:20.7014330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matmul_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.7018132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matmul_native.h 2025-08-26T20:45:20.7021918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matmul_ops.h 2025-08-26T20:45:20.7025833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_exp.h 2025-08-26T20:45:20.7030276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_exp_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.7035285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_exp_cpu_dispatch.h 2025-08-26T20:45:20.7040445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_exp_cuda_dispatch.h 2025-08-26T20:45:20.7043746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_exp_native.h 2025-08-26T20:45:20.7048137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_exp_ops.h 2025-08-26T20:45:20.7052157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_norm.h 2025-08-26T20:45:20.7056903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_norm_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.7060542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_norm_native.h 2025-08-26T20:45:20.7065207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_norm_ops.h 2025-08-26T20:45:20.7069339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_power.h 2025-08-26T20:45:20.7075072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_power_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.7078182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_power_native.h 2025-08-26T20:45:20.7082647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_power_ops.h 2025-08-26T20:45:20.7086988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_rank.h 2025-08-26T20:45:20.7090802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_rank_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.7095235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_rank_native.h 2025-08-26T20:45:20.7099242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_rank_ops.h 2025-08-26T20:45:20.7104210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_multi_dot.h 2025-08-26T20:45:20.7107542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_multi_dot_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.7112345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_multi_dot_native.h 2025-08-26T20:45:20.7116276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_multi_dot_ops.h 2025-08-26T20:45:20.7120290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_norm.h 2025-08-26T20:45:20.7124372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_norm_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.7128857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_norm_native.h 2025-08-26T20:45:20.7132923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_norm_ops.h 2025-08-26T20:45:20.7136748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_pinv.h 2025-08-26T20:45:20.7173259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_pinv_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.7177233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_pinv_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.7182717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_pinv_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.7248103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_pinv_native.h 2025-08-26T20:45:20.7253662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_pinv_ops.h 2025-08-26T20:45:20.7259713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr.h 2025-08-26T20:45:20.7266515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.7271434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr_cpu_dispatch.h 2025-08-26T20:45:20.7293046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr_cuda_dispatch.h 2025-08-26T20:45:20.7297102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr_meta.h 2025-08-26T20:45:20.7301060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr_meta_dispatch.h 2025-08-26T20:45:20.7304992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr_native.h 2025-08-26T20:45:20.7309059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr_ops.h 2025-08-26T20:45:20.7313018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_slogdet.h 2025-08-26T20:45:20.7317360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_slogdet_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.7321740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_slogdet_native.h 2025-08-26T20:45:20.7325633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_slogdet_ops.h 2025-08-26T20:45:20.7329613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve.h 2025-08-26T20:45:20.7351446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.7362409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_ex.h 2025-08-26T20:45:20.7366851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_ex_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.7379020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_ex_native.h 2025-08-26T20:45:20.7385575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_ex_ops.h 2025-08-26T20:45:20.7390203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_native.h 2025-08-26T20:45:20.7441131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_ops.h 2025-08-26T20:45:20.7445079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_triangular.h 2025-08-26T20:45:20.7449538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_triangular_cpu_dispatch.h 2025-08-26T20:45:20.7453621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_triangular_cuda_dispatch.h 2025-08-26T20:45:20.7457555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_triangular_native.h 2025-08-26T20:45:20.7461686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_triangular_ops.h 2025-08-26T20:45:20.7465580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svd.h 2025-08-26T20:45:20.7469553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svdvals.h 2025-08-26T20:45:20.7473539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svdvals_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.7477379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svdvals_native.h 2025-08-26T20:45:20.7481641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svdvals_ops.h 2025-08-26T20:45:20.7485995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svd_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.7490144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svd_native.h 2025-08-26T20:45:20.7493959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svd_ops.h 2025-08-26T20:45:20.7497783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorinv.h 2025-08-26T20:45:20.7501871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorinv_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.7505799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorinv_native.h 2025-08-26T20:45:20.7509656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorinv_ops.h 2025-08-26T20:45:20.7513640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorsolve.h 2025-08-26T20:45:20.7517685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorsolve_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.7521519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorsolve_native.h 2025-08-26T20:45:20.7525461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorsolve_ops.h 2025-08-26T20:45:20.7529406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vander.h 2025-08-26T20:45:20.7533401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vander_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.7537256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vander_native.h 2025-08-26T20:45:20.7541208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vander_ops.h 2025-08-26T20:45:20.7578609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vecdot.h 2025-08-26T20:45:20.7582587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vecdot_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.7587242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vecdot_native.h 2025-08-26T20:45:20.7591314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vecdot_ops.h 2025-08-26T20:45:20.7595901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm.h 2025-08-26T20:45:20.7600388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.7604961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm_cpu_dispatch.h 2025-08-26T20:45:20.7608978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm_cuda_dispatch.h 2025-08-26T20:45:20.7613902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm_meta.h 2025-08-26T20:45:20.7617001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm_meta_dispatch.h 2025-08-26T20:45:20.7620963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm_native.h 2025-08-26T20:45:20.7625653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm_ops.h 2025-08-26T20:45:20.7629181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear.h 2025-08-26T20:45:20.7633667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_backward.h 2025-08-26T20:45:20.7638397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.7642982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_backward_native.h 2025-08-26T20:45:20.7646406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_backward_ops.h 2025-08-26T20:45:20.7650852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.7654954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.7659892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_native.h 2025-08-26T20:45:20.7662881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_ops.h 2025-08-26T20:45:20.7667331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linspace.h 2025-08-26T20:45:20.7671838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linspace_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.7674895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linspace_cpu_dispatch.h 2025-08-26T20:45:20.7679511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linspace_cuda_dispatch.h 2025-08-26T20:45:20.7683456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linspace_meta_dispatch.h 2025-08-26T20:45:20.7687357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linspace_native.h 2025-08-26T20:45:20.7691665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linspace_ops.h 2025-08-26T20:45:20.7696192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log.h 2025-08-26T20:45:20.7700459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10.h 2025-08-26T20:45:20.7704271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.7708272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10_cpu_dispatch.h 2025-08-26T20:45:20.7712170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10_cuda_dispatch.h 2025-08-26T20:45:20.7715955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10_meta.h 2025-08-26T20:45:20.7720212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10_meta_dispatch.h 2025-08-26T20:45:20.7724154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10_native.h 2025-08-26T20:45:20.7730137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10_ops.h 2025-08-26T20:45:20.7731910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p.h 2025-08-26T20:45:20.7758311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.7759124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p_cpu_dispatch.h 2025-08-26T20:45:20.7759724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p_cuda_dispatch.h 2025-08-26T20:45:20.7760285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p_meta.h 2025-08-26T20:45:20.7760853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p_meta_dispatch.h 2025-08-26T20:45:20.7761418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p_native.h 2025-08-26T20:45:20.7762291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p_ops.h 2025-08-26T20:45:20.7766559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2.h 2025-08-26T20:45:20.7784195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.7785081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2_cpu_dispatch.h 2025-08-26T20:45:20.7785675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2_cuda_dispatch.h 2025-08-26T20:45:20.7786231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2_meta.h 2025-08-26T20:45:20.7786779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2_meta_dispatch.h 2025-08-26T20:45:20.7790434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2_native.h 2025-08-26T20:45:20.7794508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2_ops.h 2025-08-26T20:45:20.7797993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp.h 2025-08-26T20:45:20.7801727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2.h 2025-08-26T20:45:20.7805663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.7809561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2_cpu_dispatch.h 2025-08-26T20:45:20.7813542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2_cuda_dispatch.h 2025-08-26T20:45:20.7817826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2_meta.h 2025-08-26T20:45:20.7821709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2_meta_dispatch.h 2025-08-26T20:45:20.7825594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2_native.h 2025-08-26T20:45:20.7829342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2_ops.h 2025-08-26T20:45:20.7833388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.7837059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp_cpu_dispatch.h 2025-08-26T20:45:20.7841167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp_cuda_dispatch.h 2025-08-26T20:45:20.7845111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp_meta.h 2025-08-26T20:45:20.7849896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp_meta_dispatch.h 2025-08-26T20:45:20.7853751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp_native.h 2025-08-26T20:45:20.7857490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp_ops.h 2025-08-26T20:45:20.7861437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logcumsumexp.h 2025-08-26T20:45:20.7865475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logcumsumexp_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.7869324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logcumsumexp_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.7873331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logcumsumexp_native.h 2025-08-26T20:45:20.7877711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logcumsumexp_ops.h 2025-08-26T20:45:20.7881757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logdet.h 2025-08-26T20:45:20.7886541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logdet_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.7889303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logdet_native.h 2025-08-26T20:45:20.7893084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logdet_ops.h 2025-08-26T20:45:20.7897302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_and.h 2025-08-26T20:45:20.7901301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_and_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.7905117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_and_cpu_dispatch.h 2025-08-26T20:45:20.7908896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_and_cuda_dispatch.h 2025-08-26T20:45:20.7912583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_and_native.h 2025-08-26T20:45:20.7917032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_and_ops.h 2025-08-26T20:45:20.7920832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_not.h 2025-08-26T20:45:20.7925613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_not_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.7929741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_not_cpu_dispatch.h 2025-08-26T20:45:20.7933551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_not_cuda_dispatch.h 2025-08-26T20:45:20.7937363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_not_native.h 2025-08-26T20:45:20.7941342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_not_ops.h 2025-08-26T20:45:20.7945532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_or.h 2025-08-26T20:45:20.7949960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_or_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.7953776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_or_cpu_dispatch.h 2025-08-26T20:45:20.7957805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_or_cuda_dispatch.h 2025-08-26T20:45:20.7961690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_or_native.h 2025-08-26T20:45:20.7965495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_or_ops.h 2025-08-26T20:45:20.7969332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_xor.h 2025-08-26T20:45:20.8004048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_xor_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.8007497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_xor_cpu_dispatch.h 2025-08-26T20:45:20.8012390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_xor_cuda_dispatch.h 2025-08-26T20:45:20.8017832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_xor_native.h 2025-08-26T20:45:20.8022176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_xor_ops.h 2025-08-26T20:45:20.8027275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit.h 2025-08-26T20:45:20.8030801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward.h 2025-08-26T20:45:20.8035383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.8040599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward_cpu_dispatch.h 2025-08-26T20:45:20.8045243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward_cuda_dispatch.h 2025-08-26T20:45:20.8050186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward_meta.h 2025-08-26T20:45:20.8054363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward_meta_dispatch.h 2025-08-26T20:45:20.8058860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward_native.h 2025-08-26T20:45:20.8063707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward_ops.h 2025-08-26T20:45:20.8068027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_cpu_dispatch.h 2025-08-26T20:45:20.8073553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_cuda_dispatch.h 2025-08-26T20:45:20.8078894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_meta_dispatch.h 2025-08-26T20:45:20.8083016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_native.h 2025-08-26T20:45:20.8087836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_ops.h 2025-08-26T20:45:20.8092576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logspace.h 2025-08-26T20:45:20.8096957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logspace_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.8101930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logspace_cpu_dispatch.h 2025-08-26T20:45:20.8113114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logspace_cuda_dispatch.h 2025-08-26T20:45:20.8114173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logspace_meta_dispatch.h 2025-08-26T20:45:20.8119551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logspace_native.h 2025-08-26T20:45:20.8124137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logspace_ops.h 2025-08-26T20:45:20.8128541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logsumexp.h 2025-08-26T20:45:20.8133320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logsumexp_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.8138596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logsumexp_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.8143340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logsumexp_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.8148014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logsumexp_native.h 2025-08-26T20:45:20.8151550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logsumexp_ops.h 2025-08-26T20:45:20.8156273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.8160019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_cpu_dispatch.h 2025-08-26T20:45:20.8163768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_cuda_dispatch.h 2025-08-26T20:45:20.8167567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_meta.h 2025-08-26T20:45:20.8171170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_meta_dispatch.h 2025-08-26T20:45:20.8174920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_native.h 2025-08-26T20:45:20.8178930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_normal.h 2025-08-26T20:45:20.8182993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_normal_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.8187865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_normal_cpu_dispatch.h 2025-08-26T20:45:20.8190954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_normal_cuda_dispatch.h 2025-08-26T20:45:20.8195250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_normal_meta_dispatch.h 2025-08-26T20:45:20.8199737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_normal_native.h 2025-08-26T20:45:20.8203942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_normal_ops.h 2025-08-26T20:45:20.8208476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_ops.h 2025-08-26T20:45:20.8213138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid.h 2025-08-26T20:45:20.8217811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_backward.h 2025-08-26T20:45:20.8222972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_backward_cpu_dispatch.h 2025-08-26T20:45:20.8226706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_backward_cuda_dispatch.h 2025-08-26T20:45:20.8231153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_backward_native.h 2025-08-26T20:45:20.8236067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_backward_ops.h 2025-08-26T20:45:20.8240634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.8245288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_forward.h 2025-08-26T20:45:20.8259615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_forward_cpu_dispatch.h 2025-08-26T20:45:20.8264384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_forward_cuda_dispatch.h 2025-08-26T20:45:20.8268894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_forward_native.h 2025-08-26T20:45:20.8273618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_forward_ops.h 2025-08-26T20:45:20.8278268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_native.h 2025-08-26T20:45:20.8282244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_ops.h 2025-08-26T20:45:20.8286340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_softmax.h 2025-08-26T20:45:20.8290267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_softmax_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.8294140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_softmax_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.8298474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_softmax_native.h 2025-08-26T20:45:20.8302236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_softmax_ops.h 2025-08-26T20:45:20.8306122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lshift.h 2025-08-26T20:45:20.8309780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lshift_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.8313636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lshift_cpu_dispatch.h 2025-08-26T20:45:20.8317426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lshift_cuda_dispatch.h 2025-08-26T20:45:20.8321660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lshift_meta_dispatch.h 2025-08-26T20:45:20.8325800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lshift_native.h 2025-08-26T20:45:20.8329567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lshift_ops.h 2025-08-26T20:45:20.8333444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm.h 2025-08-26T20:45:20.8336818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_cell.h 2025-08-26T20:45:20.8340877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_cell_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.8344842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_cell_native.h 2025-08-26T20:45:20.8348747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_cell_ops.h 2025-08-26T20:45:20.8352619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.8356259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_mps_backward.h 2025-08-26T20:45:20.8360156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_mps_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.8363872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_mps_backward_native.h 2025-08-26T20:45:20.8367748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_mps_backward_ops.h 2025-08-26T20:45:20.8371776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_native.h 2025-08-26T20:45:20.8375756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_ops.h 2025-08-26T20:45:20.8379239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt.h 2025-08-26T20:45:20.8383072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.8386895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt_cpu_dispatch.h 2025-08-26T20:45:20.8390671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt_cuda_dispatch.h 2025-08-26T20:45:20.8394335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt_meta.h 2025-08-26T20:45:20.8398004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt_meta_dispatch.h 2025-08-26T20:45:20.8402031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt_native.h 2025-08-26T20:45:20.8405623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt_ops.h 2025-08-26T20:45:20.8409064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_solve.h 2025-08-26T20:45:20.8412684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_solve_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.8417018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_solve_native.h 2025-08-26T20:45:20.8420638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_solve_ops.h 2025-08-26T20:45:20.8424409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack.h 2025-08-26T20:45:20.8428634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.8433021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack_cpu_dispatch.h 2025-08-26T20:45:20.8436865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack_cuda_dispatch.h 2025-08-26T20:45:20.8440594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack_meta.h 2025-08-26T20:45:20.8444391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack_meta_dispatch.h 2025-08-26T20:45:20.8448301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack_native.h 2025-08-26T20:45:20.8452168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack_ops.h 2025-08-26T20:45:20.8455979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\margin_ranking_loss.h 2025-08-26T20:45:20.8460257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\margin_ranking_loss_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.8464082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\margin_ranking_loss_native.h 2025-08-26T20:45:20.8468496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\margin_ranking_loss_ops.h 2025-08-26T20:45:20.8472223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_fill.h 2025-08-26T20:45:20.8476627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_fill_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.8480746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_fill_cpu_dispatch.h 2025-08-26T20:45:20.8484249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_fill_cuda_dispatch.h 2025-08-26T20:45:20.8488304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_fill_meta_dispatch.h 2025-08-26T20:45:20.8492107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_fill_native.h 2025-08-26T20:45:20.8495873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_fill_ops.h 2025-08-26T20:45:20.8499755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter.h 2025-08-26T20:45:20.8503680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_backward.h 2025-08-26T20:45:20.8507981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.8511855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_backward_native.h 2025-08-26T20:45:20.8516313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_backward_ops.h 2025-08-26T20:45:20.8520621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.8524366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_cpu_dispatch.h 2025-08-26T20:45:20.8529287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_cuda_dispatch.h 2025-08-26T20:45:20.8533819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_meta_dispatch.h 2025-08-26T20:45:20.8538221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_native.h 2025-08-26T20:45:20.8542253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_ops.h 2025-08-26T20:45:20.8546136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select.h 2025-08-26T20:45:20.8550037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_backward.h 2025-08-26T20:45:20.8554165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.8558326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_backward_native.h 2025-08-26T20:45:20.8562294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_backward_ops.h 2025-08-26T20:45:20.8566466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_cpu_dispatch.h 2025-08-26T20:45:20.8570328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_cuda_dispatch.h 2025-08-26T20:45:20.8574342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_native.h 2025-08-26T20:45:20.8578286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_ops.h 2025-08-26T20:45:20.8582064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul.h 2025-08-26T20:45:20.8585915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul_backward.h 2025-08-26T20:45:20.8590533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.8594471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul_backward_native.h 2025-08-26T20:45:20.8598501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul_backward_ops.h 2025-08-26T20:45:20.8602573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.8606559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul_native.h 2025-08-26T20:45:20.8610203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul_ops.h 2025-08-26T20:45:20.8614359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp.h 2025-08-26T20:45:20.8618812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp_backward.h 2025-08-26T20:45:20.8622933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.8627112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp_backward_native.h 2025-08-26T20:45:20.8631312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp_backward_ops.h 2025-08-26T20:45:20.8635639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.8639578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp_native.h 2025-08-26T20:45:20.8643545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp_ops.h 2025-08-26T20:45:20.8647696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_H.h 2025-08-26T20:45:20.8651455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_H_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.8655432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_H_native.h 2025-08-26T20:45:20.8659453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_H_ops.h 2025-08-26T20:45:20.8663029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_power.h 2025-08-26T20:45:20.8667182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_power_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.8671476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_power_native.h 2025-08-26T20:45:20.8675346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_power_ops.h 2025-08-26T20:45:20.8679159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max.h 2025-08-26T20:45:20.8683373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum.h 2025-08-26T20:45:20.8687242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.8690848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum_cpu_dispatch.h 2025-08-26T20:45:20.8694751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum_cuda_dispatch.h 2025-08-26T20:45:20.8699003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum_meta.h 2025-08-26T20:45:20.8702840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum_meta_dispatch.h 2025-08-26T20:45:20.8706891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum_native.h 2025-08-26T20:45:20.8710738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum_ops.h 2025-08-26T20:45:20.8715015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.8718823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.8722956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_cpu_dispatch.h 2025-08-26T20:45:20.8727000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_cuda_dispatch.h 2025-08-26T20:45:20.8730449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_meta.h 2025-08-26T20:45:20.8733928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_meta_dispatch.h 2025-08-26T20:45:20.8737626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_native.h 2025-08-26T20:45:20.8750095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_ops.h 2025-08-26T20:45:20.8750831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d.h 2025-08-26T20:45:20.8751504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.8755858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d_native.h 2025-08-26T20:45:20.8758354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d_ops.h 2025-08-26T20:45:20.8762873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d_with_indices.h 2025-08-26T20:45:20.8768374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d_with_indices_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.8771229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d_with_indices_native.h 2025-08-26T20:45:20.8775135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d_with_indices_ops.h 2025-08-26T20:45:20.8779378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d.h 2025-08-26T20:45:20.8783263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_backward.h 2025-08-26T20:45:20.8787422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.8791131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_backward_native.h 2025-08-26T20:45:20.8794989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_backward_ops.h 2025-08-26T20:45:20.8799086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.8802939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_native.h 2025-08-26T20:45:20.8807079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_ops.h 2025-08-26T20:45:20.8811042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices.h 2025-08-26T20:45:20.8814921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward.h 2025-08-26T20:45:20.8819056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.8823310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward_cpu_dispatch.h 2025-08-26T20:45:20.8827363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward_cuda_dispatch.h 2025-08-26T20:45:20.8832696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward_meta.h 2025-08-26T20:45:20.8835459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward_meta_dispatch.h 2025-08-26T20:45:20.8839710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward_native.h 2025-08-26T20:45:20.8843783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward_ops.h 2025-08-26T20:45:20.8847878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.8851691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_cpu_dispatch.h 2025-08-26T20:45:20.8856290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_cuda_dispatch.h 2025-08-26T20:45:20.8860471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_meta.h 2025-08-26T20:45:20.8864552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_meta_dispatch.h 2025-08-26T20:45:20.8868731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_native.h 2025-08-26T20:45:20.8872696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_ops.h 2025-08-26T20:45:20.8876384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d.h 2025-08-26T20:45:20.8880339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.8884368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_native.h 2025-08-26T20:45:20.8888422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_ops.h 2025-08-26T20:45:20.8892420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices.h 2025-08-26T20:45:20.8896539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_backward.h 2025-08-26T20:45:20.8900510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_backward_cpu_dispatch.h 2025-08-26T20:45:20.8904535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_backward_cuda_dispatch.h 2025-08-26T20:45:20.8908500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_backward_native.h 2025-08-26T20:45:20.8912446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_backward_ops.h 2025-08-26T20:45:20.8916586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_cpu_dispatch.h 2025-08-26T20:45:20.8920494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_cuda_dispatch.h 2025-08-26T20:45:20.8924431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_native.h 2025-08-26T20:45:20.8928304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_ops.h 2025-08-26T20:45:20.8932090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool2d.h 2025-08-26T20:45:20.8936308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool2d_cpu_dispatch.h 2025-08-26T20:45:20.8940147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool2d_cuda_dispatch.h 2025-08-26T20:45:20.8945228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool2d_native.h 2025-08-26T20:45:20.8949125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool2d_ops.h 2025-08-26T20:45:20.8952919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool3d.h 2025-08-26T20:45:20.8956780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool3d_cpu_dispatch.h 2025-08-26T20:45:20.8961235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool3d_cuda_dispatch.h 2025-08-26T20:45:20.8965130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool3d_native.h 2025-08-26T20:45:20.8968984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool3d_ops.h 2025-08-26T20:45:20.8973023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean.h 2025-08-26T20:45:20.8977082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.8981174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.8985231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.8989929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_cpu_dispatch.h 2025-08-26T20:45:20.8993055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_cuda_dispatch.h 2025-08-26T20:45:20.8997581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_meta.h 2025-08-26T20:45:20.9001668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_meta_dispatch.h 2025-08-26T20:45:20.9005357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_native.h 2025-08-26T20:45:20.9009590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_ops.h 2025-08-26T20:45:20.9013254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\median.h 2025-08-26T20:45:20.9016861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\median_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.9020809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\median_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.9024704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\median_cpu_dispatch.h 2025-08-26T20:45:20.9028409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\median_cuda_dispatch.h 2025-08-26T20:45:20.9032658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\median_native.h 2025-08-26T20:45:20.9036593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\median_ops.h 2025-08-26T20:45:20.9041780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\meshgrid.h 2025-08-26T20:45:20.9044582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\meshgrid_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.9049081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\meshgrid_native.h 2025-08-26T20:45:20.9053515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\meshgrid_ops.h 2025-08-26T20:45:20.9056610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mH.h 2025-08-26T20:45:20.9060347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mH_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.9065031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mH_native.h 2025-08-26T20:45:20.9095689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mH_ops.h 2025-08-26T20:45:20.9099414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min.h 2025-08-26T20:45:20.9103334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum.h 2025-08-26T20:45:20.9107219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.9111001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum_cpu_dispatch.h 2025-08-26T20:45:20.9114771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum_cuda_dispatch.h 2025-08-26T20:45:20.9119193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum_meta.h 2025-08-26T20:45:20.9123240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum_meta_dispatch.h 2025-08-26T20:45:20.9127931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum_native.h 2025-08-26T20:45:20.9130763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum_ops.h 2025-08-26T20:45:20.9134807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.9139466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.9142251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_cpu_dispatch.h 2025-08-26T20:45:20.9147072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_cuda_dispatch.h 2025-08-26T20:45:20.9151256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_meta.h 2025-08-26T20:45:20.9155109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_meta_dispatch.h 2025-08-26T20:45:20.9158972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_native.h 2025-08-26T20:45:20.9162667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_ops.h 2025-08-26T20:45:20.9166123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm.h 2025-08-26T20:45:20.9170473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_backward.h 2025-08-26T20:45:20.9174764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.9179736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_backward_cuda_dispatch.h 2025-08-26T20:45:20.9182723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_backward_native.h 2025-08-26T20:45:20.9186625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_backward_ops.h 2025-08-26T20:45:20.9191511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.9194526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_cuda_dispatch.h 2025-08-26T20:45:20.9198893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_native.h 2025-08-26T20:45:20.9203000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_ops.h 2025-08-26T20:45:20.9206859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution.h 2025-08-26T20:45:20.9211205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_add_relu.h 2025-08-26T20:45:20.9215274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_add_relu_cuda_dispatch.h 2025-08-26T20:45:20.9220281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_add_relu_native.h 2025-08-26T20:45:20.9224133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_add_relu_ops.h 2025-08-26T20:45:20.9229354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.9233829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_cuda_dispatch.h 2025-08-26T20:45:20.9237851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_native.h 2025-08-26T20:45:20.9241748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_ops.h 2025-08-26T20:45:20.9256192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_relu.h 2025-08-26T20:45:20.9256879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_relu_cuda_dispatch.h 2025-08-26T20:45:20.9257587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_relu_native.h 2025-08-26T20:45:20.9259789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_relu_ops.h 2025-08-26T20:45:20.9263923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_transpose.h 2025-08-26T20:45:20.9268296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_transpose_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.9272087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_transpose_cuda_dispatch.h 2025-08-26T20:45:20.9276197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_transpose_native.h 2025-08-26T20:45:20.9280412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_transpose_ops.h 2025-08-26T20:45:20.9284636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_depthwise_convolution.h 2025-08-26T20:45:20.9288684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_depthwise_convolution_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.9292698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_depthwise_convolution_cuda_dispatch.h 2025-08-26T20:45:20.9296919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_depthwise_convolution_native.h 2025-08-26T20:45:20.9300840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_depthwise_convolution_ops.h 2025-08-26T20:45:20.9304977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn.h 2025-08-26T20:45:20.9309078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_backward.h 2025-08-26T20:45:20.9313476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.9317304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_backward_cuda_dispatch.h 2025-08-26T20:45:20.9321154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_backward_native.h 2025-08-26T20:45:20.9324972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_backward_ops.h 2025-08-26T20:45:20.9329011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.9332810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_cuda_dispatch.h 2025-08-26T20:45:20.9336638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_native.h 2025-08-26T20:45:20.9341189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_ops.h 2025-08-26T20:45:20.9344988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish.h 2025-08-26T20:45:20.9348476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_backward.h 2025-08-26T20:45:20.9352350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.9356291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_backward_cpu_dispatch.h 2025-08-26T20:45:20.9360162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_backward_cuda_dispatch.h 2025-08-26T20:45:20.9363971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_backward_native.h 2025-08-26T20:45:20.9367708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_backward_ops.h 2025-08-26T20:45:20.9371659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.9375270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_cpu_dispatch.h 2025-08-26T20:45:20.9378926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_cuda_dispatch.h 2025-08-26T20:45:20.9382807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_meta.h 2025-08-26T20:45:20.9386897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_meta_dispatch.h 2025-08-26T20:45:20.9391276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_native.h 2025-08-26T20:45:20.9395054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_ops.h 2025-08-26T20:45:20.9399027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d.h 2025-08-26T20:45:20.9402651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward.h 2025-08-26T20:45:20.9407058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.9411151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_native.h 2025-08-26T20:45:20.9416366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_ops.h 2025-08-26T20:45:20.9419908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_native.h 2025-08-26T20:45:20.9424511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_ops.h 2025-08-26T20:45:20.9428515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_convolution.h 2025-08-26T20:45:20.9433490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_convolution_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.9436954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_convolution_native.h 2025-08-26T20:45:20.9441468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_convolution_ops.h 2025-08-26T20:45:20.9445857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear.h 2025-08-26T20:45:20.9450242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward.h 2025-08-26T20:45:20.9453852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.9457791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_input.h 2025-08-26T20:45:20.9462685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_input_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.9466014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_input_native.h 2025-08-26T20:45:20.9470554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_input_ops.h 2025-08-26T20:45:20.9474821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_native.h 2025-08-26T20:45:20.9479817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_ops.h 2025-08-26T20:45:20.9482756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_weights.h 2025-08-26T20:45:20.9487506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_weights_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.9491604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_weights_native.h 2025-08-26T20:45:20.9495479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_weights_ops.h 2025-08-26T20:45:20.9499625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.9503602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_native.h 2025-08-26T20:45:20.9508651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_ops.h 2025-08-26T20:45:20.9511775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d.h 2025-08-26T20:45:20.9516554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d_backward.h 2025-08-26T20:45:20.9520980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.9525918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d_backward_native.h 2025-08-26T20:45:20.9528937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d_backward_ops.h 2025-08-26T20:45:20.9533501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.9537956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d_native.h 2025-08-26T20:45:20.9542930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d_ops.h 2025-08-26T20:45:20.9546053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d.h 2025-08-26T20:45:20.9549942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d_backward.h 2025-08-26T20:45:20.9554944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.9558260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d_backward_native.h 2025-08-26T20:45:20.9562926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d_backward_ops.h 2025-08-26T20:45:20.9567145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.9572131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d_native.h 2025-08-26T20:45:20.9575174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d_ops.h 2025-08-26T20:45:20.9579511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv2d_weight.h 2025-08-26T20:45:20.9584247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.9589339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_native.h 2025-08-26T20:45:20.9592718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_ops.h 2025-08-26T20:45:20.9597247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv3d_weight.h 2025-08-26T20:45:20.9601349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.9606470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_native.h 2025-08-26T20:45:20.9609570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_ops.h 2025-08-26T20:45:20.9614240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer.h 2025-08-26T20:45:20.9618394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_backward.h 2025-08-26T20:45:20.9623625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.9626731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_backward_cpu_dispatch.h 2025-08-26T20:45:20.9631104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_backward_native.h 2025-08-26T20:45:20.9635436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_backward_ops.h 2025-08-26T20:45:20.9639477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.9643689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_cpu_dispatch.h 2025-08-26T20:45:20.9648625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_native.h 2025-08-26T20:45:20.9652663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_ops.h 2025-08-26T20:45:20.9656344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm.h 2025-08-26T20:45:20.9660209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.9664224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm_cpu_dispatch.h 2025-08-26T20:45:20.9667918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm_cuda_dispatch.h 2025-08-26T20:45:20.9672298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm_meta.h 2025-08-26T20:45:20.9675902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm_meta_dispatch.h 2025-08-26T20:45:20.9679535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm_native.h 2025-08-26T20:45:20.9683682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm_ops.h 2025-08-26T20:45:20.9687263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mode.h 2025-08-26T20:45:20.9690891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mode_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.9695188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mode_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.9699190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mode_cpu_dispatch.h 2025-08-26T20:45:20.9702936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mode_cuda_dispatch.h 2025-08-26T20:45:20.9706861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mode_native.h 2025-08-26T20:45:20.9710866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mode_ops.h 2025-08-26T20:45:20.9714015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\moveaxis.h 2025-08-26T20:45:20.9717740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\moveaxis_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.9722429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\moveaxis_native.h 2025-08-26T20:45:20.9726521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\moveaxis_ops.h 2025-08-26T20:45:20.9730299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\movedim.h 2025-08-26T20:45:20.9734083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\movedim_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.9737825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\movedim_native.h 2025-08-26T20:45:20.9741474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\movedim_ops.h 2025-08-26T20:45:20.9745353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_backward.h 2025-08-26T20:45:20.9749271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.9753258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_backward_native.h 2025-08-26T20:45:20.9757071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_backward_ops.h 2025-08-26T20:45:20.9760971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_transpose_backward.h 2025-08-26T20:45:20.9765015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_transpose_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:20.9769282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_transpose_backward_native.h 2025-08-26T20:45:20.9773381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_transpose_backward_ops.h 2025-08-26T20:45:20.9777354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss.h 2025-08-26T20:45:20.9780859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_backward.h 2025-08-26T20:45:20.9784717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_backward_cpu_dispatch.h 2025-08-26T20:45:20.9788416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_backward_cuda_dispatch.h 2025-08-26T20:45:20.9792087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_backward_native.h 2025-08-26T20:45:20.9795901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_backward_ops.h 2025-08-26T20:45:20.9800405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.9804069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_cpu_dispatch.h 2025-08-26T20:45:20.9807848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_cuda_dispatch.h 2025-08-26T20:45:20.9811569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_meta.h 2025-08-26T20:45:20.9815376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_meta_dispatch.h 2025-08-26T20:45:20.9819147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_native.h 2025-08-26T20:45:20.9823392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_ops.h 2025-08-26T20:45:20.9827479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\msort.h 2025-08-26T20:45:20.9831153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\msort_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.9835093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\msort_native.h 2025-08-26T20:45:20.9838903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\msort_ops.h 2025-08-26T20:45:20.9843038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mT.h 2025-08-26T20:45:20.9847013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mT_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.9850412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mT_native.h 2025-08-26T20:45:20.9853970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mT_ops.h 2025-08-26T20:45:20.9857591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul.h 2025-08-26T20:45:20.9861063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss.h 2025-08-26T20:45:20.9865235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_backward.h 2025-08-26T20:45:20.9869067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_backward_cpu_dispatch.h 2025-08-26T20:45:20.9872992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_backward_cuda_dispatch.h 2025-08-26T20:45:20.9877917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_backward_native.h 2025-08-26T20:45:20.9880855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_backward_ops.h 2025-08-26T20:45:20.9884990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.9888776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_forward.h 2025-08-26T20:45:20.9892705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_forward_cpu_dispatch.h 2025-08-26T20:45:20.9896946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_forward_cuda_dispatch.h 2025-08-26T20:45:20.9900903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_forward_native.h 2025-08-26T20:45:20.9905212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_forward_ops.h 2025-08-26T20:45:20.9909093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_native.h 2025-08-26T20:45:20.9912900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_ops.h 2025-08-26T20:45:20.9916596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multinomial.h 2025-08-26T20:45:20.9920349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multinomial_cpu_dispatch.h 2025-08-26T20:45:20.9924358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multinomial_cuda_dispatch.h 2025-08-26T20:45:20.9928137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multinomial_native.h 2025-08-26T20:45:20.9932102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multinomial_ops.h 2025-08-26T20:45:20.9935902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multiply.h 2025-08-26T20:45:20.9939577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multiply_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:20.9943312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multiply_native.h 2025-08-26T20:45:20.9947894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multiply_ops.h 2025-08-26T20:45:20.9951838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss.h 2025-08-26T20:45:20.9955568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_backward.h 2025-08-26T20:45:20.9959372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_backward_cpu_dispatch.h 2025-08-26T20:45:20.9963338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_backward_cuda_dispatch.h 2025-08-26T20:45:20.9967231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_backward_native.h 2025-08-26T20:45:20.9972062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_backward_ops.h 2025-08-26T20:45:20.9975984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_cpu_dispatch.h 2025-08-26T20:45:20.9980066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_cuda_dispatch.h 2025-08-26T20:45:20.9984429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_native.h 2025-08-26T20:45:20.9988537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_ops.h 2025-08-26T20:45:20.9993109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:20.9997311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.0000986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_cpu_dispatch.h 2025-08-26T20:45:21.0005170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_cuda_dispatch.h 2025-08-26T20:45:21.0008901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_meta.h 2025-08-26T20:45:21.0012407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_meta_dispatch.h 2025-08-26T20:45:21.0016494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_native.h 2025-08-26T20:45:21.0020445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_ops.h 2025-08-26T20:45:21.0023886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mv.h 2025-08-26T20:45:21.0027801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mvlgamma.h 2025-08-26T20:45:21.0031998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mvlgamma_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.0064012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mvlgamma_cpu_dispatch.h 2025-08-26T20:45:21.0068050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mvlgamma_cuda_dispatch.h 2025-08-26T20:45:21.0072386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mvlgamma_native.h 2025-08-26T20:45:21.0077344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mvlgamma_ops.h 2025-08-26T20:45:21.0080316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mv_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.0084011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mv_native.h 2025-08-26T20:45:21.0088621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mv_ops.h 2025-08-26T20:45:21.0091212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmean.h 2025-08-26T20:45:21.0094939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmean_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.0098958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmean_native.h 2025-08-26T20:45:21.0102982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmean_ops.h 2025-08-26T20:45:21.0107712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmedian.h 2025-08-26T20:45:21.0112086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmedian_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.0115539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmedian_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.0119651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmedian_cpu_dispatch.h 2025-08-26T20:45:21.0123894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmedian_cuda_dispatch.h 2025-08-26T20:45:21.0127717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmedian_native.h 2025-08-26T20:45:21.0131597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmedian_ops.h 2025-08-26T20:45:21.0135681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanquantile.h 2025-08-26T20:45:21.0141406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanquantile_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.0143861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanquantile_native.h 2025-08-26T20:45:21.0148337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanquantile_ops.h 2025-08-26T20:45:21.0152253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nansum.h 2025-08-26T20:45:21.0184519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nansum_cpu_dispatch.h 2025-08-26T20:45:21.0188954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nansum_cuda_dispatch.h 2025-08-26T20:45:21.0192929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nansum_native.h 2025-08-26T20:45:21.0198248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nansum_ops.h 2025-08-26T20:45:21.0201919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nan_to_num.h 2025-08-26T20:45:21.0206516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nan_to_num_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.0210684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nan_to_num_cpu_dispatch.h 2025-08-26T20:45:21.0215744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nan_to_num_cuda_dispatch.h 2025-08-26T20:45:21.0218714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nan_to_num_native.h 2025-08-26T20:45:21.0222981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nan_to_num_ops.h 2025-08-26T20:45:21.0229769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow.h 2025-08-26T20:45:21.0234839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.0239747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_copy.h 2025-08-26T20:45:21.0244100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.0249069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_copy_cpu_dispatch.h 2025-08-26T20:45:21.0267325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_copy_native.h 2025-08-26T20:45:21.0272704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_copy_ops.h 2025-08-26T20:45:21.0278418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_native.h 2025-08-26T20:45:21.0283809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_ops.h 2025-08-26T20:45:21.0289280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm.h 2025-08-26T20:45:21.0293256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_backward.h 2025-08-26T20:45:21.0297218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.0303231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_backward_cpu_dispatch.h 2025-08-26T20:45:21.0307174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_backward_cuda_dispatch.h 2025-08-26T20:45:21.0311213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_backward_native.h 2025-08-26T20:45:21.0315265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_backward_ops.h 2025-08-26T20:45:21.0319072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_cpu_dispatch.h 2025-08-26T20:45:21.0323358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_cuda_dispatch.h 2025-08-26T20:45:21.0327649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_native.h 2025-08-26T20:45:21.0331446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_ops.h 2025-08-26T20:45:21.0335547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_channel_shuffle.h 2025-08-26T20:45:21.0339859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_channel_shuffle_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.0343817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_channel_shuffle_cpu_dispatch.h 2025-08-26T20:45:21.0347709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_channel_shuffle_native.h 2025-08-26T20:45:21.0352125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_channel_shuffle_ops.h 2025-08-26T20:45:21.0355873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout.h 2025-08-26T20:45:21.0359918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_backward.h 2025-08-26T20:45:21.0364107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.0367963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_backward_cpu_dispatch.h 2025-08-26T20:45:21.0372178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_backward_cuda_dispatch.h 2025-08-26T20:45:21.0376501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_backward_native.h 2025-08-26T20:45:21.0380437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_backward_ops.h 2025-08-26T20:45:21.0384411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.0388263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_cpu_dispatch.h 2025-08-26T20:45:21.0392060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_cuda_dispatch.h 2025-08-26T20:45:21.0395849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_native.h 2025-08-26T20:45:21.0399643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_ops.h 2025-08-26T20:45:21.0403605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm.h 2025-08-26T20:45:21.0407424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_backward.h 2025-08-26T20:45:21.0411941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.0415667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_backward_cpu_dispatch.h 2025-08-26T20:45:21.0419532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_backward_cuda_dispatch.h 2025-08-26T20:45:21.0423499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_backward_native.h 2025-08-26T20:45:21.0427616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_backward_ops.h 2025-08-26T20:45:21.0431659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.0436720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_cpu_dispatch.h 2025-08-26T20:45:21.0440611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_cuda_dispatch.h 2025-08-26T20:45:21.0444435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_native.h 2025-08-26T20:45:21.0448227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_ops.h 2025-08-26T20:45:21.0452101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm.h 2025-08-26T20:45:21.0457007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_backward.h 2025-08-26T20:45:21.0461192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.0465330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_backward_cpu_dispatch.h 2025-08-26T20:45:21.0469278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_backward_cuda_dispatch.h 2025-08-26T20:45:21.0473175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_backward_native.h 2025-08-26T20:45:21.0477169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_backward_ops.h 2025-08-26T20:45:21.0482071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.0486368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_cpu_dispatch.h 2025-08-26T20:45:21.0490313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_cuda_dispatch.h 2025-08-26T20:45:21.0494169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_native.h 2025-08-26T20:45:21.0498113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_ops.h 2025-08-26T20:45:21.0501979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_norm.h 2025-08-26T20:45:21.0506343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_norm_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.0510354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_norm_native.h 2025-08-26T20:45:21.0514539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_norm_ops.h 2025-08-26T20:45:21.0518300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne.h 2025-08-26T20:45:21.0521778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg.h 2025-08-26T20:45:21.0525232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\negative.h 2025-08-26T20:45:21.0529009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\negative_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.0532652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\negative_native.h 2025-08-26T20:45:21.0536405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\negative_ops.h 2025-08-26T20:45:21.0541121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.0544832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg_cpu_dispatch.h 2025-08-26T20:45:21.0548520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg_cuda_dispatch.h 2025-08-26T20:45:21.0552223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg_meta.h 2025-08-26T20:45:21.0555770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg_meta_dispatch.h 2025-08-26T20:45:21.0559458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg_native.h 2025-08-26T20:45:21.0563111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg_ops.h 2025-08-26T20:45:21.0566647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nested_to_padded_tensor.h 2025-08-26T20:45:21.0570803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nested_to_padded_tensor_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.0574670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nested_to_padded_tensor_native.h 2025-08-26T20:45:21.0578497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nested_to_padded_tensor_ops.h 2025-08-26T20:45:21.0582215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty.h 2025-08-26T20:45:21.0586076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.0589757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_native.h 2025-08-26T20:45:21.0593632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_ops.h 2025-08-26T20:45:21.0597547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_strided.h 2025-08-26T20:45:21.0601477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_strided_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.0606102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_strided_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.0609898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_strided_native.h 2025-08-26T20:45:21.0614287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_strided_ops.h 2025-08-26T20:45:21.0618341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_full.h 2025-08-26T20:45:21.0622533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_full_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.0626455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_full_native.h 2025-08-26T20:45:21.0630332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_full_ops.h 2025-08-26T20:45:21.0634530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_ones.h 2025-08-26T20:45:21.0638727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_ones_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.0642535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_ones_native.h 2025-08-26T20:45:21.0646849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_ones_ops.h 2025-08-26T20:45:21.0650987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_zeros.h 2025-08-26T20:45:21.0654867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_zeros_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.0659261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_zeros_native.h 2025-08-26T20:45:21.0663878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_zeros_ops.h 2025-08-26T20:45:21.0667821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter.h 2025-08-26T20:45:21.0672301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.0676095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter_cpu_dispatch.h 2025-08-26T20:45:21.0680074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter_cuda_dispatch.h 2025-08-26T20:45:21.0684397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter_meta.h 2025-08-26T20:45:21.0688480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter_meta_dispatch.h 2025-08-26T20:45:21.0692440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter_native.h 2025-08-26T20:45:21.0696470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter_ops.h 2025-08-26T20:45:21.0700480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.0704283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne_cpu_dispatch.h 2025-08-26T20:45:21.0707973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne_cuda_dispatch.h 2025-08-26T20:45:21.0712353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne_meta.h 2025-08-26T20:45:21.0715878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne_meta_dispatch.h 2025-08-26T20:45:21.0719562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne_native.h 2025-08-26T20:45:21.0723178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne_ops.h 2025-08-26T20:45:21.0726688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss.h 2025-08-26T20:45:21.0730114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d.h 2025-08-26T20:45:21.0733802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_backward.h 2025-08-26T20:45:21.0738036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_backward_cpu_dispatch.h 2025-08-26T20:45:21.0741959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_backward_cuda_dispatch.h 2025-08-26T20:45:21.0745838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_backward_native.h 2025-08-26T20:45:21.0749902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_backward_ops.h 2025-08-26T20:45:21.0753888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.0758273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_forward.h 2025-08-26T20:45:21.0762216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_forward_cpu_dispatch.h 2025-08-26T20:45:21.0766116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_forward_cuda_dispatch.h 2025-08-26T20:45:21.0770579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_forward_native.h 2025-08-26T20:45:21.0774397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_forward_ops.h 2025-08-26T20:45:21.0778426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_native.h 2025-08-26T20:45:21.0782154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_ops.h 2025-08-26T20:45:21.0786083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward.h 2025-08-26T20:45:21.0790192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.0794158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward_cpu_dispatch.h 2025-08-26T20:45:21.0798582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward_cuda_dispatch.h 2025-08-26T20:45:21.0802319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward_meta.h 2025-08-26T20:45:21.0806193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward_meta_dispatch.h 2025-08-26T20:45:21.0810076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward_native.h 2025-08-26T20:45:21.0814403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward_ops.h 2025-08-26T20:45:21.0818405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.0822572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward.h 2025-08-26T20:45:21.0827009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.0831285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward_cpu_dispatch.h 2025-08-26T20:45:21.0835082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward_cuda_dispatch.h 2025-08-26T20:45:21.0838990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward_meta.h 2025-08-26T20:45:21.0843510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward_meta_dispatch.h 2025-08-26T20:45:21.0847620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward_native.h 2025-08-26T20:45:21.0851592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward_ops.h 2025-08-26T20:45:21.0856698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_native.h 2025-08-26T20:45:21.0860407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_nd.h 2025-08-26T20:45:21.0865100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_nd_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.0868968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_nd_native.h 2025-08-26T20:45:21.0873020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_nd_ops.h 2025-08-26T20:45:21.0877048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_ops.h 2025-08-26T20:45:21.0880984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero.h 2025-08-26T20:45:21.0884573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_cpu_dispatch.h 2025-08-26T20:45:21.0888440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_cuda_dispatch.h 2025-08-26T20:45:21.0892081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_native.h 2025-08-26T20:45:21.0895910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_numpy.h 2025-08-26T20:45:21.0899999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_numpy_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.0903810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_numpy_native.h 2025-08-26T20:45:21.0907757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_numpy_ops.h 2025-08-26T20:45:21.0911971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_ops.h 2025-08-26T20:45:21.0915749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_static.h 2025-08-26T20:45:21.0919679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_static_cpu_dispatch.h 2025-08-26T20:45:21.0924160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_static_cuda_dispatch.h 2025-08-26T20:45:21.0927921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_static_native.h 2025-08-26T20:45:21.0931691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_static_ops.h 2025-08-26T20:45:21.0935760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm.h 2025-08-26T20:45:21.0939801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\normal.h 2025-08-26T20:45:21.0943454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\normal_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.0947235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\normal_cpu_dispatch.h 2025-08-26T20:45:21.0951290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\normal_cuda_dispatch.h 2025-08-26T20:45:21.0955088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\normal_meta_dispatch.h 2025-08-26T20:45:21.0958842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\normal_native.h 2025-08-26T20:45:21.0962665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\normal_ops.h 2025-08-26T20:45:21.0966834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.0971023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.0975178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.0978855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_cpu_dispatch.h 2025-08-26T20:45:21.0982655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_cuda_dispatch.h 2025-08-26T20:45:21.0986578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_except_dim.h 2025-08-26T20:45:21.0990563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_except_dim_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.0994428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_except_dim_native.h 2025-08-26T20:45:21.0998559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_except_dim_ops.h 2025-08-26T20:45:21.1002367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_meta.h 2025-08-26T20:45:21.1006216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_meta_dispatch.h 2025-08-26T20:45:21.1010033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_native.h 2025-08-26T20:45:21.1013647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_ops.h 2025-08-26T20:45:21.1017021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\not_equal.h 2025-08-26T20:45:21.1020852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\not_equal_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.1024929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\not_equal_native.h 2025-08-26T20:45:21.1028630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\not_equal_ops.h 2025-08-26T20:45:21.1032361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nuclear_norm.h 2025-08-26T20:45:21.1036190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nuclear_norm_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.1039953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nuclear_norm_native.h 2025-08-26T20:45:21.1043730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nuclear_norm_ops.h 2025-08-26T20:45:21.1047661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\numpy_T.h 2025-08-26T20:45:21.1051480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\numpy_T_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.1055131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\numpy_T_native.h 2025-08-26T20:45:21.1058841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\numpy_T_ops.h 2025-08-26T20:45:21.1062738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones.h 2025-08-26T20:45:21.1066416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.1070038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones_like.h 2025-08-26T20:45:21.1074065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones_like_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.1078002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones_like_native.h 2025-08-26T20:45:21.1082276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones_like_ops.h 2025-08-26T20:45:21.1085991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones_native.h 2025-08-26T20:45:21.1089642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones_ops.h 2025-08-26T20:45:21.1093040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\one_hot.h 2025-08-26T20:45:21.1096747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\one_hot_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.1100811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\one_hot_native.h 2025-08-26T20:45:21.1105105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\one_hot_ops.h 2025-08-26T20:45:21.1109349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\or.h 2025-08-26T20:45:21.1112837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\orgqr.h 2025-08-26T20:45:21.1116605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\orgqr_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.1120754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\orgqr_native.h 2025-08-26T20:45:21.1124506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\orgqr_ops.h 2025-08-26T20:45:21.1128467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ormqr.h 2025-08-26T20:45:21.1132063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ormqr_cpu_dispatch.h 2025-08-26T20:45:21.1135843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ormqr_cuda_dispatch.h 2025-08-26T20:45:21.1139683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ormqr_native.h 2025-08-26T20:45:21.1143700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ormqr_ops.h 2025-08-26T20:45:21.1147774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\or_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.1151361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\or_native.h 2025-08-26T20:45:21.1155981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\or_ops.h 2025-08-26T20:45:21.1159433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\outer.h 2025-08-26T20:45:21.1163140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\outer_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.1166811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\outer_native.h 2025-08-26T20:45:21.1170479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\outer_ops.h 2025-08-26T20:45:21.1174853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\output_nr.h 2025-08-26T20:45:21.1179336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\output_nr_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.1183557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\output_nr_native.h 2025-08-26T20:45:21.1187380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\output_nr_ops.h 2025-08-26T20:45:21.1191224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad.h 2025-08-26T20:45:21.1195026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.1199179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad_native.h 2025-08-26T20:45:21.1202903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad_ops.h 2025-08-26T20:45:21.1206722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad_sequence.h 2025-08-26T20:45:21.1210741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad_sequence_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.1214466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad_sequence_native.h 2025-08-26T20:45:21.1218284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad_sequence_ops.h 2025-08-26T20:45:21.1222111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pairwise_distance.h 2025-08-26T20:45:21.1226412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pairwise_distance_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.1260266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pairwise_distance_native.h 2025-08-26T20:45:21.1264376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pairwise_distance_ops.h 2025-08-26T20:45:21.1268394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pdist.h 2025-08-26T20:45:21.1272374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pdist_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.1276216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pdist_native.h 2025-08-26T20:45:21.1280092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pdist_ops.h 2025-08-26T20:45:21.1284168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute.h 2025-08-26T20:45:21.1287574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.1291335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_copy.h 2025-08-26T20:45:21.1295927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.1299778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.1303831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_copy_native.h 2025-08-26T20:45:21.1307793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_copy_ops.h 2025-08-26T20:45:21.1311599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_native.h 2025-08-26T20:45:21.1315495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_ops.h 2025-08-26T20:45:21.1319315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pinverse.h 2025-08-26T20:45:21.1323166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pinverse_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.1326802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pinverse_native.h 2025-08-26T20:45:21.1330739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pinverse_ops.h 2025-08-26T20:45:21.1334595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pin_memory.h 2025-08-26T20:45:21.1339021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pin_memory_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.1342796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pin_memory_native.h 2025-08-26T20:45:21.1346819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pin_memory_ops.h 2025-08-26T20:45:21.1350735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_shuffle.h 2025-08-26T20:45:21.1354745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_shuffle_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.3727370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_shuffle_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.3731663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_shuffle_cpu_dispatch.h 2025-08-26T20:45:21.3735588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_shuffle_native.h 2025-08-26T20:45:21.3739960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_shuffle_ops.h 2025-08-26T20:45:21.3744930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_unshuffle.h 2025-08-26T20:45:21.3749950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_unshuffle_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.3754869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_unshuffle_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.3759971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_unshuffle_cpu_dispatch.h 2025-08-26T20:45:21.3763014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_unshuffle_native.h 2025-08-26T20:45:21.3767728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_unshuffle_ops.h 2025-08-26T20:45:21.3771757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson.h 2025-08-26T20:45:21.3775731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.3807204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_cpu_dispatch.h 2025-08-26T20:45:21.3807839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_cuda_dispatch.h 2025-08-26T20:45:21.3808431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_native.h 2025-08-26T20:45:21.3809001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_nll_loss.h 2025-08-26T20:45:21.3809699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_nll_loss_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.3810428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_nll_loss_native.h 2025-08-26T20:45:21.3811036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_nll_loss_ops.h 2025-08-26T20:45:21.3813101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_ops.h 2025-08-26T20:45:21.3815872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polar.h 2025-08-26T20:45:21.3820087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polar_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.3825280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polar_cpu_dispatch.h 2025-08-26T20:45:21.3828157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polar_cuda_dispatch.h 2025-08-26T20:45:21.3832157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polar_native.h 2025-08-26T20:45:21.3835880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polar_ops.h 2025-08-26T20:45:21.3839879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma.h 2025-08-26T20:45:21.3843920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.3847689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.3851494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_cpu_dispatch.h 2025-08-26T20:45:21.3855340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_cuda_dispatch.h 2025-08-26T20:45:21.3859346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_meta.h 2025-08-26T20:45:21.3863257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_meta_dispatch.h 2025-08-26T20:45:21.3867441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_native.h 2025-08-26T20:45:21.3871275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_ops.h 2025-08-26T20:45:21.3875419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\positive.h 2025-08-26T20:45:21.3879090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\positive_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.3882733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\positive_native.h 2025-08-26T20:45:21.3886469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\positive_ops.h 2025-08-26T20:45:21.3891317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow.h 2025-08-26T20:45:21.3895115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.3900037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow_cpu_dispatch.h 2025-08-26T20:45:21.3903958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow_cuda_dispatch.h 2025-08-26T20:45:21.3907695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow_meta.h 2025-08-26T20:45:21.3911407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow_meta_dispatch.h 2025-08-26T20:45:21.3915520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow_native.h 2025-08-26T20:45:21.3919353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow_ops.h 2025-08-26T20:45:21.3922831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prelu.h 2025-08-26T20:45:21.3926478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prelu_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.3931673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prelu_native.h 2025-08-26T20:45:21.3935441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prelu_ops.h 2025-08-26T20:45:21.3939183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod.h 2025-08-26T20:45:21.3942925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.3946987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.3950771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.3954697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_cpu_dispatch.h 2025-08-26T20:45:21.3958539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_cuda_dispatch.h 2025-08-26T20:45:21.3963237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_meta.h 2025-08-26T20:45:21.3966973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_meta_dispatch.h 2025-08-26T20:45:21.3970617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_native.h 2025-08-26T20:45:21.3974395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_ops.h 2025-08-26T20:45:21.3978205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\promote_types.h 2025-08-26T20:45:21.3982129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\promote_types_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.3986167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\promote_types_native.h 2025-08-26T20:45:21.3989959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\promote_types_ops.h 2025-08-26T20:45:21.3993886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\put.h 2025-08-26T20:45:21.3997660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\put_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.4001344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\put_cpu_dispatch.h 2025-08-26T20:45:21.4005074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\put_cuda_dispatch.h 2025-08-26T20:45:21.4008737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\put_meta_dispatch.h 2025-08-26T20:45:21.4012355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\put_native.h 2025-08-26T20:45:21.4016219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\put_ops.h 2025-08-26T20:45:21.4019817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\qr.h 2025-08-26T20:45:21.4023974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\qr_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.4027326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\qr_native.h 2025-08-26T20:45:21.4031005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\qr_ops.h 2025-08-26T20:45:21.4035133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\qscheme.h 2025-08-26T20:45:21.4038682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\qscheme_native.h 2025-08-26T20:45:21.4042279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\qscheme_ops.h 2025-08-26T20:45:21.4046434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantile.h 2025-08-26T20:45:21.4051409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantile_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.4054980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantile_native.h 2025-08-26T20:45:21.4058675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantile_ops.h 2025-08-26T20:45:21.4065905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_batch_norm.h 2025-08-26T20:45:21.4069941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_batch_norm_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.4073771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_batch_norm_native.h 2025-08-26T20:45:21.4077835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_batch_norm_ops.h 2025-08-26T20:45:21.4082241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_gru_cell.h 2025-08-26T20:45:21.4086364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_gru_cell_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.4090241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_gru_cell_native.h 2025-08-26T20:45:21.4094555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_gru_cell_ops.h 2025-08-26T20:45:21.4098615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_lstm_cell.h 2025-08-26T20:45:21.4102757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_lstm_cell_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.4107270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_lstm_cell_native.h 2025-08-26T20:45:21.4111114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_lstm_cell_ops.h 2025-08-26T20:45:21.4115007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool1d.h 2025-08-26T20:45:21.4119078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool1d_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.4123175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool1d_native.h 2025-08-26T20:45:21.4127780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool1d_ops.h 2025-08-26T20:45:21.4131361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool2d.h 2025-08-26T20:45:21.4135807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool2d_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.4139817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool2d_native.h 2025-08-26T20:45:21.4144776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool2d_ops.h 2025-08-26T20:45:21.4147857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool3d.h 2025-08-26T20:45:21.4152513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool3d_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.4157091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool3d_native.h 2025-08-26T20:45:21.4162116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool3d_ops.h 2025-08-26T20:45:21.4165060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_relu_cell.h 2025-08-26T20:45:21.4169242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_relu_cell_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.4173885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_relu_cell_native.h 2025-08-26T20:45:21.4177088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_relu_cell_ops.h 2025-08-26T20:45:21.4181263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_tanh_cell.h 2025-08-26T20:45:21.4186354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_tanh_cell_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.4191117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_tanh_cell_native.h 2025-08-26T20:45:21.4194152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_tanh_cell_ops.h 2025-08-26T20:45:21.4198571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_channel.h 2025-08-26T20:45:21.4202794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_channel_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.4208399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_channel_cpu_dispatch.h 2025-08-26T20:45:21.4212144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_channel_cuda_dispatch.h 2025-08-26T20:45:21.4216573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_channel_native.h 2025-08-26T20:45:21.4220570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_channel_ops.h 2025-08-26T20:45:21.4225500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor.h 2025-08-26T20:45:21.4228711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.4233147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_cpu_dispatch.h 2025-08-26T20:45:21.4237702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_cuda_dispatch.h 2025-08-26T20:45:21.4242863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_dynamic.h 2025-08-26T20:45:21.4245964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_dynamic_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.4250376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_dynamic_cpu_dispatch.h 2025-08-26T20:45:21.4254917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_dynamic_cuda_dispatch.h 2025-08-26T20:45:21.4259984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_dynamic_native.h 2025-08-26T20:45:21.4263021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_dynamic_ops.h 2025-08-26T20:45:21.4267644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_native.h 2025-08-26T20:45:21.4271774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_ops.h 2025-08-26T20:45:21.4275548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_axis.h 2025-08-26T20:45:21.4279565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_axis_native.h 2025-08-26T20:45:21.4300700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_axis_ops.h 2025-08-26T20:45:21.4301328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_scales.h 2025-08-26T20:45:21.4302056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_scales_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.4302814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_scales_native.h 2025-08-26T20:45:21.4303516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_scales_ops.h 2025-08-26T20:45:21.4306785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_zero_points.h 2025-08-26T20:45:21.4310367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_zero_points_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.4314415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_zero_points_native.h 2025-08-26T20:45:21.4318936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_zero_points_ops.h 2025-08-26T20:45:21.4322242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_scale.h 2025-08-26T20:45:21.4325921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_scale_native.h 2025-08-26T20:45:21.4329673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_scale_ops.h 2025-08-26T20:45:21.4333459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_zero_point.h 2025-08-26T20:45:21.4337231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_zero_point_native.h 2025-08-26T20:45:21.4341118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_zero_point_ops.h 2025-08-26T20:45:21.4345000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rad2deg.h 2025-08-26T20:45:21.4349332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rad2deg_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.4353195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rad2deg_native.h 2025-08-26T20:45:21.4356917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rad2deg_ops.h 2025-08-26T20:45:21.4360659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand.h 2025-08-26T20:45:21.4364703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint.h 2025-08-26T20:45:21.4368412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.4372255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint_like.h 2025-08-26T20:45:21.4376611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint_like_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.4380448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint_like_native.h 2025-08-26T20:45:21.4392669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint_like_ops.h 2025-08-26T20:45:21.4393255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint_native.h 2025-08-26T20:45:21.4393812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint_ops.h 2025-08-26T20:45:21.4395728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn.h 2025-08-26T20:45:21.4399341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.4403293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.4407204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_like.h 2025-08-26T20:45:21.4411118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_like_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.4414986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_like_compositeimplicitautogradnestedtensor_dispatch.h 2025-08-26T20:45:21.4418675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_like_native.h 2025-08-26T20:45:21.4422461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_like_ops.h 2025-08-26T20:45:21.4426620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_native.h 2025-08-26T20:45:21.4430675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_ops.h 2025-08-26T20:45:21.4434474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\random.h 2025-08-26T20:45:21.4438055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\random_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.4441721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\random_cpu_dispatch.h 2025-08-26T20:45:21.4445414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\random_cuda_dispatch.h 2025-08-26T20:45:21.4449109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\random_meta_dispatch.h 2025-08-26T20:45:21.4452954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\random_native.h 2025-08-26T20:45:21.4456961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\random_ops.h 2025-08-26T20:45:21.4460947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randperm.h 2025-08-26T20:45:21.4464675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randperm_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.4468384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randperm_cpu_dispatch.h 2025-08-26T20:45:21.4472602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randperm_cuda_dispatch.h 2025-08-26T20:45:21.4476471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randperm_native.h 2025-08-26T20:45:21.4480501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randperm_ops.h 2025-08-26T20:45:21.4484470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.4488352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.4491988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_like.h 2025-08-26T20:45:21.4496299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_like_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.4499894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_like_native.h 2025-08-26T20:45:21.4503725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_like_ops.h 2025-08-26T20:45:21.4507593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_native.h 2025-08-26T20:45:21.4511367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_ops.h 2025-08-26T20:45:21.4514870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\range.h 2025-08-26T20:45:21.4518495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\range_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.4522160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\range_cpu_dispatch.h 2025-08-26T20:45:21.4526116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\range_cuda_dispatch.h 2025-08-26T20:45:21.4529887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\range_meta_dispatch.h 2025-08-26T20:45:21.4533637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\range_native.h 2025-08-26T20:45:21.4537478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\range_ops.h 2025-08-26T20:45:21.4541267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ravel.h 2025-08-26T20:45:21.4545161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ravel_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.4548861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ravel_native.h 2025-08-26T20:45:21.4552790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ravel_ops.h 2025-08-26T20:45:21.4556495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\real.h 2025-08-26T20:45:21.4560086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\real_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.4563740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\real_native.h 2025-08-26T20:45:21.4567341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\real_ops.h 2025-08-26T20:45:21.4570824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal.h 2025-08-26T20:45:21.4574914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.4578675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal_cpu_dispatch.h 2025-08-26T20:45:21.4583457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal_cuda_dispatch.h 2025-08-26T20:45:21.4587478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal_meta.h 2025-08-26T20:45:21.4591446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal_meta_dispatch.h 2025-08-26T20:45:21.4595189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal_native.h 2025-08-26T20:45:21.4598982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal_ops.h 2025-08-26T20:45:21.4602941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\record_stream.h 2025-08-26T20:45:21.4606934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\record_stream_cuda_dispatch.h 2025-08-26T20:45:21.4610641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\record_stream_native.h 2025-08-26T20:45:21.4614463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\record_stream_ops.h 2025-08-26T20:45:21.4618204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\refine_names.h 2025-08-26T20:45:21.4622095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\refine_names_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.4625899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\refine_names_native.h 2025-08-26T20:45:21.4629641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\refine_names_ops.h 2025-08-26T20:45:21.4633594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d.h 2025-08-26T20:45:21.4637685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward.h 2025-08-26T20:45:21.4641636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.4645616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward_cpu_dispatch.h 2025-08-26T20:45:21.4649278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward_cuda_dispatch.h 2025-08-26T20:45:21.4653219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward_meta.h 2025-08-26T20:45:21.4693085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward_meta_dispatch.h 2025-08-26T20:45:21.4696774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward_native.h 2025-08-26T20:45:21.4700625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward_ops.h 2025-08-26T20:45:21.4704790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.4708753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_cpu_dispatch.h 2025-08-26T20:45:21.4712997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_cuda_dispatch.h 2025-08-26T20:45:21.4716802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_meta.h 2025-08-26T20:45:21.4721169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_meta_dispatch.h 2025-08-26T20:45:21.4725050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_native.h 2025-08-26T20:45:21.4728871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_ops.h 2025-08-26T20:45:21.4732696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d.h 2025-08-26T20:45:21.4736591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_backward.h 2025-08-26T20:45:21.4740803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_backward_cpu_dispatch.h 2025-08-26T20:45:21.4744925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_backward_cuda_dispatch.h 2025-08-26T20:45:21.4748897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_backward_native.h 2025-08-26T20:45:21.4752735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_backward_ops.h 2025-08-26T20:45:21.4756815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_cpu_dispatch.h 2025-08-26T20:45:21.4760657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_cuda_dispatch.h 2025-08-26T20:45:21.4765564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_native.h 2025-08-26T20:45:21.4769518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_ops.h 2025-08-26T20:45:21.4773326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d.h 2025-08-26T20:45:21.4777227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward.h 2025-08-26T20:45:21.4781662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.4785705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward_cpu_dispatch.h 2025-08-26T20:45:21.4789894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward_cuda_dispatch.h 2025-08-26T20:45:21.4794290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward_meta.h 2025-08-26T20:45:21.4838788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward_meta_dispatch.h 2025-08-26T20:45:21.4839532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward_native.h 2025-08-26T20:45:21.4840206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward_ops.h 2025-08-26T20:45:21.4841774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.4842629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_cpu_dispatch.h 2025-08-26T20:45:21.4843364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_cuda_dispatch.h 2025-08-26T20:45:21.4844091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_meta.h 2025-08-26T20:45:21.4844738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_meta_dispatch.h 2025-08-26T20:45:21.4845452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_native.h 2025-08-26T20:45:21.4846063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_ops.h 2025-08-26T20:45:21.4847441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu.h 2025-08-26T20:45:21.4851321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu6.h 2025-08-26T20:45:21.4855025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu6_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.4858880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu6_native.h 2025-08-26T20:45:21.4862870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu6_ops.h 2025-08-26T20:45:21.4867738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.4871622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu_cpu_dispatch.h 2025-08-26T20:45:21.4876030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu_cuda_dispatch.h 2025-08-26T20:45:21.4879820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu_meta_dispatch.h 2025-08-26T20:45:21.4884107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu_native.h 2025-08-26T20:45:21.4887854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu_ops.h 2025-08-26T20:45:21.4892028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder.h 2025-08-26T20:45:21.4896306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.4900177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.4931912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_cpu_dispatch.h 2025-08-26T20:45:21.4936011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_cuda_dispatch.h 2025-08-26T20:45:21.4940052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_meta.h 2025-08-26T20:45:21.4944070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_meta_dispatch.h 2025-08-26T20:45:21.4948101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_native.h 2025-08-26T20:45:21.4951950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_ops.h 2025-08-26T20:45:21.4955656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rename.h 2025-08-26T20:45:21.4959293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rename_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.4962931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rename_native.h 2025-08-26T20:45:21.4967164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rename_ops.h 2025-08-26T20:45:21.4971887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm.h 2025-08-26T20:45:21.4975698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.4979888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm_cpu_dispatch.h 2025-08-26T20:45:21.4983711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm_cuda_dispatch.h 2025-08-26T20:45:21.4987564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm_meta.h 2025-08-26T20:45:21.4991725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm_meta_dispatch.h 2025-08-26T20:45:21.4995648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm_native.h 2025-08-26T20:45:21.4999789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm_ops.h 2025-08-26T20:45:21.5003543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat.h 2025-08-26T20:45:21.5007264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.5010880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_interleave.h 2025-08-26T20:45:21.5014793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_interleave_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.5018837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_interleave_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.5022543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_interleave_cpu_dispatch.h 2025-08-26T20:45:21.5026914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_interleave_cuda_dispatch.h 2025-08-26T20:45:21.5030746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_interleave_native.h 2025-08-26T20:45:21.5034612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_interleave_ops.h 2025-08-26T20:45:21.5038347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_native.h 2025-08-26T20:45:21.5042514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_ops.h 2025-08-26T20:45:21.5046449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d.h 2025-08-26T20:45:21.5050212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward.h 2025-08-26T20:45:21.5054437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.5058211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward_cpu_dispatch.h 2025-08-26T20:45:21.5062542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward_cuda_dispatch.h 2025-08-26T20:45:21.5066863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward_meta.h 2025-08-26T20:45:21.5071443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward_meta_dispatch.h 2025-08-26T20:45:21.5075734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward_native.h 2025-08-26T20:45:21.5079723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward_ops.h 2025-08-26T20:45:21.5083917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.5088604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_cpu_dispatch.h 2025-08-26T20:45:21.5093182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_cuda_dispatch.h 2025-08-26T20:45:21.5097866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_meta.h 2025-08-26T20:45:21.5102196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_meta_dispatch.h 2025-08-26T20:45:21.5106323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_native.h 2025-08-26T20:45:21.5110332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_ops.h 2025-08-26T20:45:21.5114737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d.h 2025-08-26T20:45:21.5119158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_backward.h 2025-08-26T20:45:21.5123145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_backward_cpu_dispatch.h 2025-08-26T20:45:21.5127148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_backward_cuda_dispatch.h 2025-08-26T20:45:21.5131818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_backward_native.h 2025-08-26T20:45:21.5136038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_backward_ops.h 2025-08-26T20:45:21.5140281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.5144502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_cpu_dispatch.h 2025-08-26T20:45:21.5149019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_cuda_dispatch.h 2025-08-26T20:45:21.5153308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_meta.h 2025-08-26T20:45:21.5157592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_meta_dispatch.h 2025-08-26T20:45:21.5161689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_native.h 2025-08-26T20:45:21.5166171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_ops.h 2025-08-26T20:45:21.5170565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d.h 2025-08-26T20:45:21.5174564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_backward.h 2025-08-26T20:45:21.5179166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_backward_cpu_dispatch.h 2025-08-26T20:45:21.5183460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_backward_cuda_dispatch.h 2025-08-26T20:45:21.5187445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_backward_native.h 2025-08-26T20:45:21.5191459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_backward_ops.h 2025-08-26T20:45:21.5195744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.5199993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_cpu_dispatch.h 2025-08-26T20:45:21.5204450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_cuda_dispatch.h 2025-08-26T20:45:21.5208395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_meta.h 2025-08-26T20:45:21.5212576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_meta_dispatch.h 2025-08-26T20:45:21.5216577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_native.h 2025-08-26T20:45:21.5220794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_ops.h 2025-08-26T20:45:21.5225198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\requires_grad.h 2025-08-26T20:45:21.5229468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\requires_grad_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.5233898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\requires_grad_native.h 2025-08-26T20:45:21.5237661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\requires_grad_ops.h 2025-08-26T20:45:21.5241830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape.h 2025-08-26T20:45:21.5245533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_as.h 2025-08-26T20:45:21.5249717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_as_compositeimplicitautogradnestedtensor_dispatch.h 2025-08-26T20:45:21.5253806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_as_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.5258131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_as_native.h 2025-08-26T20:45:21.5262402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_as_ops.h 2025-08-26T20:45:21.5266847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_compositeimplicitautogradnestedtensor_dispatch.h 2025-08-26T20:45:21.5271138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.5275806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_native.h 2025-08-26T20:45:21.5279895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_ops.h 2025-08-26T20:45:21.5285139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize.h 2025-08-26T20:45:21.5288478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as.h 2025-08-26T20:45:21.5292845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.5297146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_native.h 2025-08-26T20:45:21.5301257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_ops.h 2025-08-26T20:45:21.5305241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_sparse.h 2025-08-26T20:45:21.5309841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_sparse_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.5314203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_sparse_meta_dispatch.h 2025-08-26T20:45:21.5318782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_sparse_native.h 2025-08-26T20:45:21.5323107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_sparse_ops.h 2025-08-26T20:45:21.5327463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.5331429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_cpu_dispatch.h 2025-08-26T20:45:21.5335570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_cuda_dispatch.h 2025-08-26T20:45:21.5339691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_meta_dispatch.h 2025-08-26T20:45:21.5343802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_native.h 2025-08-26T20:45:21.5347917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_ops.h 2025-08-26T20:45:21.5351877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_conj.h 2025-08-26T20:45:21.5356327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_conj_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.5360190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_conj_native.h 2025-08-26T20:45:21.5364114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_conj_ops.h 2025-08-26T20:45:21.5367991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_neg.h 2025-08-26T20:45:21.5372292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_neg_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.5376181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_neg_native.h 2025-08-26T20:45:21.5380386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_neg_ops.h 2025-08-26T20:45:21.5384734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\result_type.h 2025-08-26T20:45:21.5388788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\result_type_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.5392523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\result_type_native.h 2025-08-26T20:45:21.5396454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\result_type_ops.h 2025-08-26T20:45:21.5400738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retains_grad.h 2025-08-26T20:45:21.5404727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retains_grad_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.5408701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retains_grad_native.h 2025-08-26T20:45:21.5412816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retains_grad_ops.h 2025-08-26T20:45:21.5416669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retain_grad.h 2025-08-26T20:45:21.5420794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retain_grad_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.5424874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retain_grad_native.h 2025-08-26T20:45:21.5428835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retain_grad_ops.h 2025-08-26T20:45:21.5432839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rms_norm.h 2025-08-26T20:45:21.5436859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rms_norm_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.5440735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rms_norm_native.h 2025-08-26T20:45:21.5444530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rms_norm_ops.h 2025-08-26T20:45:21.5448750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu.h 2025-08-26T20:45:21.5452607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu_cell.h 2025-08-26T20:45:21.5456531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu_cell_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.5460787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu_cell_native.h 2025-08-26T20:45:21.5464808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu_cell_ops.h 2025-08-26T20:45:21.5469004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.5473252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu_native.h 2025-08-26T20:45:21.5477489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu_ops.h 2025-08-26T20:45:21.5481554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh.h 2025-08-26T20:45:21.5485082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh_cell.h 2025-08-26T20:45:21.5489649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh_cell_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.5493639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh_cell_native.h 2025-08-26T20:45:21.5497538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh_cell_ops.h 2025-08-26T20:45:21.5501585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.5505628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh_native.h 2025-08-26T20:45:21.5509542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh_ops.h 2025-08-26T20:45:21.5514514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\roll.h 2025-08-26T20:45:21.5518563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\roll_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.5522445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\roll_cpu_dispatch.h 2025-08-26T20:45:21.5526405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\roll_cuda_dispatch.h 2025-08-26T20:45:21.5530283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\roll_native.h 2025-08-26T20:45:21.5534257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\roll_ops.h 2025-08-26T20:45:21.5538439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rot90.h 2025-08-26T20:45:21.5542299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rot90_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.5546736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rot90_native.h 2025-08-26T20:45:21.5550561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rot90_ops.h 2025-08-26T20:45:21.5554190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round.h 2025-08-26T20:45:21.5558267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.5562084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round_cpu_dispatch.h 2025-08-26T20:45:21.5566138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round_cuda_dispatch.h 2025-08-26T20:45:21.5570143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round_meta.h 2025-08-26T20:45:21.5574120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round_meta_dispatch.h 2025-08-26T20:45:21.5577956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round_native.h 2025-08-26T20:45:21.5582216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round_ops.h 2025-08-26T20:45:21.5586518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices.h 2025-08-26T20:45:21.5591285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.5594835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_copy.h 2025-08-26T20:45:21.5599609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.5603941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.5607977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_copy_native.h 2025-08-26T20:45:21.5612000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_copy_ops.h 2025-08-26T20:45:21.5616518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_native.h 2025-08-26T20:45:21.5620325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_ops.h 2025-08-26T20:45:21.5624469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_stack.h 2025-08-26T20:45:21.5629037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_stack_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.5632973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_stack_native.h 2025-08-26T20:45:21.5637044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_stack_ops.h 2025-08-26T20:45:21.5640846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu.h 2025-08-26T20:45:21.5644963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.5649021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_native.h 2025-08-26T20:45:21.5653154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_ops.h 2025-08-26T20:45:21.5657224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise.h 2025-08-26T20:45:21.5662050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_backward.h 2025-08-26T20:45:21.5666582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.5670513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_backward_native.h 2025-08-26T20:45:21.5674406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_backward_ops.h 2025-08-26T20:45:21.5678844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.5683047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_cpu_dispatch.h 2025-08-26T20:45:21.5688255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_cuda_dispatch.h 2025-08-26T20:45:21.5691086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_meta_dispatch.h 2025-08-26T20:45:21.5694986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_native.h 2025-08-26T20:45:21.5699223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_ops.h 2025-08-26T20:45:21.5703251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rshift.h 2025-08-26T20:45:21.5707505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rshift_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.5711551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rshift_cpu_dispatch.h 2025-08-26T20:45:21.5715530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rshift_cuda_dispatch.h 2025-08-26T20:45:21.5719654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rshift_meta_dispatch.h 2025-08-26T20:45:21.5723475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rshift_native.h 2025-08-26T20:45:21.5727401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rshift_ops.h 2025-08-26T20:45:21.5731310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt.h 2025-08-26T20:45:21.5735176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.5740499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt_cpu_dispatch.h 2025-08-26T20:45:21.5743667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt_cuda_dispatch.h 2025-08-26T20:45:21.5747821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt_meta.h 2025-08-26T20:45:21.5752125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt_meta_dispatch.h 2025-08-26T20:45:21.5755721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt_native.h 2025-08-26T20:45:21.5760140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt_ops.h 2025-08-26T20:45:21.5763997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsub.h 2025-08-26T20:45:21.5767832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsub_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.5772099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsub_cpu_dispatch.h 2025-08-26T20:45:21.5775892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsub_cuda_dispatch.h 2025-08-26T20:45:21.5809723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsub_native.h 2025-08-26T20:45:21.5813488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsub_ops.h 2025-08-26T20:45:21.5817238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scalar_tensor.h 2025-08-26T20:45:21.5821313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scalar_tensor_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.5825320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scalar_tensor_native.h 2025-08-26T20:45:21.5829247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scalar_tensor_ops.h 2025-08-26T20:45:21.5835050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scaled_dot_product_attention.h 2025-08-26T20:45:21.5838975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scaled_dot_product_attention_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.5843110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scaled_dot_product_attention_native.h 2025-08-26T20:45:21.5847321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scaled_dot_product_attention_ops.h 2025-08-26T20:45:21.5851189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter.h 2025-08-26T20:45:21.5855041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add.h 2025-08-26T20:45:21.5858881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.5862930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.5866773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_cpu_dispatch.h 2025-08-26T20:45:21.5870966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_cuda_dispatch.h 2025-08-26T20:45:21.5875212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_meta.h 2025-08-26T20:45:21.5879828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_meta_dispatch.h 2025-08-26T20:45:21.5884050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_native.h 2025-08-26T20:45:21.5888886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_ops.h 2025-08-26T20:45:21.5892904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.5897101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.5901016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_cpu_dispatch.h 2025-08-26T20:45:21.5904916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_cuda_dispatch.h 2025-08-26T20:45:21.5908919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_meta.h 2025-08-26T20:45:21.5912749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_meta_dispatch.h 2025-08-26T20:45:21.5916775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_native.h 2025-08-26T20:45:21.5920599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_ops.h 2025-08-26T20:45:21.5924652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce.h 2025-08-26T20:45:21.5928922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.5932811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce_cpu_dispatch.h 2025-08-26T20:45:21.5936644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce_cuda_dispatch.h 2025-08-26T20:45:21.5940651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce_meta.h 2025-08-26T20:45:21.5945001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce_meta_dispatch.h 2025-08-26T20:45:21.5948703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce_native.h 2025-08-26T20:45:21.5952696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce_ops.h 2025-08-26T20:45:21.5956688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\searchsorted.h 2025-08-26T20:45:21.5960587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\searchsorted_cpu_dispatch.h 2025-08-26T20:45:21.5964362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\searchsorted_cuda_dispatch.h 2025-08-26T20:45:21.5968366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\searchsorted_native.h 2025-08-26T20:45:21.5972543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\searchsorted_ops.h 2025-08-26T20:45:21.5976252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\segment_reduce.h 2025-08-26T20:45:21.5980102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\segment_reduce_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.5984236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\segment_reduce_cpu_dispatch.h 2025-08-26T20:45:21.5989626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\segment_reduce_cuda_dispatch.h 2025-08-26T20:45:21.5993885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\segment_reduce_native.h 2025-08-26T20:45:21.5998163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\segment_reduce_ops.h 2025-08-26T20:45:21.6002678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select.h 2025-08-26T20:45:21.6006254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_backward.h 2025-08-26T20:45:21.6010357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.6014389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.6018299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_backward_native.h 2025-08-26T20:45:21.6022375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_backward_ops.h 2025-08-26T20:45:21.6027189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.6031321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.6035224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_copy.h 2025-08-26T20:45:21.6039479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.6044456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.6048604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_copy_native.h 2025-08-26T20:45:21.6052837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_copy_ops.h 2025-08-26T20:45:21.6056727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_native.h 2025-08-26T20:45:21.6060568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_ops.h 2025-08-26T20:45:21.6064592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_scatter.h 2025-08-26T20:45:21.6068799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_scatter_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.6073566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_scatter_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.6077394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_scatter_native.h 2025-08-26T20:45:21.6081358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_scatter_ops.h 2025-08-26T20:45:21.6085329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\selu.h 2025-08-26T20:45:21.6089070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\selu_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.6092851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\selu_native.h 2025-08-26T20:45:21.6097512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\selu_ops.h 2025-08-26T20:45:21.6101301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set.h 2025-08-26T20:45:21.6105203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.6109013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.6113382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_cpu_dispatch.h 2025-08-26T20:45:21.6117250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_cuda_dispatch.h 2025-08-26T20:45:21.6121128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_data.h 2025-08-26T20:45:21.6125361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_data_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.6129126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_data_native.h 2025-08-26T20:45:21.6133152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_data_ops.h 2025-08-26T20:45:21.6137061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_meta_dispatch.h 2025-08-26T20:45:21.6141789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_native.h 2025-08-26T20:45:21.6145974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_ops.h 2025-08-26T20:45:21.6149379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn.h 2025-08-26T20:45:21.6154024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.6157789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn_cpu_dispatch.h 2025-08-26T20:45:21.6161783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn_cuda_dispatch.h 2025-08-26T20:45:21.6166348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn_meta.h 2025-08-26T20:45:21.6169982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn_meta_dispatch.h 2025-08-26T20:45:21.6173927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn_native.h 2025-08-26T20:45:21.6178210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn_ops.h 2025-08-26T20:45:21.6182324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid.h 2025-08-26T20:45:21.6186544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward.h 2025-08-26T20:45:21.6190483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.6194221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward_cpu_dispatch.h 2025-08-26T20:45:21.6198108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward_cuda_dispatch.h 2025-08-26T20:45:21.6203440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward_meta.h 2025-08-26T20:45:21.6206398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward_meta_dispatch.h 2025-08-26T20:45:21.6210483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward_native.h 2025-08-26T20:45:21.6215299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward_ops.h 2025-08-26T20:45:21.6219211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.6223557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_cpu_dispatch.h 2025-08-26T20:45:21.6227742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_cuda_dispatch.h 2025-08-26T20:45:21.6232536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_meta.h 2025-08-26T20:45:21.6235906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_meta_dispatch.h 2025-08-26T20:45:21.6240332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_native.h 2025-08-26T20:45:21.6244351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_ops.h 2025-08-26T20:45:21.6248119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign.h 2025-08-26T20:45:21.6252076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit.h 2025-08-26T20:45:21.6256052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.6259626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit_cpu_dispatch.h 2025-08-26T20:45:21.6264148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit_cuda_dispatch.h 2025-08-26T20:45:21.6267973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit_meta.h 2025-08-26T20:45:21.6271661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit_meta_dispatch.h 2025-08-26T20:45:21.6275824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit_native.h 2025-08-26T20:45:21.6279486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit_ops.h 2025-08-26T20:45:21.6284728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.6287576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign_cpu_dispatch.h 2025-08-26T20:45:21.6291833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign_cuda_dispatch.h 2025-08-26T20:45:21.6295551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign_meta.h 2025-08-26T20:45:21.6299424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign_meta_dispatch.h 2025-08-26T20:45:21.6303394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign_native.h 2025-08-26T20:45:21.6307452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign_ops.h 2025-08-26T20:45:21.6311087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu.h 2025-08-26T20:45:21.6314567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward.h 2025-08-26T20:45:21.6318453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.6322414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.6326537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_cpu_dispatch.h 2025-08-26T20:45:21.6330847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_cuda_dispatch.h 2025-08-26T20:45:21.6334713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_meta.h 2025-08-26T20:45:21.6338513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_meta_dispatch.h 2025-08-26T20:45:21.6342362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_native.h 2025-08-26T20:45:21.6346761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_ops.h 2025-08-26T20:45:21.6351076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.6354822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_cpu_dispatch.h 2025-08-26T20:45:21.6358461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_cuda_dispatch.h 2025-08-26T20:45:21.6362333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_meta.h 2025-08-26T20:45:21.6366038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_meta_dispatch.h 2025-08-26T20:45:21.6369716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_native.h 2025-08-26T20:45:21.6373337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_ops.h 2025-08-26T20:45:21.6377021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin.h 2025-08-26T20:45:21.6380481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc.h 2025-08-26T20:45:21.6384258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.6388178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc_cpu_dispatch.h 2025-08-26T20:45:21.6391937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc_cuda_dispatch.h 2025-08-26T20:45:21.6395687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc_meta.h 2025-08-26T20:45:21.6399312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc_meta_dispatch.h 2025-08-26T20:45:21.6403299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc_native.h 2025-08-26T20:45:21.6407179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc_ops.h 2025-08-26T20:45:21.6410909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh.h 2025-08-26T20:45:21.6414795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.6418278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh_cpu_dispatch.h 2025-08-26T20:45:21.6422139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh_cuda_dispatch.h 2025-08-26T20:45:21.6426319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh_meta.h 2025-08-26T20:45:21.6430622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh_meta_dispatch.h 2025-08-26T20:45:21.6435812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh_native.h 2025-08-26T20:45:21.6440244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh_ops.h 2025-08-26T20:45:21.6444394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.6448870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin_cpu_dispatch.h 2025-08-26T20:45:21.6453337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin_cuda_dispatch.h 2025-08-26T20:45:21.6457784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin_meta.h 2025-08-26T20:45:21.6462274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin_meta_dispatch.h 2025-08-26T20:45:21.6466983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin_native.h 2025-08-26T20:45:21.6471605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin_ops.h 2025-08-26T20:45:21.6475822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\size.h 2025-08-26T20:45:21.6480837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\size_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.6485467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\size_native.h 2025-08-26T20:45:21.6490040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\size_ops.h 2025-08-26T20:45:21.6494327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice.h 2025-08-26T20:45:21.6498604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_backward.h 2025-08-26T20:45:21.6503441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.6507529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_backward_native.h 2025-08-26T20:45:21.6511513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_backward_ops.h 2025-08-26T20:45:21.6515424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.6519278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_copy.h 2025-08-26T20:45:21.6523186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.6527092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.6530834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_copy_native.h 2025-08-26T20:45:21.6534616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_copy_ops.h 2025-08-26T20:45:21.6538721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_inverse.h 2025-08-26T20:45:21.6542937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_inverse_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.6546918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_inverse_native.h 2025-08-26T20:45:21.6550818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_inverse_ops.h 2025-08-26T20:45:21.6554524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_native.h 2025-08-26T20:45:21.6558795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_ops.h 2025-08-26T20:45:21.6562737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_scatter.h 2025-08-26T20:45:21.6566952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_scatter_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.6570844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_scatter_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.6574634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_scatter_native.h 2025-08-26T20:45:21.6578382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_scatter_ops.h 2025-08-26T20:45:21.6582193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slogdet.h 2025-08-26T20:45:21.6585981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slogdet_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.6589665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slogdet_native.h 2025-08-26T20:45:21.6593690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slogdet_ops.h 2025-08-26T20:45:21.6597424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d.h 2025-08-26T20:45:21.6601332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.6604998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d_forward.h 2025-08-26T20:45:21.6608776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d_forward_cpu_dispatch.h 2025-08-26T20:45:21.6612667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d_forward_native.h 2025-08-26T20:45:21.6617063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d_forward_ops.h 2025-08-26T20:45:21.6621374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d_native.h 2025-08-26T20:45:21.6625293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d_ops.h 2025-08-26T20:45:21.6629368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated2d.h 2025-08-26T20:45:21.6633433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated2d_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.6637334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated2d_cpu_dispatch.h 2025-08-26T20:45:21.6641338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated2d_cuda_dispatch.h 2025-08-26T20:45:21.6645787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated2d_native.h 2025-08-26T20:45:21.6649637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated2d_ops.h 2025-08-26T20:45:21.6653453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated3d.h 2025-08-26T20:45:21.6657716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated3d_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.6662219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated3d_cpu_dispatch.h 2025-08-26T20:45:21.6666482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated3d_cuda_dispatch.h 2025-08-26T20:45:21.6670366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated3d_native.h 2025-08-26T20:45:21.6674957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated3d_ops.h 2025-08-26T20:45:21.6679006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d.h 2025-08-26T20:45:21.6683076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.6687208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d_cpu_dispatch.h 2025-08-26T20:45:21.6691622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d_cuda_dispatch.h 2025-08-26T20:45:21.6695674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d_meta.h 2025-08-26T20:45:21.6699680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d_meta_dispatch.h 2025-08-26T20:45:21.6704278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d_native.h 2025-08-26T20:45:21.6708212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d_ops.h 2025-08-26T20:45:21.6712098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose3d.h 2025-08-26T20:45:21.6716019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose3d_cpu_dispatch.h 2025-08-26T20:45:21.6720498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose3d_cuda_dispatch.h 2025-08-26T20:45:21.6724824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose3d_native.h 2025-08-26T20:45:21.6728738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose3d_ops.h 2025-08-26T20:45:21.6732655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smm.h 2025-08-26T20:45:21.6736396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smm_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.6740194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smm_native.h 2025-08-26T20:45:21.6744202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smm_ops.h 2025-08-26T20:45:21.6747896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss.h 2025-08-26T20:45:21.6751902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_backward.h 2025-08-26T20:45:21.6756202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.6760010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_backward_cpu_dispatch.h 2025-08-26T20:45:21.6764471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_backward_cuda_dispatch.h 2025-08-26T20:45:21.6768592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_backward_native.h 2025-08-26T20:45:21.6772602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_backward_ops.h 2025-08-26T20:45:21.6776971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.6780920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_cpu_dispatch.h 2025-08-26T20:45:21.6784990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_cuda_dispatch.h 2025-08-26T20:45:21.6789252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_meta.h 2025-08-26T20:45:21.6793249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_meta_dispatch.h 2025-08-26T20:45:21.6797288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_native.h 2025-08-26T20:45:21.6801264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_ops.h 2025-08-26T20:45:21.6805542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softmax.h 2025-08-26T20:45:21.6809952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softmax_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.6814027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softmax_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.6817735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softmax_native.h 2025-08-26T20:45:21.6821690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softmax_ops.h 2025-08-26T20:45:21.6826047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus.h 2025-08-26T20:45:21.6829632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward.h 2025-08-26T20:45:21.6833966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.6838380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward_cpu_dispatch.h 2025-08-26T20:45:21.6842191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward_cuda_dispatch.h 2025-08-26T20:45:21.6845897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward_meta.h 2025-08-26T20:45:21.6881015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward_meta_dispatch.h 2025-08-26T20:45:21.6884882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward_native.h 2025-08-26T20:45:21.6888899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward_ops.h 2025-08-26T20:45:21.6892921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.6896770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_cpu_dispatch.h 2025-08-26T20:45:21.6901285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_cuda_dispatch.h 2025-08-26T20:45:21.6905144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_meta.h 2025-08-26T20:45:21.6908888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_meta_dispatch.h 2025-08-26T20:45:21.6913016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_native.h 2025-08-26T20:45:21.6916910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_ops.h 2025-08-26T20:45:21.6920651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink.h 2025-08-26T20:45:21.6924396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward.h 2025-08-26T20:45:21.6928387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.6932083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward_cpu_dispatch.h 2025-08-26T20:45:21.6936419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward_cuda_dispatch.h 2025-08-26T20:45:21.6940443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward_meta.h 2025-08-26T20:45:21.6944605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward_meta_dispatch.h 2025-08-26T20:45:21.6948502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward_native.h 2025-08-26T20:45:21.6952419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward_ops.h 2025-08-26T20:45:21.6956423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.6960141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_cpu_dispatch.h 2025-08-26T20:45:21.6964018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_cuda_dispatch.h 2025-08-26T20:45:21.6968059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_meta.h 2025-08-26T20:45:21.6971899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_meta_dispatch.h 2025-08-26T20:45:21.6975689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_native.h 2025-08-26T20:45:21.6979470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_ops.h 2025-08-26T20:45:21.6983295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss.h 2025-08-26T20:45:21.6987173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss_backward.h 2025-08-26T20:45:21.6991254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.6995187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss_backward_native.h 2025-08-26T20:45:21.6998934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss_backward_ops.h 2025-08-26T20:45:21.7003639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.7007479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss_native.h 2025-08-26T20:45:21.7011947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss_ops.h 2025-08-26T20:45:21.7015686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort.h 2025-08-26T20:45:21.7019357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.7023413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.7027367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.7031117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_cpu_dispatch.h 2025-08-26T20:45:21.7034988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_cuda_dispatch.h 2025-08-26T20:45:21.7040192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_meta.h 2025-08-26T20:45:21.7043632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_meta_dispatch.h 2025-08-26T20:45:21.7048199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_native.h 2025-08-26T20:45:21.7053842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_ops.h 2025-08-26T20:45:21.7057438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsc_tensor.h 2025-08-26T20:45:21.7061370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsc_tensor_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.7065209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsc_tensor_native.h 2025-08-26T20:45:21.7069079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsc_tensor_ops.h 2025-08-26T20:45:21.7072929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsr_tensor.h 2025-08-26T20:45:21.7077004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsr_tensor_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.7081211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsr_tensor_native.h 2025-08-26T20:45:21.7085826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsr_tensor_ops.h 2025-08-26T20:45:21.7089796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_compressed_tensor.h 2025-08-26T20:45:21.7093883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_compressed_tensor_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.7097695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_compressed_tensor_native.h 2025-08-26T20:45:21.7101531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_compressed_tensor_ops.h 2025-08-26T20:45:21.7106317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_coo_tensor.h 2025-08-26T20:45:21.7110740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_coo_tensor_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.7114807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_coo_tensor_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.7118577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_coo_tensor_native.h 2025-08-26T20:45:21.7122400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_coo_tensor_ops.h 2025-08-26T20:45:21.7126830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csc_tensor.h 2025-08-26T20:45:21.7130507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csc_tensor_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.7134330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csc_tensor_native.h 2025-08-26T20:45:21.7138150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csc_tensor_ops.h 2025-08-26T20:45:21.7141948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csr_tensor.h 2025-08-26T20:45:21.7146039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csr_tensor_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.7149953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csr_tensor_native.h 2025-08-26T20:45:21.7153987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csr_tensor_ops.h 2025-08-26T20:45:21.7158147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_dim.h 2025-08-26T20:45:21.7162267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_dim_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.7166078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_dim_native.h 2025-08-26T20:45:21.7169943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_dim_ops.h 2025-08-26T20:45:21.7173808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_mask.h 2025-08-26T20:45:21.7178048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_mask_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.7181878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_mask_native.h 2025-08-26T20:45:21.7186124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_mask_ops.h 2025-08-26T20:45:21.7190313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize.h 2025-08-26T20:45:21.7194355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_and_clear.h 2025-08-26T20:45:21.7198398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_and_clear_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.7202434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_and_clear_meta_dispatch.h 2025-08-26T20:45:21.7206345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_and_clear_native.h 2025-08-26T20:45:21.7211390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_and_clear_ops.h 2025-08-26T20:45:21.7215419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.7219369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_meta_dispatch.h 2025-08-26T20:45:21.7223476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_native.h 2025-08-26T20:45:21.7227490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_ops.h 2025-08-26T20:45:21.7231386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_sampled_addmm.h 2025-08-26T20:45:21.7235903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_sampled_addmm_native.h 2025-08-26T20:45:21.7240209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_sampled_addmm_ops.h 2025-08-26T20:45:21.7244114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai.h 2025-08-26T20:45:21.7248627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.7252536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai_cpu_dispatch.h 2025-08-26T20:45:21.7256364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai_cuda_dispatch.h 2025-08-26T20:45:21.7260620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai_meta.h 2025-08-26T20:45:21.7264694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai_meta_dispatch.h 2025-08-26T20:45:21.7268907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai_native.h 2025-08-26T20:45:21.7272696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai_ops.h 2025-08-26T20:45:21.7276660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0.h 2025-08-26T20:45:21.7280867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.7284721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0_cpu_dispatch.h 2025-08-26T20:45:21.7289048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0_cuda_dispatch.h 2025-08-26T20:45:21.7293548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0_meta.h 2025-08-26T20:45:21.7297655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0_meta_dispatch.h 2025-08-26T20:45:21.7301510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0_native.h 2025-08-26T20:45:21.7305866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0_ops.h 2025-08-26T20:45:21.7309942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1.h 2025-08-26T20:45:21.7315383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.7319716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1_cpu_dispatch.h 2025-08-26T20:45:21.7323720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1_cuda_dispatch.h 2025-08-26T20:45:21.7327679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1_meta.h 2025-08-26T20:45:21.7331762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1_meta_dispatch.h 2025-08-26T20:45:21.7335709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1_native.h 2025-08-26T20:45:21.7340297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1_ops.h 2025-08-26T20:45:21.7371805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0.h 2025-08-26T20:45:21.7376063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.7379795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0_cpu_dispatch.h 2025-08-26T20:45:21.7383745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0_cuda_dispatch.h 2025-08-26T20:45:21.7387650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0_meta.h 2025-08-26T20:45:21.7391499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0_meta_dispatch.h 2025-08-26T20:45:21.7395294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0_native.h 2025-08-26T20:45:21.7399326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0_ops.h 2025-08-26T20:45:21.7403125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1.h 2025-08-26T20:45:21.7407282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.7411263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1_cpu_dispatch.h 2025-08-26T20:45:21.7415207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1_cuda_dispatch.h 2025-08-26T20:45:21.7419080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1_meta.h 2025-08-26T20:45:21.7423701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1_meta_dispatch.h 2025-08-26T20:45:21.7427801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1_native.h 2025-08-26T20:45:21.7431978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1_ops.h 2025-08-26T20:45:21.7435865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t.h 2025-08-26T20:45:21.7440353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.7444596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.7448686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_cpu_dispatch.h 2025-08-26T20:45:21.7452556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_cuda_dispatch.h 2025-08-26T20:45:21.7456607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_meta.h 2025-08-26T20:45:21.7461525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_meta_dispatch.h 2025-08-26T20:45:21.7464526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_native.h 2025-08-26T20:45:21.7468704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_ops.h 2025-08-26T20:45:21.7472472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u.h 2025-08-26T20:45:21.7476620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.7480624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.7484640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_cpu_dispatch.h 2025-08-26T20:45:21.7488552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_cuda_dispatch.h 2025-08-26T20:45:21.7492451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_meta.h 2025-08-26T20:45:21.7496364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_meta_dispatch.h 2025-08-26T20:45:21.7500266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_native.h 2025-08-26T20:45:21.7504277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_ops.h 2025-08-26T20:45:21.7508283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v.h 2025-08-26T20:45:21.7513222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.7517080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.7521397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_cpu_dispatch.h 2025-08-26T20:45:21.7525908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_cuda_dispatch.h 2025-08-26T20:45:21.7529978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_meta.h 2025-08-26T20:45:21.7533882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_meta_dispatch.h 2025-08-26T20:45:21.7537806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_native.h 2025-08-26T20:45:21.7541787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_ops.h 2025-08-26T20:45:21.7545561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w.h 2025-08-26T20:45:21.7549899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.7553830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.7557775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_cpu_dispatch.h 2025-08-26T20:45:21.7562000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_cuda_dispatch.h 2025-08-26T20:45:21.7565638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_meta.h 2025-08-26T20:45:21.7569936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_meta_dispatch.h 2025-08-26T20:45:21.7574123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_native.h 2025-08-26T20:45:21.7577778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_ops.h 2025-08-26T20:45:21.7581940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_digamma.h 2025-08-26T20:45:21.7586214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_digamma_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.7591151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_digamma_native.h 2025-08-26T20:45:21.7594360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_digamma_ops.h 2025-08-26T20:45:21.7598734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr.h 2025-08-26T20:45:21.7603227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.7607056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr_cpu_dispatch.h 2025-08-26T20:45:21.7611020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr_cuda_dispatch.h 2025-08-26T20:45:21.7615777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr_meta.h 2025-08-26T20:45:21.7620229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr_meta_dispatch.h 2025-08-26T20:45:21.7623953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr_native.h 2025-08-26T20:45:21.7627887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr_ops.h 2025-08-26T20:45:21.7631839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erf.h 2025-08-26T20:45:21.7635584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfc.h 2025-08-26T20:45:21.7639823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx.h 2025-08-26T20:45:21.7644225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.7648945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx_cpu_dispatch.h 2025-08-26T20:45:21.7652313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx_cuda_dispatch.h 2025-08-26T20:45:21.7656716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx_meta.h 2025-08-26T20:45:21.7661031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx_meta_dispatch.h 2025-08-26T20:45:21.7665995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx_native.h 2025-08-26T20:45:21.7669220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx_ops.h 2025-08-26T20:45:21.7673830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfc_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.7678068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfc_native.h 2025-08-26T20:45:21.7681675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfc_ops.h 2025-08-26T20:45:21.7685611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfinv.h 2025-08-26T20:45:21.7690344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfinv_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.7695078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfinv_native.h 2025-08-26T20:45:21.7698070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfinv_ops.h 2025-08-26T20:45:21.7702136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erf_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.7706818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erf_native.h 2025-08-26T20:45:21.7710595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erf_ops.h 2025-08-26T20:45:21.7715692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_exp2.h 2025-08-26T20:45:21.7720128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_exp2_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.7724182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_exp2_native.h 2025-08-26T20:45:21.7729747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_exp2_ops.h 2025-08-26T20:45:21.7732648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expit.h 2025-08-26T20:45:21.7737720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expit_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.7741999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expit_native.h 2025-08-26T20:45:21.7746853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expit_ops.h 2025-08-26T20:45:21.7749706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expm1.h 2025-08-26T20:45:21.7753763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expm1_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.7758644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expm1_native.h 2025-08-26T20:45:21.7761586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expm1_ops.h 2025-08-26T20:45:21.7766170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammainc.h 2025-08-26T20:45:21.7770311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaincc.h 2025-08-26T20:45:21.7774345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaincc_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.7778932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaincc_native.h 2025-08-26T20:45:21.7783546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaincc_ops.h 2025-08-26T20:45:21.7787978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammainc_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.7791863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammainc_native.h 2025-08-26T20:45:21.7796025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammainc_ops.h 2025-08-26T20:45:21.7800192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaln.h 2025-08-26T20:45:21.7803971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaln_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.7808088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaln_native.h 2025-08-26T20:45:21.7812529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaln_ops.h 2025-08-26T20:45:21.7816894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h.h 2025-08-26T20:45:21.7820747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he.h 2025-08-26T20:45:21.7825349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.7829322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.7833851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_cpu_dispatch.h 2025-08-26T20:45:21.7837896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_cuda_dispatch.h 2025-08-26T20:45:21.7843158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_meta.h 2025-08-26T20:45:21.7848436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_meta_dispatch.h 2025-08-26T20:45:21.7851535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_native.h 2025-08-26T20:45:21.7855340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_ops.h 2025-08-26T20:45:21.7859359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.7864659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.7867657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_cpu_dispatch.h 2025-08-26T20:45:21.7871765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_cuda_dispatch.h 2025-08-26T20:45:21.7875575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_meta.h 2025-08-26T20:45:21.7879491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_meta_dispatch.h 2025-08-26T20:45:21.7883345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_native.h 2025-08-26T20:45:21.7887456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_ops.h 2025-08-26T20:45:21.7891424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0.h 2025-08-26T20:45:21.7895568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e.h 2025-08-26T20:45:21.7899567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.7903510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e_cpu_dispatch.h 2025-08-26T20:45:21.7907445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e_cuda_dispatch.h 2025-08-26T20:45:21.7911494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e_meta.h 2025-08-26T20:45:21.7915372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e_meta_dispatch.h 2025-08-26T20:45:21.7919455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e_native.h 2025-08-26T20:45:21.7923315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e_ops.h 2025-08-26T20:45:21.7927917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.7931702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0_native.h 2025-08-26T20:45:21.7935502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0_ops.h 2025-08-26T20:45:21.7939419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1.h 2025-08-26T20:45:21.7943713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e.h 2025-08-26T20:45:21.7947626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.7951878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e_cpu_dispatch.h 2025-08-26T20:45:21.7984327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e_cuda_dispatch.h 2025-08-26T20:45:21.7988137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e_meta.h 2025-08-26T20:45:21.7992227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e_meta_dispatch.h 2025-08-26T20:45:21.7996055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e_native.h 2025-08-26T20:45:21.8000032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e_ops.h 2025-08-26T20:45:21.8004133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.8007816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1_cpu_dispatch.h 2025-08-26T20:45:21.8011765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1_cuda_dispatch.h 2025-08-26T20:45:21.8015695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1_meta.h 2025-08-26T20:45:21.8019508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1_meta_dispatch.h 2025-08-26T20:45:21.8023374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1_native.h 2025-08-26T20:45:21.8027547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1_ops.h 2025-08-26T20:45:21.8031514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l.h 2025-08-26T20:45:21.8035657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.8040687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.8049621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_cpu_dispatch.h 2025-08-26T20:45:21.8052546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_cuda_dispatch.h 2025-08-26T20:45:21.8057980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_meta.h 2025-08-26T20:45:21.8062616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_meta_dispatch.h 2025-08-26T20:45:21.8066544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_native.h 2025-08-26T20:45:21.8070543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_ops.h 2025-08-26T20:45:21.8074612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p.h 2025-08-26T20:45:21.8079015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.8083121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.8087080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_cpu_dispatch.h 2025-08-26T20:45:21.8091039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_cuda_dispatch.h 2025-08-26T20:45:21.8095142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_meta.h 2025-08-26T20:45:21.8099218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_meta_dispatch.h 2025-08-26T20:45:21.8103473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_native.h 2025-08-26T20:45:21.8107358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_ops.h 2025-08-26T20:45:21.8111137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log1p.h 2025-08-26T20:45:21.8115460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log1p_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.8119547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log1p_native.h 2025-08-26T20:45:21.8123447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log1p_ops.h 2025-08-26T20:45:21.8128376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logit.h 2025-08-26T20:45:21.8132629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logit_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.8136609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logit_native.h 2025-08-26T20:45:21.8140676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logit_ops.h 2025-08-26T20:45:21.8144746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logsumexp.h 2025-08-26T20:45:21.8148854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logsumexp_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.8152908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logsumexp_native.h 2025-08-26T20:45:21.8156775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logsumexp_ops.h 2025-08-26T20:45:21.8161103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr.h 2025-08-26T20:45:21.8165221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.8169160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr_cpu_dispatch.h 2025-08-26T20:45:21.8173141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr_cuda_dispatch.h 2025-08-26T20:45:21.8177178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr_meta.h 2025-08-26T20:45:21.8181059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr_meta_dispatch.h 2025-08-26T20:45:21.8185060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr_native.h 2025-08-26T20:45:21.8188990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr_ops.h 2025-08-26T20:45:21.8192903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_softmax.h 2025-08-26T20:45:21.8197064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_softmax_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.8201077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_softmax_native.h 2025-08-26T20:45:21.8204989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_softmax_ops.h 2025-08-26T20:45:21.8208905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0.h 2025-08-26T20:45:21.8213092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.8217174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0_cpu_dispatch.h 2025-08-26T20:45:21.8221084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0_cuda_dispatch.h 2025-08-26T20:45:21.8225478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0_meta.h 2025-08-26T20:45:21.8229613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0_meta_dispatch.h 2025-08-26T20:45:21.8233656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0_native.h 2025-08-26T20:45:21.8237755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0_ops.h 2025-08-26T20:45:21.8241683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1.h 2025-08-26T20:45:21.8245923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.8250187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1_cpu_dispatch.h 2025-08-26T20:45:21.8254927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1_cuda_dispatch.h 2025-08-26T20:45:21.8259126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1_meta.h 2025-08-26T20:45:21.8263665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1_meta_dispatch.h 2025-08-26T20:45:21.8267680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1_native.h 2025-08-26T20:45:21.8272055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1_ops.h 2025-08-26T20:45:21.8275978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0.h 2025-08-26T20:45:21.8280298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.8284258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0_cpu_dispatch.h 2025-08-26T20:45:21.8288406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0_cuda_dispatch.h 2025-08-26T20:45:21.8292461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0_meta.h 2025-08-26T20:45:21.8296818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0_meta_dispatch.h 2025-08-26T20:45:21.8300910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0_native.h 2025-08-26T20:45:21.8305265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0_ops.h 2025-08-26T20:45:21.8309549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1.h 2025-08-26T20:45:21.8314191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.8318619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1_cpu_dispatch.h 2025-08-26T20:45:21.8323833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1_cuda_dispatch.h 2025-08-26T20:45:21.8328251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1_meta.h 2025-08-26T20:45:21.8332787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1_meta_dispatch.h 2025-08-26T20:45:21.8337304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1_native.h 2025-08-26T20:45:21.8341782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1_ops.h 2025-08-26T20:45:21.8347187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_multigammaln.h 2025-08-26T20:45:21.8351536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_multigammaln_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.8356198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_multigammaln_native.h 2025-08-26T20:45:21.8360211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_multigammaln_ops.h 2025-08-26T20:45:21.8364049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtr.h 2025-08-26T20:45:21.8368497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri.h 2025-08-26T20:45:21.8373106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.8377822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri_cpu_dispatch.h 2025-08-26T20:45:21.8381849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri_cuda_dispatch.h 2025-08-26T20:45:21.8385829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri_meta.h 2025-08-26T20:45:21.8389828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri_meta_dispatch.h 2025-08-26T20:45:21.8393758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri_native.h 2025-08-26T20:45:21.8397774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri_ops.h 2025-08-26T20:45:21.8402046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtr_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.8406072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtr_native.h 2025-08-26T20:45:21.8409976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtr_ops.h 2025-08-26T20:45:21.8414113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_polygamma.h 2025-08-26T20:45:21.8418108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_polygamma_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.8422005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_polygamma_native.h 2025-08-26T20:45:21.8426042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_polygamma_ops.h 2025-08-26T20:45:21.8430219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_psi.h 2025-08-26T20:45:21.8434231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_psi_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.8438087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_psi_native.h 2025-08-26T20:45:21.8441893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_psi_ops.h 2025-08-26T20:45:21.8445806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_round.h 2025-08-26T20:45:21.8449795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_round_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.8453614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_round_native.h 2025-08-26T20:45:21.8457689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_round_ops.h 2025-08-26T20:45:21.8462078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0.h 2025-08-26T20:45:21.8466464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.8470371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0_cpu_dispatch.h 2025-08-26T20:45:21.8474667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0_cuda_dispatch.h 2025-08-26T20:45:21.8478747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0_meta.h 2025-08-26T20:45:21.8482617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0_meta_dispatch.h 2025-08-26T20:45:21.8486457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0_native.h 2025-08-26T20:45:21.8490319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0_ops.h 2025-08-26T20:45:21.8494121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1.h 2025-08-26T20:45:21.8498604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.8502438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1_cpu_dispatch.h 2025-08-26T20:45:21.8506477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1_cuda_dispatch.h 2025-08-26T20:45:21.8510328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1_meta.h 2025-08-26T20:45:21.8514254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1_meta_dispatch.h 2025-08-26T20:45:21.8518491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1_native.h 2025-08-26T20:45:21.8522334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1_ops.h 2025-08-26T20:45:21.8526535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t.h 2025-08-26T20:45:21.8530714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.8534717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.8538834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_cpu_dispatch.h 2025-08-26T20:45:21.8543926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_cuda_dispatch.h 2025-08-26T20:45:21.8547964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_meta.h 2025-08-26T20:45:21.8552220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_meta_dispatch.h 2025-08-26T20:45:21.8556416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_native.h 2025-08-26T20:45:21.8560362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_ops.h 2025-08-26T20:45:21.8564305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u.h 2025-08-26T20:45:21.8568600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.8572681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.8576810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_cpu_dispatch.h 2025-08-26T20:45:21.8580782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_cuda_dispatch.h 2025-08-26T20:45:21.8584797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_meta.h 2025-08-26T20:45:21.8588831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_meta_dispatch.h 2025-08-26T20:45:21.8592767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_native.h 2025-08-26T20:45:21.8596930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_ops.h 2025-08-26T20:45:21.8600823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v.h 2025-08-26T20:45:21.8605156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.8609275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.8614497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_cpu_dispatch.h 2025-08-26T20:45:21.8618435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_cuda_dispatch.h 2025-08-26T20:45:21.8622930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_meta.h 2025-08-26T20:45:21.8627017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_meta_dispatch.h 2025-08-26T20:45:21.8631032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_native.h 2025-08-26T20:45:21.8635212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_ops.h 2025-08-26T20:45:21.8639119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w.h 2025-08-26T20:45:21.8643329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.8647425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.8651631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_cpu_dispatch.h 2025-08-26T20:45:21.8655848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_cuda_dispatch.h 2025-08-26T20:45:21.8659781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_meta.h 2025-08-26T20:45:21.8663797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_meta_dispatch.h 2025-08-26T20:45:21.8667820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_native.h 2025-08-26T20:45:21.8672068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_ops.h 2025-08-26T20:45:21.8675845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_sinc.h 2025-08-26T20:45:21.8680142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_sinc_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.8684056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_sinc_native.h 2025-08-26T20:45:21.8687935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_sinc_ops.h 2025-08-26T20:45:21.8691958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_softmax.h 2025-08-26T20:45:21.8696020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_softmax_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.8700094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_softmax_native.h 2025-08-26T20:45:21.8704672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_softmax_ops.h 2025-08-26T20:45:21.8709465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0.h 2025-08-26T20:45:21.8714275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.8718682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0_cpu_dispatch.h 2025-08-26T20:45:21.8722996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0_cuda_dispatch.h 2025-08-26T20:45:21.8726990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0_meta.h 2025-08-26T20:45:21.8730975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0_meta_dispatch.h 2025-08-26T20:45:21.8734902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0_native.h 2025-08-26T20:45:21.8738949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0_ops.h 2025-08-26T20:45:21.8742717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py.h 2025-08-26T20:45:21.8747115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.8751110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.8755007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_cpu_dispatch.h 2025-08-26T20:45:21.8759044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_cuda_dispatch.h 2025-08-26T20:45:21.8763089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_meta.h 2025-08-26T20:45:21.8767065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_meta_dispatch.h 2025-08-26T20:45:21.8771150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_native.h 2025-08-26T20:45:21.8774992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_ops.h 2025-08-26T20:45:21.8778797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlogy.h 2025-08-26T20:45:21.8783143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlogy_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.8787028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlogy_native.h 2025-08-26T20:45:21.8790963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlogy_ops.h 2025-08-26T20:45:21.8794788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta.h 2025-08-26T20:45:21.8798925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.8803111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.8807082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_cpu_dispatch.h 2025-08-26T20:45:21.8811499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_cuda_dispatch.h 2025-08-26T20:45:21.8815442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_meta.h 2025-08-26T20:45:21.8819539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_meta_dispatch.h 2025-08-26T20:45:21.8823753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_native.h 2025-08-26T20:45:21.8827912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_ops.h 2025-08-26T20:45:21.8831825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split.h 2025-08-26T20:45:21.8835821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.8839731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.8843381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_copy.h 2025-08-26T20:45:21.8847530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.8851568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.8855350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_copy_native.h 2025-08-26T20:45:21.8859276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_copy_ops.h 2025-08-26T20:45:21.8863151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_native.h 2025-08-26T20:45:21.8867570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_ops.h 2025-08-26T20:45:21.8871493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes.h 2025-08-26T20:45:21.8875436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.8889867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_copy.h 2025-08-26T20:45:21.8890826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.8891773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.8892583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_copy_cuda_dispatch.h 2025-08-26T20:45:21.8895545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_copy_native.h 2025-08-26T20:45:21.8899397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_copy_ops.h 2025-08-26T20:45:21.8903498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_native.h 2025-08-26T20:45:21.8908168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_ops.h 2025-08-26T20:45:21.8912175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt.h 2025-08-26T20:45:21.8916185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.8919943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt_cpu_dispatch.h 2025-08-26T20:45:21.8923890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt_cuda_dispatch.h 2025-08-26T20:45:21.8927929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt_meta.h 2025-08-26T20:45:21.8932091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt_meta_dispatch.h 2025-08-26T20:45:21.8936449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt_native.h 2025-08-26T20:45:21.8940606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt_ops.h 2025-08-26T20:45:21.8944610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\square.h 2025-08-26T20:45:21.8948646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\square_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.8952284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\square_native.h 2025-08-26T20:45:21.8956230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\square_ops.h 2025-08-26T20:45:21.8960530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze.h 2025-08-26T20:45:21.8964410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.8968519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.8972427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_copy.h 2025-08-26T20:45:21.8976749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.8980671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.8984679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_copy_native.h 2025-08-26T20:45:21.8988739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_copy_ops.h 2025-08-26T20:45:21.8992642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_native.h 2025-08-26T20:45:21.8996614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_ops.h 2025-08-26T20:45:21.9000430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sspaddmm.h 2025-08-26T20:45:21.9004088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sspaddmm_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.9008017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sspaddmm_cpu_dispatch.h 2025-08-26T20:45:21.9011791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sspaddmm_cuda_dispatch.h 2025-08-26T20:45:21.9015900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sspaddmm_native.h 2025-08-26T20:45:21.9020109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sspaddmm_ops.h 2025-08-26T20:45:21.9024496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stack.h 2025-08-26T20:45:21.9028405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stack_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.9032156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stack_native.h 2025-08-26T20:45:21.9035824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stack_ops.h 2025-08-26T20:45:21.9069937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std.h 2025-08-26T20:45:21.9073969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.9077611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_cpu_dispatch.h 2025-08-26T20:45:21.9081604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_cuda_dispatch.h 2025-08-26T20:45:21.9085348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_mean.h 2025-08-26T20:45:21.9089234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_mean_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.9093422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_mean_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.9097429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_mean_cpu_dispatch.h 2025-08-26T20:45:21.9101284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_mean_cuda_dispatch.h 2025-08-26T20:45:21.9105197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_mean_native.h 2025-08-26T20:45:21.9109141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_mean_ops.h 2025-08-26T20:45:21.9112982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_native.h 2025-08-26T20:45:21.9116732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_ops.h 2025-08-26T20:45:21.9120131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stft.h 2025-08-26T20:45:21.9123975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stft_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.9127701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stft_native.h 2025-08-26T20:45:21.9131480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stft_ops.h 2025-08-26T20:45:21.9134929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stride.h 2025-08-26T20:45:21.9138890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stride_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.9142872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stride_native.h 2025-08-26T20:45:21.9146704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stride_ops.h 2025-08-26T20:45:21.9150635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub.h 2025-08-26T20:45:21.9154699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\subtract.h 2025-08-26T20:45:21.9158477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\subtract_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.9162170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\subtract_native.h 2025-08-26T20:45:21.9165846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\subtract_ops.h 2025-08-26T20:45:21.9169993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.9174066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.9178144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_cpu_dispatch.h 2025-08-26T20:45:21.9181830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_cuda_dispatch.h 2025-08-26T20:45:21.9185518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_meta.h 2025-08-26T20:45:21.9189233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_meta_dispatch.h 2025-08-26T20:45:21.9192891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_native.h 2025-08-26T20:45:21.9196527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_ops.h 2025-08-26T20:45:21.9200929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum.h 2025-08-26T20:45:21.9204667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.9208937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.9212742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.9216330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_cpu_dispatch.h 2025-08-26T20:45:21.9220216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_cuda_dispatch.h 2025-08-26T20:45:21.9223947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_meta.h 2025-08-26T20:45:21.9228519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_meta_dispatch.h 2025-08-26T20:45:21.9232174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_native.h 2025-08-26T20:45:21.9235865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_ops.h 2025-08-26T20:45:21.9239367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_to_size.h 2025-08-26T20:45:21.9243182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_to_size_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.9247079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_to_size_native.h 2025-08-26T20:45:21.9250836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_to_size_ops.h 2025-08-26T20:45:21.9254693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\svd.h 2025-08-26T20:45:21.9258281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\svd_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.9262194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\svd_native.h 2025-08-26T20:45:21.9265968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\svd_ops.h 2025-08-26T20:45:21.9269455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapaxes.h 2025-08-26T20:45:21.9273076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapaxes_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.9276663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapaxes_native.h 2025-08-26T20:45:21.9280679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapaxes_ops.h 2025-08-26T20:45:21.9284581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapdims.h 2025-08-26T20:45:21.9288245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapdims_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.9292211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapdims_native.h 2025-08-26T20:45:21.9295858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapdims_ops.h 2025-08-26T20:45:21.9299572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range.h 2025-08-26T20:45:21.9303495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.9307561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range_for_size.h 2025-08-26T20:45:21.9312251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.9315786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range_for_size_native.h 2025-08-26T20:45:21.9319551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range_for_size_ops.h 2025-08-26T20:45:21.9323362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range_native.h 2025-08-26T20:45:21.9327215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range_ops.h 2025-08-26T20:45:21.9331256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_numel.h 2025-08-26T20:45:21.9335138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_numel_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.9338993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_numel_native.h 2025-08-26T20:45:21.9342778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_numel_ops.h 2025-08-26T20:45:21.9347052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_size.h 2025-08-26T20:45:21.9351262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_size_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.9355304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_size_native.h 2025-08-26T20:45:21.9360114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_size_ops.h 2025-08-26T20:45:21.9364414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_storage_offset.h 2025-08-26T20:45:21.9368764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_storage_offset_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.9373125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_storage_offset_native.h 2025-08-26T20:45:21.9377444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_storage_offset_ops.h 2025-08-26T20:45:21.9381798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_stride.h 2025-08-26T20:45:21.9386809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_stride_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.9391203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_stride_native.h 2025-08-26T20:45:21.9395478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_stride_ops.h 2025-08-26T20:45:21.9399765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t.h 2025-08-26T20:45:21.9403255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take.h 2025-08-26T20:45:21.9406986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_along_dim.h 2025-08-26T20:45:21.9411013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_along_dim_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.9414806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_along_dim_native.h 2025-08-26T20:45:21.9418701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_along_dim_ops.h 2025-08-26T20:45:21.9422532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_cpu_dispatch.h 2025-08-26T20:45:21.9426358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_cuda_dispatch.h 2025-08-26T20:45:21.9430573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_native.h 2025-08-26T20:45:21.9434494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_ops.h 2025-08-26T20:45:21.9438032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan.h 2025-08-26T20:45:21.9441437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh.h 2025-08-26T20:45:21.9444892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward.h 2025-08-26T20:45:21.9449043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.9452567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward_cpu_dispatch.h 2025-08-26T20:45:21.9456340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward_cuda_dispatch.h 2025-08-26T20:45:21.9460329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward_meta.h 2025-08-26T20:45:21.9464699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward_meta_dispatch.h 2025-08-26T20:45:21.9468651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward_native.h 2025-08-26T20:45:21.9472650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward_ops.h 2025-08-26T20:45:21.9476775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.9480374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_cpu_dispatch.h 2025-08-26T20:45:21.9484078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_cuda_dispatch.h 2025-08-26T20:45:21.9488067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_meta.h 2025-08-26T20:45:21.9491836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_meta_dispatch.h 2025-08-26T20:45:21.9495549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_native.h 2025-08-26T20:45:21.9499624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_ops.h 2025-08-26T20:45:21.9503397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.9507216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan_cpu_dispatch.h 2025-08-26T20:45:21.9510993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan_cuda_dispatch.h 2025-08-26T20:45:21.9514728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan_meta.h 2025-08-26T20:45:21.9518796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan_meta_dispatch.h 2025-08-26T20:45:21.9522435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan_native.h 2025-08-26T20:45:21.9526149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan_ops.h 2025-08-26T20:45:21.9529586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensor.h 2025-08-26T20:45:21.9533531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensordot.h 2025-08-26T20:45:21.9537630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensordot_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.9541643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensordot_native.h 2025-08-26T20:45:21.9546913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensordot_ops.h 2025-08-26T20:45:21.9551486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensor_split.h 2025-08-26T20:45:21.9556162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensor_split_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.9560271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensor_split_native.h 2025-08-26T20:45:21.9564775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensor_split_ops.h 2025-08-26T20:45:21.9568699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\thnn_conv2d.h 2025-08-26T20:45:21.9572622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\thnn_conv2d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.9576822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\thnn_conv2d_native.h 2025-08-26T20:45:21.9580704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\thnn_conv2d_ops.h 2025-08-26T20:45:21.9584649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold.h 2025-08-26T20:45:21.9589135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward.h 2025-08-26T20:45:21.9593245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.9597082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward_cpu_dispatch.h 2025-08-26T20:45:21.9601037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward_cuda_dispatch.h 2025-08-26T20:45:21.9604904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward_meta.h 2025-08-26T20:45:21.9609111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward_meta_dispatch.h 2025-08-26T20:45:21.9613718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward_native.h 2025-08-26T20:45:21.9617688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward_ops.h 2025-08-26T20:45:21.9649794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.9653563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_cpu_dispatch.h 2025-08-26T20:45:21.9657563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_cuda_dispatch.h 2025-08-26T20:45:21.9661542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_meta.h 2025-08-26T20:45:21.9665534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_meta_dispatch.h 2025-08-26T20:45:21.9669487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_native.h 2025-08-26T20:45:21.9673265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_ops.h 2025-08-26T20:45:21.9677135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tile.h 2025-08-26T20:45:21.9680951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tile_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.9684572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tile_native.h 2025-08-26T20:45:21.9688266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tile_ops.h 2025-08-26T20:45:21.9691776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to.h 2025-08-26T20:45:21.9695454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk.h 2025-08-26T20:45:21.9699267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.9703165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk_cpu_dispatch.h 2025-08-26T20:45:21.9706994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk_cuda_dispatch.h 2025-08-26T20:45:21.9710779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk_meta.h 2025-08-26T20:45:21.9714415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk_meta_dispatch.h 2025-08-26T20:45:21.9718208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk_native.h 2025-08-26T20:45:21.9721863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk_ops.h 2025-08-26T20:45:21.9726045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.9729775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense.h 2025-08-26T20:45:21.9733219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense_backward.h 2025-08-26T20:45:21.9737147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.9741023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense_backward_native.h 2025-08-26T20:45:21.9745012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense_backward_ops.h 2025-08-26T20:45:21.9749779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.9753912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense_native.h 2025-08-26T20:45:21.9757548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense_ops.h 2025-08-26T20:45:21.9761358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn.h 2025-08-26T20:45:21.9764997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_backward.h 2025-08-26T20:45:21.9769003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.9772852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_backward_native.h 2025-08-26T20:45:21.9776769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_backward_ops.h 2025-08-26T20:45:21.9781024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.9784955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_cpu_dispatch.h 2025-08-26T20:45:21.9788715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_native.h 2025-08-26T20:45:21.9792612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_ops.h 2025-08-26T20:45:21.9796374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_native.h 2025-08-26T20:45:21.9800000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_ops.h 2025-08-26T20:45:21.9803733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_padded_tensor.h 2025-08-26T20:45:21.9807483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_padded_tensor_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.9811386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_padded_tensor_native.h 2025-08-26T20:45:21.9815135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_padded_tensor_ops.h 2025-08-26T20:45:21.9819115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse.h 2025-08-26T20:45:21.9822914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsc.h 2025-08-26T20:45:21.9826861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsc_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.9830550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsc_native.h 2025-08-26T20:45:21.9834420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsc_ops.h 2025-08-26T20:45:21.9838232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsr.h 2025-08-26T20:45:21.9842145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsr_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.9845938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsr_native.h 2025-08-26T20:45:21.9849933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsr_ops.h 2025-08-26T20:45:21.9854660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.9858625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csc.h 2025-08-26T20:45:21.9862671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csc_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.9866567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csc_native.h 2025-08-26T20:45:21.9870467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csc_ops.h 2025-08-26T20:45:21.9874229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csr.h 2025-08-26T20:45:21.9878496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csr_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.9882373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csr_native.h 2025-08-26T20:45:21.9886345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csr_ops.h 2025-08-26T20:45:21.9890071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_native.h 2025-08-26T20:45:21.9893742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_ops.h 2025-08-26T20:45:21.9897574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace.h 2025-08-26T20:45:21.9900997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_backward.h 2025-08-26T20:45:21.9904894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.9908735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_backward_native.h 2025-08-26T20:45:21.9912493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_backward_ops.h 2025-08-26T20:45:21.9916446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.9920520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_cpu_dispatch.h 2025-08-26T20:45:21.9924375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_cuda_dispatch.h 2025-08-26T20:45:21.9928104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_native.h 2025-08-26T20:45:21.9931859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_ops.h 2025-08-26T20:45:21.9935555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose.h 2025-08-26T20:45:21.9939473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.9943317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.9947267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_copy.h 2025-08-26T20:45:21.9951410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:21.9955678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:21.9959955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_copy_native.h 2025-08-26T20:45:21.9963756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_copy_ops.h 2025-08-26T20:45:21.9967582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_native.h 2025-08-26T20:45:21.9971452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_ops.h 2025-08-26T20:45:21.9975595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapezoid.h 2025-08-26T20:45:21.9979411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapezoid_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.9983145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapezoid_native.h 2025-08-26T20:45:21.9987111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapezoid_ops.h 2025-08-26T20:45:21.9990849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapz.h 2025-08-26T20:45:21.9994681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapz_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:21.9998535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapz_native.h 2025-08-26T20:45:22.0002127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapz_ops.h 2025-08-26T20:45:22.0005892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve.h 2025-08-26T20:45:22.0010388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.0014130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve_cpu_dispatch.h 2025-08-26T20:45:22.0018124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve_cuda_dispatch.h 2025-08-26T20:45:22.0022190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve_meta.h 2025-08-26T20:45:22.0026502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve_meta_dispatch.h 2025-08-26T20:45:22.0030439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve_native.h 2025-08-26T20:45:22.0034493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve_ops.h 2025-08-26T20:45:22.0038306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril.h 2025-08-26T20:45:22.0042173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.0045927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_cpu_dispatch.h 2025-08-26T20:45:22.0049682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_cuda_dispatch.h 2025-08-26T20:45:22.0053758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_indices.h 2025-08-26T20:45:22.0057717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_indices_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0061936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_indices_cpu_dispatch.h 2025-08-26T20:45:22.0065986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_indices_cuda_dispatch.h 2025-08-26T20:45:22.0069895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_indices_native.h 2025-08-26T20:45:22.0073842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_indices_ops.h 2025-08-26T20:45:22.0077799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_meta.h 2025-08-26T20:45:22.0081462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_meta_dispatch.h 2025-08-26T20:45:22.0085469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_native.h 2025-08-26T20:45:22.0089246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_ops.h 2025-08-26T20:45:22.0092786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triplet_margin_loss.h 2025-08-26T20:45:22.0097483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triplet_margin_loss_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.0130806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triplet_margin_loss_native.h 2025-08-26T20:45:22.0134762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triplet_margin_loss_ops.h 2025-08-26T20:45:22.0138861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu.h 2025-08-26T20:45:22.0142767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.0146605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_cpu_dispatch.h 2025-08-26T20:45:22.0150551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_cuda_dispatch.h 2025-08-26T20:45:22.0154304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_indices.h 2025-08-26T20:45:22.0158263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_indices_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0161985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_indices_cpu_dispatch.h 2025-08-26T20:45:22.0165886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_indices_cuda_dispatch.h 2025-08-26T20:45:22.0169959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_indices_native.h 2025-08-26T20:45:22.0173892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_indices_ops.h 2025-08-26T20:45:22.0177891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_meta.h 2025-08-26T20:45:22.0181622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_meta_dispatch.h 2025-08-26T20:45:22.0185469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_native.h 2025-08-26T20:45:22.0189187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_ops.h 2025-08-26T20:45:22.0192848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\true_divide.h 2025-08-26T20:45:22.0197086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\true_divide_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.0201869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\true_divide_native.h 2025-08-26T20:45:22.0205678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\true_divide_ops.h 2025-08-26T20:45:22.0209579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc.h 2025-08-26T20:45:22.0213474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.0217783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc_cpu_dispatch.h 2025-08-26T20:45:22.0221683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc_cuda_dispatch.h 2025-08-26T20:45:22.0225634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc_meta.h 2025-08-26T20:45:22.0229598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc_meta_dispatch.h 2025-08-26T20:45:22.0233474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc_native.h 2025-08-26T20:45:22.0237420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc_ops.h 2025-08-26T20:45:22.0241267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\type_as.h 2025-08-26T20:45:22.0244991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\type_as_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.0248846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\type_as_native.h 2025-08-26T20:45:22.0252668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\type_as_ops.h 2025-08-26T20:45:22.0256844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0261307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_copy.h 2025-08-26T20:45:22.0264944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.0268829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0272612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_copy_native.h 2025-08-26T20:45:22.0276750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_copy_ops.h 2025-08-26T20:45:22.0280716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_native.h 2025-08-26T20:45:22.0284018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_ops.h 2025-08-26T20:45:22.0287618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind.h 2025-08-26T20:45:22.0291618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0295288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.0299283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_copy.h 2025-08-26T20:45:22.0303335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.0307268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0311950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_copy_native.h 2025-08-26T20:45:22.0315763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_copy_ops.h 2025-08-26T20:45:22.0319542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_native.h 2025-08-26T20:45:22.0323359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_ops.h 2025-08-26T20:45:22.0327014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten.h 2025-08-26T20:45:22.0330861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.0334620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten_dense_tensors.h 2025-08-26T20:45:22.0338614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten_dense_tensors_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.0342957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten_dense_tensors_native.h 2025-08-26T20:45:22.0347297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten_dense_tensors_ops.h 2025-08-26T20:45:22.0351771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten_native.h 2025-08-26T20:45:22.0356086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten_ops.h 2025-08-26T20:45:22.0360117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold.h 2025-08-26T20:45:22.0363910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_backward.h 2025-08-26T20:45:22.0367658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0371638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_backward_cpu_dispatch.h 2025-08-26T20:45:22.0375673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_backward_cuda_dispatch.h 2025-08-26T20:45:22.0379653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_backward_native.h 2025-08-26T20:45:22.0383441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_backward_ops.h 2025-08-26T20:45:22.0387203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_copy.h 2025-08-26T20:45:22.0391069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.0394990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0398951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_copy_native.h 2025-08-26T20:45:22.0402744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_copy_ops.h 2025-08-26T20:45:22.0406790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_cpu_dispatch.h 2025-08-26T20:45:22.0410542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_cuda_dispatch.h 2025-08-26T20:45:22.0414695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_meta_dispatch.h 2025-08-26T20:45:22.0418905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_native.h 2025-08-26T20:45:22.0422962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_ops.h 2025-08-26T20:45:22.0427765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\uniform.h 2025-08-26T20:45:22.0431763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\uniform_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0435921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\uniform_cpu_dispatch.h 2025-08-26T20:45:22.0440005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\uniform_cuda_dispatch.h 2025-08-26T20:45:22.0443769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\uniform_meta_dispatch.h 2025-08-26T20:45:22.0447658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\uniform_native.h 2025-08-26T20:45:22.0452137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\uniform_ops.h 2025-08-26T20:45:22.0456574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_consecutive.h 2025-08-26T20:45:22.0461011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_consecutive_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0465457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_consecutive_cpu_dispatch.h 2025-08-26T20:45:22.0471701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_consecutive_cuda_dispatch.h 2025-08-26T20:45:22.0476480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_consecutive_native.h 2025-08-26T20:45:22.0480844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_consecutive_ops.h 2025-08-26T20:45:22.0484637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim.h 2025-08-26T20:45:22.0489302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0493401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_consecutive.h 2025-08-26T20:45:22.0497642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_consecutive_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0501495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_consecutive_cpu_dispatch.h 2025-08-26T20:45:22.0505778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_consecutive_cuda_dispatch.h 2025-08-26T20:45:22.0509676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_consecutive_native.h 2025-08-26T20:45:22.0514278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_consecutive_ops.h 2025-08-26T20:45:22.0518087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_cpu_dispatch.h 2025-08-26T20:45:22.0522103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_cuda_dispatch.h 2025-08-26T20:45:22.0525816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_native.h 2025-08-26T20:45:22.0529856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_ops.h 2025-08-26T20:45:22.0534637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_chunk.h 2025-08-26T20:45:22.0538544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_chunk_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.0542243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_chunk_native.h 2025-08-26T20:45:22.0546083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_chunk_ops.h 2025-08-26T20:45:22.0549788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split.h 2025-08-26T20:45:22.0553746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0557806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split_native.h 2025-08-26T20:45:22.0561528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split_ops.h 2025-08-26T20:45:22.0565311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split_with_sizes.h 2025-08-26T20:45:22.0569318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split_with_sizes_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0573034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split_with_sizes_native.h 2025-08-26T20:45:22.0576997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split_with_sizes_ops.h 2025-08-26T20:45:22.0580571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze.h 2025-08-26T20:45:22.0584324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0587838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_copy.h 2025-08-26T20:45:22.0591830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.0595713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0599627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_copy_native.h 2025-08-26T20:45:22.0603311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_copy_ops.h 2025-08-26T20:45:22.0607392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_native.h 2025-08-26T20:45:22.0611391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_ops.h 2025-08-26T20:45:22.0615604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d.h 2025-08-26T20:45:22.0619742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward.h 2025-08-26T20:45:22.0623672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.0628168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward_cpu_dispatch.h 2025-08-26T20:45:22.0632783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward_cuda_dispatch.h 2025-08-26T20:45:22.0636656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward_meta.h 2025-08-26T20:45:22.0640720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward_meta_dispatch.h 2025-08-26T20:45:22.0644608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward_native.h 2025-08-26T20:45:22.0648429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward_ops.h 2025-08-26T20:45:22.0652589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.0656561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.0660491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_cpu_dispatch.h 2025-08-26T20:45:22.0665253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_cuda_dispatch.h 2025-08-26T20:45:22.0669288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_meta.h 2025-08-26T20:45:22.0673404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_meta_dispatch.h 2025-08-26T20:45:22.0677164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_native.h 2025-08-26T20:45:22.0680924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_ops.h 2025-08-26T20:45:22.0685087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d.h 2025-08-26T20:45:22.0689354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward.h 2025-08-26T20:45:22.0693359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.0697194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward_cpu_dispatch.h 2025-08-26T20:45:22.0701139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward_cuda_dispatch.h 2025-08-26T20:45:22.0704993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward_meta.h 2025-08-26T20:45:22.0709310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward_meta_dispatch.h 2025-08-26T20:45:22.0713450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward_native.h 2025-08-26T20:45:22.0717255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward_ops.h 2025-08-26T20:45:22.0721830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.0726382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0730431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.0734741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_cpu_dispatch.h 2025-08-26T20:45:22.0739619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_cuda_dispatch.h 2025-08-26T20:45:22.0744071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_meta.h 2025-08-26T20:45:22.0748534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_meta_dispatch.h 2025-08-26T20:45:22.0752531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_native.h 2025-08-26T20:45:22.0756309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_ops.h 2025-08-26T20:45:22.0760941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d.h 2025-08-26T20:45:22.0765169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward.h 2025-08-26T20:45:22.0769413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.0773396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward_cpu_dispatch.h 2025-08-26T20:45:22.0778362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward_cuda_dispatch.h 2025-08-26T20:45:22.0782353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward_meta.h 2025-08-26T20:45:22.0787069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward_meta_dispatch.h 2025-08-26T20:45:22.0790996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward_native.h 2025-08-26T20:45:22.0795060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward_ops.h 2025-08-26T20:45:22.0799210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.0803442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.0807362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_cpu_dispatch.h 2025-08-26T20:45:22.0811194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_cuda_dispatch.h 2025-08-26T20:45:22.0815305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_meta.h 2025-08-26T20:45:22.0820017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_meta_dispatch.h 2025-08-26T20:45:22.0824920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_native.h 2025-08-26T20:45:22.0829435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_ops.h 2025-08-26T20:45:22.0834287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d.h 2025-08-26T20:45:22.0839803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward.h 2025-08-26T20:45:22.0845697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.0849997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward_cpu_dispatch.h 2025-08-26T20:45:22.0854995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward_cuda_dispatch.h 2025-08-26T20:45:22.0859900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward_meta.h 2025-08-26T20:45:22.0864487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward_meta_dispatch.h 2025-08-26T20:45:22.0869168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward_native.h 2025-08-26T20:45:22.0874211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward_ops.h 2025-08-26T20:45:22.0878799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.0882894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.0887517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_cpu_dispatch.h 2025-08-26T20:45:22.0891897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_cuda_dispatch.h 2025-08-26T20:45:22.0895847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_meta.h 2025-08-26T20:45:22.0899874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_meta_dispatch.h 2025-08-26T20:45:22.0904050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_native.h 2025-08-26T20:45:22.0908092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_ops.h 2025-08-26T20:45:22.0913373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d.h 2025-08-26T20:45:22.0918734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward.h 2025-08-26T20:45:22.0923155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.0927498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward_cpu_dispatch.h 2025-08-26T20:45:22.0931920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward_cuda_dispatch.h 2025-08-26T20:45:22.0935711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward_meta.h 2025-08-26T20:45:22.0939743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward_meta_dispatch.h 2025-08-26T20:45:22.0943833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward_native.h 2025-08-26T20:45:22.0947656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward_ops.h 2025-08-26T20:45:22.0952499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.0956387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.0960582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.0964409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_cpu_dispatch.h 2025-08-26T20:45:22.0968172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_cuda_dispatch.h 2025-08-26T20:45:22.0971904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_meta.h 2025-08-26T20:45:22.0975854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_meta_dispatch.h 2025-08-26T20:45:22.0980234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_native.h 2025-08-26T20:45:22.0984655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_ops.h 2025-08-26T20:45:22.0988402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d.h 2025-08-26T20:45:22.0992465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward.h 2025-08-26T20:45:22.0996937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.1000716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward_cpu_dispatch.h 2025-08-26T20:45:22.1005299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward_cuda_dispatch.h 2025-08-26T20:45:22.1009900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward_meta.h 2025-08-26T20:45:22.1013786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward_meta_dispatch.h 2025-08-26T20:45:22.1019141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward_native.h 2025-08-26T20:45:22.1023642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward_ops.h 2025-08-26T20:45:22.1028492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.1033299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.1037087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_cpu_dispatch.h 2025-08-26T20:45:22.1040838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_cuda_dispatch.h 2025-08-26T20:45:22.1044497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_meta.h 2025-08-26T20:45:22.1048361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_meta_dispatch.h 2025-08-26T20:45:22.1052215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_native.h 2025-08-26T20:45:22.1056695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_ops.h 2025-08-26T20:45:22.1062764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d.h 2025-08-26T20:45:22.1067502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward.h 2025-08-26T20:45:22.1071658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.1076102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward_cpu_dispatch.h 2025-08-26T20:45:22.1090181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward_cuda_dispatch.h 2025-08-26T20:45:22.1095456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward_meta.h 2025-08-26T20:45:22.1100353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward_meta_dispatch.h 2025-08-26T20:45:22.1104135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward_native.h 2025-08-26T20:45:22.1108372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward_ops.h 2025-08-26T20:45:22.1113237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.1117729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.1121954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_cpu_dispatch.h 2025-08-26T20:45:22.1125803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_cuda_dispatch.h 2025-08-26T20:45:22.1130427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_meta.h 2025-08-26T20:45:22.1134806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_meta_dispatch.h 2025-08-26T20:45:22.1138984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_native.h 2025-08-26T20:45:22.1144124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_ops.h 2025-08-26T20:45:22.1148046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values.h 2025-08-26T20:45:22.1153270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.1156959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_copy.h 2025-08-26T20:45:22.1160923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.1164816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.1168639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_copy_native.h 2025-08-26T20:45:22.1172450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_copy_ops.h 2025-08-26T20:45:22.1176224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_native.h 2025-08-26T20:45:22.1180912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_ops.h 2025-08-26T20:45:22.1185259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\value_selecting_reduction_backward.h 2025-08-26T20:45:22.1189750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\value_selecting_reduction_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.1193782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\value_selecting_reduction_backward_native.h 2025-08-26T20:45:22.1198112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\value_selecting_reduction_backward_ops.h 2025-08-26T20:45:22.1201790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vander.h 2025-08-26T20:45:22.1235409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vander_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.1239367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vander_native.h 2025-08-26T20:45:22.1243332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vander_ops.h 2025-08-26T20:45:22.1247287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var.h 2025-08-26T20:45:22.1251090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.1255373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_cpu_dispatch.h 2025-08-26T20:45:22.1260253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_cuda_dispatch.h 2025-08-26T20:45:22.1264909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_mean.h 2025-08-26T20:45:22.1268815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_mean_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.1274412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_mean_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.1278564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_mean_cpu_dispatch.h 2025-08-26T20:45:22.1282741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_mean_cuda_dispatch.h 2025-08-26T20:45:22.1288247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_mean_native.h 2025-08-26T20:45:22.1292838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_mean_ops.h 2025-08-26T20:45:22.1296703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_native.h 2025-08-26T20:45:22.1300525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_ops.h 2025-08-26T20:45:22.1304137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vdot.h 2025-08-26T20:45:22.1308402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vdot_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.1312303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vdot_cpu_dispatch.h 2025-08-26T20:45:22.1316032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vdot_cuda_dispatch.h 2025-08-26T20:45:22.1320246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vdot_native.h 2025-08-26T20:45:22.1324568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vdot_ops.h 2025-08-26T20:45:22.1328462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view.h 2025-08-26T20:45:22.1332306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as.h 2025-08-26T20:45:22.1337189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex.h 2025-08-26T20:45:22.1342328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_copy.h 2025-08-26T20:45:22.1346431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.1350205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.1356147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_copy_native.h 2025-08-26T20:45:22.1359910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_copy_ops.h 2025-08-26T20:45:22.1363747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_cpu_dispatch.h 2025-08-26T20:45:22.1368001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_cuda_dispatch.h 2025-08-26T20:45:22.1371851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_meta_dispatch.h 2025-08-26T20:45:22.1375720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_native.h 2025-08-26T20:45:22.1379610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_ops.h 2025-08-26T20:45:22.1383525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.1387673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_native.h 2025-08-26T20:45:22.1391866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_ops.h 2025-08-26T20:45:22.1395957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real.h 2025-08-26T20:45:22.1399716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_copy.h 2025-08-26T20:45:22.1403810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.1411001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.1415111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_copy_native.h 2025-08-26T20:45:22.1419459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_copy_ops.h 2025-08-26T20:45:22.1423386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_cpu_dispatch.h 2025-08-26T20:45:22.1427347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_cuda_dispatch.h 2025-08-26T20:45:22.1431718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_meta_dispatch.h 2025-08-26T20:45:22.1435840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_native.h 2025-08-26T20:45:22.1439541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_ops.h 2025-08-26T20:45:22.1443293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.1446755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_copy.h 2025-08-26T20:45:22.1450609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.1454203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.1457883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_copy_native.h 2025-08-26T20:45:22.1461920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_copy_ops.h 2025-08-26T20:45:22.1465710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_cpu_dispatch.h 2025-08-26T20:45:22.1469411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_cuda_dispatch.h 2025-08-26T20:45:22.1473135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_meta_dispatch.h 2025-08-26T20:45:22.1477382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_native.h 2025-08-26T20:45:22.1481330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_ops.h 2025-08-26T20:45:22.1484864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vsplit.h 2025-08-26T20:45:22.1488471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vsplit_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.1492305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vsplit_native.h 2025-08-26T20:45:22.1495985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vsplit_ops.h 2025-08-26T20:45:22.1500624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vstack.h 2025-08-26T20:45:22.1504429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vstack_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.1508267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vstack_native.h 2025-08-26T20:45:22.1512002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vstack_ops.h 2025-08-26T20:45:22.1516019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\where.h 2025-08-26T20:45:22.1519862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\where_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.1523666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\where_cpu_dispatch.h 2025-08-26T20:45:22.1527297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\where_cuda_dispatch.h 2025-08-26T20:45:22.1531207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\where_native.h 2025-08-26T20:45:22.1534987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\where_ops.h 2025-08-26T20:45:22.1538951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy.h 2025-08-26T20:45:22.1542701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.1547638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.1551791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_cpu_dispatch.h 2025-08-26T20:45:22.1556102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_cuda_dispatch.h 2025-08-26T20:45:22.1559871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_meta.h 2025-08-26T20:45:22.1564337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_meta_dispatch.h 2025-08-26T20:45:22.1568101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_native.h 2025-08-26T20:45:22.1571799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_ops.h 2025-08-26T20:45:22.1575451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xor.h 2025-08-26T20:45:22.1579282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xor_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.1583202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xor_native.h 2025-08-26T20:45:22.1586948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xor_ops.h 2025-08-26T20:45:22.1591129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zero.h 2025-08-26T20:45:22.1594385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros.h 2025-08-26T20:45:22.1598089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.1601790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_like.h 2025-08-26T20:45:22.1605631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_like_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.1609586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_like_compositeimplicitautogradnestedtensor_dispatch.h 2025-08-26T20:45:22.1614937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_like_native.h 2025-08-26T20:45:22.1618896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_like_ops.h 2025-08-26T20:45:22.1622710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_native.h 2025-08-26T20:45:22.1626564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_ops.h 2025-08-26T20:45:22.1630489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zero_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.1634296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zero_cpu_dispatch.h 2025-08-26T20:45:22.1639379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zero_cuda_dispatch.h 2025-08-26T20:45:22.1644675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zero_meta_dispatch.h 2025-08-26T20:45:22.1649820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zero_native.h 2025-08-26T20:45:22.1655683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zero_ops.h 2025-08-26T20:45:22.1659269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d.h 2025-08-26T20:45:22.1664396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_backward.h 2025-08-26T20:45:22.1669852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.1675096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_backward_cpu_dispatch.h 2025-08-26T20:45:22.1680756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_backward_cuda_dispatch.h 2025-08-26T20:45:22.1685904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_backward_native.h 2025-08-26T20:45:22.1691233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_backward_ops.h 2025-08-26T20:45:22.1695631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.1702558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_cpu_dispatch.h 2025-08-26T20:45:22.1706769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_cuda_dispatch.h 2025-08-26T20:45:22.1710899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_native.h 2025-08-26T20:45:22.1714884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_ops.h 2025-08-26T20:45:22.1719715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d.h 2025-08-26T20:45:22.1725091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_backward.h 2025-08-26T20:45:22.1728958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.1733911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_backward_cpu_dispatch.h 2025-08-26T20:45:22.1738032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_backward_cuda_dispatch.h 2025-08-26T20:45:22.1742340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_backward_native.h 2025-08-26T20:45:22.1746057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_backward_ops.h 2025-08-26T20:45:22.1750555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.1754718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_cpu_dispatch.h 2025-08-26T20:45:22.1758720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_cuda_dispatch.h 2025-08-26T20:45:22.1762712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_native.h 2025-08-26T20:45:22.1767174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_ops.h 2025-08-26T20:45:22.1771372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation.h 2025-08-26T20:45:22.1775187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.1780245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation_cpu_dispatch.h 2025-08-26T20:45:22.1784785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation_cuda_dispatch.h 2025-08-26T20:45:22.1788866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation_meta.h 2025-08-26T20:45:22.1793313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation_meta_dispatch.h 2025-08-26T20:45:22.1798053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation_native.h 2025-08-26T20:45:22.1802335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation_ops.h 2025-08-26T20:45:22.1806482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_batch_dim.h 2025-08-26T20:45:22.1811966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_batch_dim_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.1815823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_batch_dim_native.h 2025-08-26T20:45:22.1819955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_batch_dim_ops.h 2025-08-26T20:45:22.1823955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_relu.h 2025-08-26T20:45:22.1844939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_relu_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.1845219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_relu_cpu_dispatch.h 2025-08-26T20:45:22.1845475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_relu_meta_dispatch.h 2025-08-26T20:45:22.1845715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_relu_native.h 2025-08-26T20:45:22.1847555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_relu_ops.h 2025-08-26T20:45:22.1851536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_aminmax.h 2025-08-26T20:45:22.1856781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_aminmax_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.1859525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_aminmax_cpu_dispatch.h 2025-08-26T20:45:22.1863632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_aminmax_cuda_dispatch.h 2025-08-26T20:45:22.1868778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_aminmax_native.h 2025-08-26T20:45:22.1871541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_aminmax_ops.h 2025-08-26T20:45:22.1876254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale.h 2025-08-26T20:45:22.1880752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.1884588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_cpu_dispatch.h 2025-08-26T20:45:22.1888478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_cuda_dispatch.h 2025-08-26T20:45:22.1892471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_native.h 2025-08-26T20:45:22.1897078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_ops.h 2025-08-26T20:45:22.1901007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_update_scale.h 2025-08-26T20:45:22.1905237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_update_scale_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.1909165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_update_scale_cpu_dispatch.h 2025-08-26T20:45:22.1913282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_update_scale_cuda_dispatch.h 2025-08-26T20:45:22.1917338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_update_scale_meta_dispatch.h 2025-08-26T20:45:22.1921443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_update_scale_native.h 2025-08-26T20:45:22.1925460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_update_scale_ops.h 2025-08-26T20:45:22.1929656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_async.h 2025-08-26T20:45:22.1933575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_async_cpu_dispatch.h 2025-08-26T20:45:22.1937294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_async_cuda_dispatch.h 2025-08-26T20:45:22.1941107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_async_native.h 2025-08-26T20:45:22.1945611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_async_ops.h 2025-08-26T20:45:22.1949568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_scalar.h 2025-08-26T20:45:22.1953604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_scalar_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.1957373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_scalar_native.h 2025-08-26T20:45:22.1961469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_scalar_ops.h 2025-08-26T20:45:22.1965363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_tensor_metadata.h 2025-08-26T20:45:22.1969407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_tensor_metadata_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.1973554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_tensor_metadata_meta_dispatch.h 2025-08-26T20:45:22.1977586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_tensor_metadata_native.h 2025-08-26T20:45:22.1982723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_tensor_metadata_ops.h 2025-08-26T20:45:22.1985833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_full_precision.h 2025-08-26T20:45:22.1990237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_full_precision_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.1994315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_full_precision_native.h 2025-08-26T20:45:22.1998274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_full_precision_ops.h 2025-08-26T20:45:22.2002366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_reduced_precision.h 2025-08-26T20:45:22.2006591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_reduced_precision_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.2011657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_reduced_precision_native.h 2025-08-26T20:45:22.2014562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_reduced_precision_ops.h 2025-08-26T20:45:22.2018979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_backward.h 2025-08-26T20:45:22.2023464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.2027039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_backward_native.h 2025-08-26T20:45:22.2030996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_backward_ops.h 2025-08-26T20:45:22.2034904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index.h 2025-08-26T20:45:22.2038666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index_backward.h 2025-08-26T20:45:22.2044185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.2048420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index_backward_native.h 2025-08-26T20:45:22.2052487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index_backward_ops.h 2025-08-26T20:45:22.2084979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.2088862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index_native.h 2025-08-26T20:45:22.2092985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index_ops.h 2025-08-26T20:45:22.2097925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_no_update.h 2025-08-26T20:45:22.2101208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_no_update_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.2105506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_no_update_native.h 2025-08-26T20:45:22.2109752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_no_update_ops.h 2025-08-26T20:45:22.2113643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_with_update.h 2025-08-26T20:45:22.2117972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_with_update_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.2122981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_with_update_cpu_dispatch.h 2025-08-26T20:45:22.2127232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_with_update_cuda_dispatch.h 2025-08-26T20:45:22.2132138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_with_update_native.h 2025-08-26T20:45:22.2135445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_with_update_ops.h 2025-08-26T20:45:22.2139272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Byte.h 2025-08-26T20:45:22.2144141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Byte_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.2146982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Byte_native.h 2025-08-26T20:45:22.2150944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Byte_ops.h 2025-08-26T20:45:22.2155768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Char.h 2025-08-26T20:45:22.2159165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Char_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.2163534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Char_native.h 2025-08-26T20:45:22.2167552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Char_ops.h 2025-08-26T20:45:22.2171523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Double.h 2025-08-26T20:45:22.2176630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Double_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.2180892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Double_native.h 2025-08-26T20:45:22.2185077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Double_ops.h 2025-08-26T20:45:22.2188872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Float.h 2025-08-26T20:45:22.2192956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Float_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.2197000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Float_native.h 2025-08-26T20:45:22.2201806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Float_ops.h 2025-08-26T20:45:22.2204751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Half.h 2025-08-26T20:45:22.2209539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Half_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.2213515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Half_native.h 2025-08-26T20:45:22.2217393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Half_ops.h 2025-08-26T20:45:22.2221750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Int.h 2025-08-26T20:45:22.2226610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Int_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.2230901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Int_native.h 2025-08-26T20:45:22.2234862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Int_ops.h 2025-08-26T20:45:22.2238831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Long.h 2025-08-26T20:45:22.2243992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Long_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.2248067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Long_native.h 2025-08-26T20:45:22.2252105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Long_ops.h 2025-08-26T20:45:22.2255978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Short.h 2025-08-26T20:45:22.2260037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Short_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.2264238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Short_native.h 2025-08-26T20:45:22.2267843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Short_ops.h 2025-08-26T20:45:22.2272364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_backward.h 2025-08-26T20:45:22.2276300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.2280014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_backward_cpu_dispatch.h 2025-08-26T20:45:22.2284095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_backward_cuda_dispatch.h 2025-08-26T20:45:22.2288368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_backward_native.h 2025-08-26T20:45:22.2292943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_backward_ops.h 2025-08-26T20:45:22.2296870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_forward.h 2025-08-26T20:45:22.2301225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_forward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.2306053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_forward_cpu_dispatch.h 2025-08-26T20:45:22.2309148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_forward_cuda_dispatch.h 2025-08-26T20:45:22.2312964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_forward_native.h 2025-08-26T20:45:22.2317839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_forward_ops.h 2025-08-26T20:45:22.2321014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cholesky_solve_helper.h 2025-08-26T20:45:22.2325491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cholesky_solve_helper_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.2329666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cholesky_solve_helper_cpu_dispatch.h 2025-08-26T20:45:22.2333403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cholesky_solve_helper_cuda_dispatch.h 2025-08-26T20:45:22.2369420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cholesky_solve_helper_native.h 2025-08-26T20:45:22.2373326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cholesky_solve_helper_ops.h 2025-08-26T20:45:22.2377319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_choose_qparams_per_tensor.h 2025-08-26T20:45:22.2381441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_choose_qparams_per_tensor_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.2385317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_choose_qparams_per_tensor_native.h 2025-08-26T20:45:22.2389139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_choose_qparams_per_tensor_ops.h 2025-08-26T20:45:22.2393791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_chunk_cat.h 2025-08-26T20:45:22.2397715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_chunk_cat_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.2401590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_chunk_cat_cuda_dispatch.h 2025-08-26T20:45:22.2405707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_chunk_cat_native.h 2025-08-26T20:45:22.2409460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_chunk_cat_ops.h 2025-08-26T20:45:22.2413468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesce.h 2025-08-26T20:45:22.2417158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesced.h 2025-08-26T20:45:22.2421331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesced_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.2425741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesced_meta_dispatch.h 2025-08-26T20:45:22.2429776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesced_native.h 2025-08-26T20:45:22.2433629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesced_ops.h 2025-08-26T20:45:22.2437829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesce_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.2442001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesce_native.h 2025-08-26T20:45:22.2446047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesce_ops.h 2025-08-26T20:45:22.2450352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_compute_linear_combination.h 2025-08-26T20:45:22.2454359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_compute_linear_combination_cpu_dispatch.h 2025-08-26T20:45:22.2458294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_compute_linear_combination_cuda_dispatch.h 2025-08-26T20:45:22.2462250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_compute_linear_combination_native.h 2025-08-26T20:45:22.2466230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_compute_linear_combination_ops.h 2025-08-26T20:45:22.2470431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj.h 2025-08-26T20:45:22.2474048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.2477633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_copy.h 2025-08-26T20:45:22.2481718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.2485825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.2490162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_copy_native.h 2025-08-26T20:45:22.2493952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_copy_ops.h 2025-08-26T20:45:22.2497865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_native.h 2025-08-26T20:45:22.2501574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_ops.h 2025-08-26T20:45:22.2505842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_physical.h 2025-08-26T20:45:22.2509901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_physical_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.2513661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_physical_native.h 2025-08-26T20:45:22.2517743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_physical_ops.h 2025-08-26T20:45:22.2521695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr.h 2025-08-26T20:45:22.2525664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.2529890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_cpu_dispatch.h 2025-08-26T20:45:22.2533982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_cuda_dispatch.h 2025-08-26T20:45:22.2538018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_meta.h 2025-08-26T20:45:22.2542132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_meta_dispatch.h 2025-08-26T20:45:22.2546340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_native.h 2025-08-26T20:45:22.2550450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_ops.h 2025-08-26T20:45:22.2554456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo.h 2025-08-26T20:45:22.2558776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.2562996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_cpu_dispatch.h 2025-08-26T20:45:22.2567159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_cuda_dispatch.h 2025-08-26T20:45:22.2571055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_meta.h 2025-08-26T20:45:22.2575187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_meta_dispatch.h 2025-08-26T20:45:22.2579370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_native.h 2025-08-26T20:45:22.2583378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_ops.h 2025-08-26T20:45:22.2587499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack.h 2025-08-26T20:45:22.2591395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack_cuda_dispatch.h 2025-08-26T20:45:22.2595250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu.h 2025-08-26T20:45:22.2599607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu_cpu_dispatch.h 2025-08-26T20:45:22.2604323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu_native.h 2025-08-26T20:45:22.2608166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu_ops.h 2025-08-26T20:45:22.2612070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack_native.h 2025-08-26T20:45:22.2616023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack_ops.h 2025-08-26T20:45:22.2620409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution.h 2025-08-26T20:45:22.2624615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.2628868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.2632756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_double_backward.h 2025-08-26T20:45:22.2636805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_double_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.2642007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_double_backward_native.h 2025-08-26T20:45:22.2645246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_double_backward_ops.h 2025-08-26T20:45:22.2649338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_mode.h 2025-08-26T20:45:22.2653954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_mode_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.2657927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_mode_native.h 2025-08-26T20:45:22.2662058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_mode_ops.h 2025-08-26T20:45:22.2666202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_native.h 2025-08-26T20:45:22.2670432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_ops.h 2025-08-26T20:45:22.2674264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conv_depthwise2d.h 2025-08-26T20:45:22.2679081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conv_depthwise2d_cuda_dispatch.h 2025-08-26T20:45:22.2683301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conv_depthwise2d_native.h 2025-08-26T20:45:22.2688431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conv_depthwise2d_ops.h 2025-08-26T20:45:22.2691941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from.h 2025-08-26T20:45:22.2695886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from_and_resize.h 2025-08-26T20:45:22.2700150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from_and_resize_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.2703994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from_and_resize_native.h 2025-08-26T20:45:22.2708318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from_and_resize_ops.h 2025-08-26T20:45:22.2713239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.2717796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from_native.h 2025-08-26T20:45:22.2721647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from_ops.h 2025-08-26T20:45:22.2726368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_compress.h 2025-08-26T20:45:22.2730485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_compress_cuda_dispatch.h 2025-08-26T20:45:22.2734500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_compress_native.h 2025-08-26T20:45:22.2738661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_compress_ops.h 2025-08-26T20:45:22.2742744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm.h 2025-08-26T20:45:22.2746874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm_cuda_dispatch.h 2025-08-26T20:45:22.2750790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm_native.h 2025-08-26T20:45:22.2754763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm_ops.h 2025-08-26T20:45:22.2758861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm_search.h 2025-08-26T20:45:22.2762830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm_search_cuda_dispatch.h 2025-08-26T20:45:22.2767618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm_search_native.h 2025-08-26T20:45:22.2771663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm_search_ops.h 2025-08-26T20:45:22.2775628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss.h 2025-08-26T20:45:22.2779655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_backward.h 2025-08-26T20:45:22.2783609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.2787406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_backward_cpu_dispatch.h 2025-08-26T20:45:22.2791422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_backward_cuda_dispatch.h 2025-08-26T20:45:22.2795529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_backward_native.h 2025-08-26T20:45:22.2799975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_backward_ops.h 2025-08-26T20:45:22.2804045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.2808027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_cpu_dispatch.h 2025-08-26T20:45:22.2812070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_cuda_dispatch.h 2025-08-26T20:45:22.2815912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_meta_dispatch.h 2025-08-26T20:45:22.2820064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_native.h 2025-08-26T20:45:22.2824081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_ops.h 2025-08-26T20:45:22.2828825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_backward.h 2025-08-26T20:45:22.2831706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_backward_cuda_dispatch.h 2025-08-26T20:45:22.2836164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_backward_native.h 2025-08-26T20:45:22.2840278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_backward_ops.h 2025-08-26T20:45:22.2844020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_forward.h 2025-08-26T20:45:22.2848268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_forward_cuda_dispatch.h 2025-08-26T20:45:22.2852155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_forward_native.h 2025-08-26T20:45:22.2856049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_forward_ops.h 2025-08-26T20:45:22.2859957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_ctc_loss.h 2025-08-26T20:45:22.2864211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_ctc_loss_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.2869519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_ctc_loss_cuda_dispatch.h 2025-08-26T20:45:22.2872403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_ctc_loss_native.h 2025-08-26T20:45:22.2876228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_ctc_loss_ops.h 2025-08-26T20:45:22.2880400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_init_dropout_state.h 2025-08-26T20:45:22.2897819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_init_dropout_state_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.2898653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_init_dropout_state_cuda_dispatch.h 2025-08-26T20:45:22.2899359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_init_dropout_state_native.h 2025-08-26T20:45:22.2900044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_init_dropout_state_ops.h 2025-08-26T20:45:22.2902629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn.h 2025-08-26T20:45:22.2907117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_backward.h 2025-08-26T20:45:22.2911521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.2916034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_backward_cuda_dispatch.h 2025-08-26T20:45:22.2920090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_backward_native.h 2025-08-26T20:45:22.2924127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_backward_ops.h 2025-08-26T20:45:22.2929301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.2933678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_cuda_dispatch.h 2025-08-26T20:45:22.2938265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_flatten_weight.h 2025-08-26T20:45:22.2943304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_flatten_weight_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.2947748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_flatten_weight_cuda_dispatch.h 2025-08-26T20:45:22.2951691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_flatten_weight_native.h 2025-08-26T20:45:22.2955954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_flatten_weight_ops.h 2025-08-26T20:45:22.2959882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_native.h 2025-08-26T20:45:22.2963847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_ops.h 2025-08-26T20:45:22.2967764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_clear_plan_cache.h 2025-08-26T20:45:22.2971830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_clear_plan_cache_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.2975817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_clear_plan_cache_native.h 2025-08-26T20:45:22.2979840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_clear_plan_cache_ops.h 2025-08-26T20:45:22.2983816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_max_size.h 2025-08-26T20:45:22.2987914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_max_size_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.2991809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_max_size_native.h 2025-08-26T20:45:22.2995662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_max_size_ops.h 2025-08-26T20:45:22.2999532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_size.h 2025-08-26T20:45:22.3004058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_size_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.3008080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_size_native.h 2025-08-26T20:45:22.3012371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_size_ops.h 2025-08-26T20:45:22.3016340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_set_plan_cache_max_size.h 2025-08-26T20:45:22.3020338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_set_plan_cache_max_size_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.3024512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_set_plan_cache_max_size_native.h 2025-08-26T20:45:22.3028468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_set_plan_cache_max_size_ops.h 2025-08-26T20:45:22.3032256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummax_helper.h 2025-08-26T20:45:22.3036327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummax_helper_cpu_dispatch.h 2025-08-26T20:45:22.3040135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummax_helper_cuda_dispatch.h 2025-08-26T20:45:22.3043988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummax_helper_native.h 2025-08-26T20:45:22.3047870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummax_helper_ops.h 2025-08-26T20:45:22.3052124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummin_helper.h 2025-08-26T20:45:22.3055982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummin_helper_cpu_dispatch.h 2025-08-26T20:45:22.3059933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummin_helper_cuda_dispatch.h 2025-08-26T20:45:22.3063720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummin_helper_native.h 2025-08-26T20:45:22.3067582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummin_helper_ops.h 2025-08-26T20:45:22.3071452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_debug_has_internal_overlap.h 2025-08-26T20:45:22.3075616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_debug_has_internal_overlap_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.3079661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_debug_has_internal_overlap_native.h 2025-08-26T20:45:22.3083582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_debug_has_internal_overlap_ops.h 2025-08-26T20:45:22.3087341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dimI.h 2025-08-26T20:45:22.3091232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dimI_native.h 2025-08-26T20:45:22.3095053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dimI_ops.h 2025-08-26T20:45:22.3099017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dimV.h 2025-08-26T20:45:22.3102533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dimV_native.h 2025-08-26T20:45:22.3106522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dimV_ops.h 2025-08-26T20:45:22.3110482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dim_arange.h 2025-08-26T20:45:22.3114391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dim_arange_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.3118022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dim_arange_native.h 2025-08-26T20:45:22.3121756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dim_arange_ops.h 2025-08-26T20:45:22.3125554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dirichlet_grad.h 2025-08-26T20:45:22.3129513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dirichlet_grad_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.3133190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dirichlet_grad_cpu_dispatch.h 2025-08-26T20:45:22.3137982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dirichlet_grad_cuda_dispatch.h 2025-08-26T20:45:22.3142236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dirichlet_grad_native.h 2025-08-26T20:45:22.3146469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dirichlet_grad_ops.h 2025-08-26T20:45:22.3150322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_matmul_4bit.h 2025-08-26T20:45:22.3154162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_matmul_4bit_cpu_dispatch.h 2025-08-26T20:45:22.3157903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_matmul_4bit_native.h 2025-08-26T20:45:22.3161933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_matmul_4bit_ops.h 2025-08-26T20:45:22.3166278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_pack_4bit_weight.h 2025-08-26T20:45:22.3170413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_cpu_dispatch.h 2025-08-26T20:45:22.3174449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_native.h 2025-08-26T20:45:22.3178389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_ops.h 2025-08-26T20:45:22.3182178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficientzerotensor.h 2025-08-26T20:45:22.3187185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficientzerotensor_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.3191543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficientzerotensor_cpu_dispatch.h 2025-08-26T20:45:22.3195482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficientzerotensor_cuda_dispatch.h 2025-08-26T20:45:22.3199389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficientzerotensor_meta_dispatch.h 2025-08-26T20:45:22.3203810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficientzerotensor_native.h 2025-08-26T20:45:22.3207758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficientzerotensor_ops.h 2025-08-26T20:45:22.3211673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_backward.h 2025-08-26T20:45:22.3215647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_backward_cuda_dispatch.h 2025-08-26T20:45:22.3219690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_backward_native.h 2025-08-26T20:45:22.3223634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_backward_ops.h 2025-08-26T20:45:22.3227680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_forward.h 2025-08-26T20:45:22.3232168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_forward_cuda_dispatch.h 2025-08-26T20:45:22.3236500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_forward_native.h 2025-08-26T20:45:22.3240620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_forward_ops.h 2025-08-26T20:45:22.3244897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag.h 2025-08-26T20:45:22.3248726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_backward.h 2025-08-26T20:45:22.3252918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_backward_cpu_dispatch.h 2025-08-26T20:45:22.3256781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_backward_cuda_dispatch.h 2025-08-26T20:45:22.3260577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_backward_native.h 2025-08-26T20:45:22.3264736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_backward_ops.h 2025-08-26T20:45:22.3268754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.3272706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_cpu_dispatch.h 2025-08-26T20:45:22.3276665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_cuda_dispatch.h 2025-08-26T20:45:22.3280628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_dense_backward.h 2025-08-26T20:45:22.3285086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_dense_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.3289306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_dense_backward_cpu_dispatch.h 2025-08-26T20:45:22.3293508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_dense_backward_cuda_dispatch.h 2025-08-26T20:45:22.3298162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_dense_backward_native.h 2025-08-26T20:45:22.3302049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_dense_backward_ops.h 2025-08-26T20:45:22.3306089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_forward_only.h 2025-08-26T20:45:22.3310145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_forward_only_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.3314317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_forward_only_cpu_dispatch.h 2025-08-26T20:45:22.3318286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_forward_only_cuda_dispatch.h 2025-08-26T20:45:22.3322126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_forward_only_native.h 2025-08-26T20:45:22.3326313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_forward_only_ops.h 2025-08-26T20:45:22.3330250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_native.h 2025-08-26T20:45:22.3334849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_ops.h 2025-08-26T20:45:22.3339003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward.h 2025-08-26T20:45:22.3343448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.3347340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_cpu_dispatch.h 2025-08-26T20:45:22.3351401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_cuda_dispatch.h 2025-08-26T20:45:22.3355633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_native.h 2025-08-26T20:45:22.3359484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_ops.h 2025-08-26T20:45:22.3363363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_sparse_backward.h 2025-08-26T20:45:22.3367402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_sparse_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.3371737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_sparse_backward_native.h 2025-08-26T20:45:22.3375901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_sparse_backward_ops.h 2025-08-26T20:45:22.3380265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_affine_quantized.h 2025-08-26T20:45:22.3384290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_affine_quantized_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.3388022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_affine_quantized_cpu_dispatch.h 2025-08-26T20:45:22.3391985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_affine_quantized_native.h 2025-08-26T20:45:22.3395815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_affine_quantized_ops.h 2025-08-26T20:45:22.3400223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_per_channel_affine_quantized.h 2025-08-26T20:45:22.3404259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_per_channel_affine_quantized_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.3408171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_per_channel_affine_quantized_cpu_dispatch.h 2025-08-26T20:45:22.3412488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_per_channel_affine_quantized_native.h 2025-08-26T20:45:22.3447517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_per_channel_affine_quantized_ops.h 2025-08-26T20:45:22.3451664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_euclidean_dist.h 2025-08-26T20:45:22.3455976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_euclidean_dist_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.3459839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_euclidean_dist_native.h 2025-08-26T20:45:22.3464650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_euclidean_dist_ops.h 2025-08-26T20:45:22.3469234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine.h 2025-08-26T20:45:22.3473462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward.h 2025-08-26T20:45:22.3477841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_cpu_dispatch.h 2025-08-26T20:45:22.3481983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_cuda_dispatch.h 2025-08-26T20:45:22.3486328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_native.h 2025-08-26T20:45:22.3490432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_ops.h 2025-08-26T20:45:22.3495256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.3499400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_cpu_dispatch.h 2025-08-26T20:45:22.3503499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_cuda_dispatch.h 2025-08-26T20:45:22.3507610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_native.h 2025-08-26T20:45:22.3512128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_ops.h 2025-08-26T20:45:22.3516376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine.h 2025-08-26T20:45:22.3520993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward.h 2025-08-26T20:45:22.3525063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_cpu_dispatch.h 2025-08-26T20:45:22.3529085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_cuda_dispatch.h 2025-08-26T20:45:22.3533356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_native.h 2025-08-26T20:45:22.3537457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_ops.h 2025-08-26T20:45:22.3541583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.3546572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_cpu_dispatch.h 2025-08-26T20:45:22.3551558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_cuda_dispatch.h 2025-08-26T20:45:22.3555571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_native.h 2025-08-26T20:45:22.3559674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_ops.h 2025-08-26T20:45:22.3563984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams.h 2025-08-26T20:45:22.3568183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.3572300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cpu_dispatch.h 2025-08-26T20:45:22.3576387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cuda_dispatch.h 2025-08-26T20:45:22.3580650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_native.h 2025-08-26T20:45:22.3584710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_ops.h 2025-08-26T20:45:22.3589241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2c.h 2025-08-26T20:45:22.3592959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2c_cpu_dispatch.h 2025-08-26T20:45:22.3596760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2c_cuda_dispatch.h 2025-08-26T20:45:22.3600496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2c_native.h 2025-08-26T20:45:22.3604272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2c_ops.h 2025-08-26T20:45:22.3608101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2r.h 2025-08-26T20:45:22.3612155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2r_cpu_dispatch.h 2025-08-26T20:45:22.3616303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2r_cuda_dispatch.h 2025-08-26T20:45:22.3620161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2r_native.h 2025-08-26T20:45:22.3624422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2r_ops.h 2025-08-26T20:45:22.3628256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_r2c.h 2025-08-26T20:45:22.3631841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_r2c_cpu_dispatch.h 2025-08-26T20:45:22.3635926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_r2c_cuda_dispatch.h 2025-08-26T20:45:22.3640029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_r2c_native.h 2025-08-26T20:45:22.3644003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_r2c_ops.h 2025-08-26T20:45:22.3647927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fill_mem_eff_dropout_mask.h 2025-08-26T20:45:22.3651867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fill_mem_eff_dropout_mask_cuda_dispatch.h 2025-08-26T20:45:22.3655973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fill_mem_eff_dropout_mask_meta_dispatch.h 2025-08-26T20:45:22.3660039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fill_mem_eff_dropout_mask_native.h 2025-08-26T20:45:22.3664656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fill_mem_eff_dropout_mask_ops.h 2025-08-26T20:45:22.3668645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_backward.h 2025-08-26T20:45:22.3672699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_backward_cuda_dispatch.h 2025-08-26T20:45:22.3676688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_backward_native.h 2025-08-26T20:45:22.3680602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_backward_ops.h 2025-08-26T20:45:22.3685501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_forward.h 2025-08-26T20:45:22.3689556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_forward_cuda_dispatch.h 2025-08-26T20:45:22.3693632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_forward_native.h 2025-08-26T20:45:22.3697449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_forward_ops.h 2025-08-26T20:45:22.3701530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foobar.h 2025-08-26T20:45:22.3705490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foobar_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.3709112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foobar_cpu_dispatch.h 2025-08-26T20:45:22.3712937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foobar_native.h 2025-08-26T20:45:22.3717535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foobar_ops.h 2025-08-26T20:45:22.3720745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_abs.h 2025-08-26T20:45:22.3724931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_abs_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.3729054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_abs_cuda_dispatch.h 2025-08-26T20:45:22.3732912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_abs_native.h 2025-08-26T20:45:22.3736916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_abs_ops.h 2025-08-26T20:45:22.3740945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_acos.h 2025-08-26T20:45:22.3746268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_acos_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.3749644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_acos_cuda_dispatch.h 2025-08-26T20:45:22.3753966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_acos_native.h 2025-08-26T20:45:22.3758188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_acos_ops.h 2025-08-26T20:45:22.3761956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_add.h 2025-08-26T20:45:22.3766037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcdiv.h 2025-08-26T20:45:22.3770536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcdiv_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.3775188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcdiv_cuda_dispatch.h 2025-08-26T20:45:22.3779065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcdiv_native.h 2025-08-26T20:45:22.3783344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcdiv_ops.h 2025-08-26T20:45:22.3787427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcmul.h 2025-08-26T20:45:22.3792392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcmul_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.3795359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcmul_cuda_dispatch.h 2025-08-26T20:45:22.3799950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcmul_native.h 2025-08-26T20:45:22.3804064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcmul_ops.h 2025-08-26T20:45:22.3808164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_add_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.3812474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_add_cuda_dispatch.h 2025-08-26T20:45:22.3817192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_add_native.h 2025-08-26T20:45:22.3821214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_add_ops.h 2025-08-26T20:45:22.3824909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_asin.h 2025-08-26T20:45:22.3829098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_asin_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.3878169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_asin_cuda_dispatch.h 2025-08-26T20:45:22.3878936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_asin_native.h 2025-08-26T20:45:22.3881061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_asin_ops.h 2025-08-26T20:45:22.3881630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_atan.h 2025-08-26T20:45:22.3882336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_atan_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.3883084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_atan_cuda_dispatch.h 2025-08-26T20:45:22.3883780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_atan_native.h 2025-08-26T20:45:22.3884378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_atan_ops.h 2025-08-26T20:45:22.3884934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_ceil.h 2025-08-26T20:45:22.3886992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_ceil_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.3887736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_ceil_cuda_dispatch.h 2025-08-26T20:45:22.3888373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_ceil_native.h 2025-08-26T20:45:22.3888956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_ceil_ops.h 2025-08-26T20:45:22.3890531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_max.h 2025-08-26T20:45:22.3894559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_max_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.3898415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_max_cuda_dispatch.h 2025-08-26T20:45:22.3904113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_max_native.h 2025-08-26T20:45:22.3906780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_max_ops.h 2025-08-26T20:45:22.3910536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_min.h 2025-08-26T20:45:22.3914615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_min_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.3918532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_min_cuda_dispatch.h 2025-08-26T20:45:22.3922784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_min_native.h 2025-08-26T20:45:22.3926789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_min_ops.h 2025-08-26T20:45:22.3930576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_copy.h 2025-08-26T20:45:22.3934613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.3938784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_copy_cuda_dispatch.h 2025-08-26T20:45:22.3942657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_copy_native.h 2025-08-26T20:45:22.3946613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_copy_ops.h 2025-08-26T20:45:22.3951176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cos.h 2025-08-26T20:45:22.3954490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cosh.h 2025-08-26T20:45:22.3958925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cosh_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.3963257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cosh_cuda_dispatch.h 2025-08-26T20:45:22.3967067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cosh_native.h 2025-08-26T20:45:22.3970887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cosh_ops.h 2025-08-26T20:45:22.3974867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cos_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.3978725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cos_cuda_dispatch.h 2025-08-26T20:45:22.3983271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cos_native.h 2025-08-26T20:45:22.3987104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cos_ops.h 2025-08-26T20:45:22.3991946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_div.h 2025-08-26T20:45:22.3994985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_div_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.3998768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_div_cuda_dispatch.h 2025-08-26T20:45:22.4002704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_div_native.h 2025-08-26T20:45:22.4007624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_div_ops.h 2025-08-26T20:45:22.4010751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erf.h 2025-08-26T20:45:22.4015185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erfc.h 2025-08-26T20:45:22.4019238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erfc_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4023212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erfc_cuda_dispatch.h 2025-08-26T20:45:22.4027336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erfc_native.h 2025-08-26T20:45:22.4031407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erfc_ops.h 2025-08-26T20:45:22.4035453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erf_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4040228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erf_cuda_dispatch.h 2025-08-26T20:45:22.4044137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erf_native.h 2025-08-26T20:45:22.4048516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erf_ops.h 2025-08-26T20:45:22.4052551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_exp.h 2025-08-26T20:45:22.4056393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_expm1.h 2025-08-26T20:45:22.4060419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_expm1_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4064386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_expm1_cuda_dispatch.h 2025-08-26T20:45:22.4068473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_expm1_native.h 2025-08-26T20:45:22.4072783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_expm1_ops.h 2025-08-26T20:45:22.4077263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_exp_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4081174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_exp_cuda_dispatch.h 2025-08-26T20:45:22.4085075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_exp_native.h 2025-08-26T20:45:22.4088918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_exp_ops.h 2025-08-26T20:45:22.4092943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_floor.h 2025-08-26T20:45:22.4103258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_floor_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4104497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_floor_cuda_dispatch.h 2025-08-26T20:45:22.4110271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_floor_native.h 2025-08-26T20:45:22.4114526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_floor_ops.h 2025-08-26T20:45:22.4118111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_frac.h 2025-08-26T20:45:22.4123227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_frac_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4127158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_frac_cuda_dispatch.h 2025-08-26T20:45:22.4131833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_frac_native.h 2025-08-26T20:45:22.4135364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_frac_ops.h 2025-08-26T20:45:22.4139667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lerp.h 2025-08-26T20:45:22.4143950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lerp_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4148006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lerp_cuda_dispatch.h 2025-08-26T20:45:22.4152269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lerp_native.h 2025-08-26T20:45:22.4156566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lerp_ops.h 2025-08-26T20:45:22.4161002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lgamma.h 2025-08-26T20:45:22.4165259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lgamma_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4169250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lgamma_cuda_dispatch.h 2025-08-26T20:45:22.4173751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lgamma_native.h 2025-08-26T20:45:22.4178048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lgamma_ops.h 2025-08-26T20:45:22.4181948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log.h 2025-08-26T20:45:22.4185933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log10.h 2025-08-26T20:45:22.4190878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log10_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4195165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log10_cuda_dispatch.h 2025-08-26T20:45:22.4198837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log10_native.h 2025-08-26T20:45:22.4203267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log10_ops.h 2025-08-26T20:45:22.4207258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log1p.h 2025-08-26T20:45:22.4212015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log1p_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4215535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log1p_cuda_dispatch.h 2025-08-26T20:45:22.4220117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log1p_native.h 2025-08-26T20:45:22.4224358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log1p_ops.h 2025-08-26T20:45:22.4228365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log2.h 2025-08-26T20:45:22.4232582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log2_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4237032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log2_cuda_dispatch.h 2025-08-26T20:45:22.4241698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log2_native.h 2025-08-26T20:45:22.4245466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log2_ops.h 2025-08-26T20:45:22.4250158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4254591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log_cuda_dispatch.h 2025-08-26T20:45:22.4258518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log_native.h 2025-08-26T20:45:22.4262305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log_ops.h 2025-08-26T20:45:22.4266423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_max.h 2025-08-26T20:45:22.4270616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_maximum.h 2025-08-26T20:45:22.4274751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_maximum_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4279705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_maximum_cuda_dispatch.h 2025-08-26T20:45:22.4283935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_maximum_native.h 2025-08-26T20:45:22.4287962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_maximum_ops.h 2025-08-26T20:45:22.4291989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_max_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4295876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_max_cuda_dispatch.h 2025-08-26T20:45:22.4300908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_max_native.h 2025-08-26T20:45:22.4305163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_max_ops.h 2025-08-26T20:45:22.4309242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_minimum.h 2025-08-26T20:45:22.4313306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_minimum_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4317150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_minimum_cuda_dispatch.h 2025-08-26T20:45:22.4321397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_minimum_native.h 2025-08-26T20:45:22.4325079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_minimum_ops.h 2025-08-26T20:45:22.4329457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_mul.h 2025-08-26T20:45:22.4333977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_mul_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4347843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_mul_cuda_dispatch.h 2025-08-26T20:45:22.4348522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_mul_native.h 2025-08-26T20:45:22.4349104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_mul_ops.h 2025-08-26T20:45:22.4351045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_neg.h 2025-08-26T20:45:22.4355116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_neg_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4359908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_neg_cuda_dispatch.h 2025-08-26T20:45:22.4363271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_neg_native.h 2025-08-26T20:45:22.4367121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_neg_ops.h 2025-08-26T20:45:22.4371983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_norm.h 2025-08-26T20:45:22.4375163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_norm_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4379187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_norm_cuda_dispatch.h 2025-08-26T20:45:22.4383480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_norm_native.h 2025-08-26T20:45:22.4387270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_norm_ops.h 2025-08-26T20:45:22.4391260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_pow.h 2025-08-26T20:45:22.4395350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_pow_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4399383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_pow_cuda_dispatch.h 2025-08-26T20:45:22.4403533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_pow_native.h 2025-08-26T20:45:22.4407575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_pow_ops.h 2025-08-26T20:45:22.4412102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_reciprocal.h 2025-08-26T20:45:22.4416213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_reciprocal_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4420206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_reciprocal_cuda_dispatch.h 2025-08-26T20:45:22.4452464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_reciprocal_native.h 2025-08-26T20:45:22.4456418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_reciprocal_ops.h 2025-08-26T20:45:22.4460536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_round.h 2025-08-26T20:45:22.4464681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_round_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4468467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_round_cuda_dispatch.h 2025-08-26T20:45:22.4472639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_round_native.h 2025-08-26T20:45:22.4476736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_round_ops.h 2025-08-26T20:45:22.4480605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_rsqrt.h 2025-08-26T20:45:22.4484789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_rsqrt_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4488597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_rsqrt_cuda_dispatch.h 2025-08-26T20:45:22.4492774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_rsqrt_native.h 2025-08-26T20:45:22.4496980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_rsqrt_ops.h 2025-08-26T20:45:22.4501477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sigmoid.h 2025-08-26T20:45:22.4505721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sigmoid_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4510074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sigmoid_cuda_dispatch.h 2025-08-26T20:45:22.4513884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sigmoid_native.h 2025-08-26T20:45:22.4518063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sigmoid_ops.h 2025-08-26T20:45:22.4522061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sign.h 2025-08-26T20:45:22.4526064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sign_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4530383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sign_cuda_dispatch.h 2025-08-26T20:45:22.4534334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sign_native.h 2025-08-26T20:45:22.4538673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sign_ops.h 2025-08-26T20:45:22.4571698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sin.h 2025-08-26T20:45:22.4576677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sinh.h 2025-08-26T20:45:22.4581538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sinh_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4585660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sinh_cuda_dispatch.h 2025-08-26T20:45:22.4590694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sinh_native.h 2025-08-26T20:45:22.4594011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sinh_ops.h 2025-08-26T20:45:22.4598300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sin_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4602509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sin_cuda_dispatch.h 2025-08-26T20:45:22.4606638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sin_native.h 2025-08-26T20:45:22.4610920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sin_ops.h 2025-08-26T20:45:22.4615314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sqrt.h 2025-08-26T20:45:22.4619711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sqrt_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4623515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sqrt_cuda_dispatch.h 2025-08-26T20:45:22.4627685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sqrt_native.h 2025-08-26T20:45:22.4631673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sqrt_ops.h 2025-08-26T20:45:22.4635564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sub.h 2025-08-26T20:45:22.4639637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sub_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4644059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sub_cuda_dispatch.h 2025-08-26T20:45:22.4648284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sub_native.h 2025-08-26T20:45:22.4652123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sub_ops.h 2025-08-26T20:45:22.4656783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tan.h 2025-08-26T20:45:22.4661174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tanh.h 2025-08-26T20:45:22.4665536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tanh_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4669429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tanh_cuda_dispatch.h 2025-08-26T20:45:22.4673460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tanh_native.h 2025-08-26T20:45:22.4677547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tanh_ops.h 2025-08-26T20:45:22.4681611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tan_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4685934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tan_cuda_dispatch.h 2025-08-26T20:45:22.4690283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tan_native.h 2025-08-26T20:45:22.4694255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tan_ops.h 2025-08-26T20:45:22.4698112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_trunc.h 2025-08-26T20:45:22.4702509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_trunc_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4707141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_trunc_cuda_dispatch.h 2025-08-26T20:45:22.4711281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_trunc_native.h 2025-08-26T20:45:22.4715307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_trunc_ops.h 2025-08-26T20:45:22.4719706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_zero.h 2025-08-26T20:45:22.4724525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_zero_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4728548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_zero_cuda_dispatch.h 2025-08-26T20:45:22.4732430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_zero_native.h 2025-08-26T20:45:22.4736804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_zero_ops.h 2025-08-26T20:45:22.4740946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_async.h 2025-08-26T20:45:22.4745363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_async_cpu_dispatch.h 2025-08-26T20:45:22.4750013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_async_native.h 2025-08-26T20:45:22.4753907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_async_ops.h 2025-08-26T20:45:22.4757938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_scalar.h 2025-08-26T20:45:22.4762998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_scalar_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4767448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_scalar_native.h 2025-08-26T20:45:22.4771665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_scalar_ops.h 2025-08-26T20:45:22.4775770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range.h 2025-08-26T20:45:22.4780575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4784465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range_for_size.h 2025-08-26T20:45:22.4789695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4794067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range_for_size_native.h 2025-08-26T20:45:22.4798162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range_for_size_ops.h 2025-08-26T20:45:22.4802069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range_native.h 2025-08-26T20:45:22.4806040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range_ops.h 2025-08-26T20:45:22.4810693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adagrad.h 2025-08-26T20:45:22.4814947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adagrad_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4818901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adagrad_cpu_dispatch.h 2025-08-26T20:45:22.4823414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adagrad_cuda_dispatch.h 2025-08-26T20:45:22.4827833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adagrad_native.h 2025-08-26T20:45:22.4832055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adagrad_ops.h 2025-08-26T20:45:22.4836085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adam.h 2025-08-26T20:45:22.4839998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adamw.h 2025-08-26T20:45:22.4844770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adamw_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4848703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adamw_cpu_dispatch.h 2025-08-26T20:45:22.4852733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adamw_cuda_dispatch.h 2025-08-26T20:45:22.4857374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adamw_native.h 2025-08-26T20:45:22.4861091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adamw_ops.h 2025-08-26T20:45:22.4865830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adam_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4870136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adam_cpu_dispatch.h 2025-08-26T20:45:22.4874016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adam_cuda_dispatch.h 2025-08-26T20:45:22.4877989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adam_native.h 2025-08-26T20:45:22.4882324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adam_ops.h 2025-08-26T20:45:22.4886297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_dropout.h 2025-08-26T20:45:22.4890574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_dropout_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4895231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_dropout_cuda_dispatch.h 2025-08-26T20:45:22.4899184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_dropout_native.h 2025-08-26T20:45:22.4903158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_dropout_ops.h 2025-08-26T20:45:22.4907122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper.h 2025-08-26T20:45:22.4911375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.4915269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_cpu_dispatch.h 2025-08-26T20:45:22.4919462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_cuda_dispatch.h 2025-08-26T20:45:22.4923457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_native.h 2025-08-26T20:45:22.4927603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_ops.h 2025-08-26T20:45:22.4931604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm.h 2025-08-26T20:45:22.4935659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm_backward.h 2025-08-26T20:45:22.4939765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm_backward_cuda_dispatch.h 2025-08-26T20:45:22.4944083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm_backward_native.h 2025-08-26T20:45:22.4948427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm_backward_ops.h 2025-08-26T20:45:22.4952833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.4956645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm_cuda_dispatch.h 2025-08-26T20:45:22.4960570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm_native.h 2025-08-26T20:45:22.4964395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm_ops.h 2025-08-26T20:45:22.4968562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sdp_choice.h 2025-08-26T20:45:22.4972563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sdp_choice_cpu_dispatch.h 2025-08-26T20:45:22.4976986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sdp_choice_cuda_dispatch.h 2025-08-26T20:45:22.4981079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sdp_choice_meta_dispatch.h 2025-08-26T20:45:22.4985000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sdp_choice_native.h 2025-08-26T20:45:22.4989219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sdp_choice_ops.h 2025-08-26T20:45:22.4993824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sgd.h 2025-08-26T20:45:22.4998109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sgd_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.5002604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sgd_cpu_dispatch.h 2025-08-26T20:45:22.5006844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sgd_cuda_dispatch.h 2025-08-26T20:45:22.5010825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sgd_native.h 2025-08-26T20:45:22.5015088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sgd_ops.h 2025-08-26T20:45:22.5018868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal.h 2025-08-26T20:45:22.5023080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.5027254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_copy.h 2025-08-26T20:45:22.5031275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.5035135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.5038887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_copy_native.h 2025-08-26T20:45:22.5042730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_copy_ops.h 2025-08-26T20:45:22.5046870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_native.h 2025-08-26T20:45:22.5050911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_ops.h 2025-08-26T20:45:22.5054927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_gather_sparse_backward.h 2025-08-26T20:45:22.5059120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_gather_sparse_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.5063083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_gather_sparse_backward_native.h 2025-08-26T20:45:22.5066896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_gather_sparse_backward_ops.h 2025-08-26T20:45:22.5070681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback.h 2025-08-26T20:45:22.5074436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward.h 2025-08-26T20:45:22.5078926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.5082623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward_native.h 2025-08-26T20:45:22.5086442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward_ops.h 2025-08-26T20:45:22.5090449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.5095071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_native.h 2025-08-26T20:45:22.5099680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_ops.h 2025-08-26T20:45:22.5103878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grouped_mm.h 2025-08-26T20:45:22.5107644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grouped_mm_cuda_dispatch.h 2025-08-26T20:45:22.5111392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grouped_mm_native.h 2025-08-26T20:45:22.5115744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grouped_mm_ops.h 2025-08-26T20:45:22.5119408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_compatible_shallow_copy_type.h 2025-08-26T20:45:22.5123683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_compatible_shallow_copy_type_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.5127804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_compatible_shallow_copy_type_native.h 2025-08-26T20:45:22.5132295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_compatible_shallow_copy_type_ops.h 2025-08-26T20:45:22.5136689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_same_storage_numel.h 2025-08-26T20:45:22.5141137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_same_storage_numel_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.5145440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_same_storage_numel_native.h 2025-08-26T20:45:22.5149616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_same_storage_numel_ops.h 2025-08-26T20:45:22.5153889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_bin_edges.h 2025-08-26T20:45:22.5157949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_bin_edges_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.5162127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_bin_edges_cpu_dispatch.h 2025-08-26T20:45:22.5165949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_bin_edges_native.h 2025-08-26T20:45:22.5170011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_bin_edges_ops.h 2025-08-26T20:45:22.5174258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_cts.h 2025-08-26T20:45:22.5178501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_cts_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.5182546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_cts_cpu_dispatch.h 2025-08-26T20:45:22.5186707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_cts_native.h 2025-08-26T20:45:22.5190691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_cts_ops.h 2025-08-26T20:45:22.5195305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_tensors.h 2025-08-26T20:45:22.5199505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_tensors_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.5203741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_tensors_cpu_dispatch.h 2025-08-26T20:45:22.5207760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_tensors_native.h 2025-08-26T20:45:22.5211666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_tensors_ops.h 2025-08-26T20:45:22.5215666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_index_put_impl.h 2025-08-26T20:45:22.5219859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_index_put_impl_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.5223866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_index_put_impl_cpu_dispatch.h 2025-08-26T20:45:22.5227745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_index_put_impl_cuda_dispatch.h 2025-08-26T20:45:22.5231535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_index_put_impl_meta_dispatch.h 2025-08-26T20:45:22.5235912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_index_put_impl_native.h 2025-08-26T20:45:22.5239364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_index_put_impl_ops.h 2025-08-26T20:45:22.5243715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices.h 2025-08-26T20:45:22.5247733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices_copy.h 2025-08-26T20:45:22.5251444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.5255634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.5259421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices_copy_native.h 2025-08-26T20:45:22.5263264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices_copy_ops.h 2025-08-26T20:45:22.5267238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices_native.h 2025-08-26T20:45:22.5271387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices_ops.h 2025-08-26T20:45:22.5275988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_int_mm.h 2025-08-26T20:45:22.5279058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_int_mm_cpu_dispatch.h 2025-08-26T20:45:22.5283640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_int_mm_cuda_dispatch.h 2025-08-26T20:45:22.5287516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_int_mm_native.h 2025-08-26T20:45:22.5291230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_int_mm_ops.h 2025-08-26T20:45:22.5295575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_all_true.h 2025-08-26T20:45:22.5300055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_all_true_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.5304750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_all_true_native.h 2025-08-26T20:45:22.5308246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_all_true_ops.h 2025-08-26T20:45:22.5312454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_any_true.h 2025-08-26T20:45:22.5316639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_any_true_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.5320230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_any_true_native.h 2025-08-26T20:45:22.5324373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_any_true_ops.h 2025-08-26T20:45:22.5328632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_zerotensor.h 2025-08-26T20:45:22.5333028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_zerotensor_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.5337067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_zerotensor_native.h 2025-08-26T20:45:22.5341049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_zerotensor_ops.h 2025-08-26T20:45:22.5345156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_jagged_to_padded_dense_forward.h 2025-08-26T20:45:22.5349308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_jagged_to_padded_dense_forward_cpu_dispatch.h 2025-08-26T20:45:22.5353373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_jagged_to_padded_dense_forward_cuda_dispatch.h 2025-08-26T20:45:22.5357730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_jagged_to_padded_dense_forward_native.h 2025-08-26T20:45:22.5361872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_jagged_to_padded_dense_forward_ops.h 2025-08-26T20:45:22.5365876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lazy_clone.h 2025-08-26T20:45:22.5369865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lazy_clone_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.5373732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lazy_clone_native.h 2025-08-26T20:45:22.5377626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lazy_clone_ops.h 2025-08-26T20:45:22.5381463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_check_errors.h 2025-08-26T20:45:22.5386148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_check_errors_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.5390148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_check_errors_native.h 2025-08-26T20:45:22.5394288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_check_errors_ops.h 2025-08-26T20:45:22.5398258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det.h 2025-08-26T20:45:22.5402993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.5406755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det_cpu_dispatch.h 2025-08-26T20:45:22.5410760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det_cuda_dispatch.h 2025-08-26T20:45:22.5414594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det_meta.h 2025-08-26T20:45:22.5418528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det_meta_dispatch.h 2025-08-26T20:45:22.5422305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det_native.h 2025-08-26T20:45:22.5426311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det_ops.h 2025-08-26T20:45:22.5430098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh.h 2025-08-26T20:45:22.5434346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.5438275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh_cpu_dispatch.h 2025-08-26T20:45:22.5442377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh_cuda_dispatch.h 2025-08-26T20:45:22.5446131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh_meta.h 2025-08-26T20:45:22.5449893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh_meta_dispatch.h 2025-08-26T20:45:22.5453634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh_native.h 2025-08-26T20:45:22.5457703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh_ops.h 2025-08-26T20:45:22.5461466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigvals.h 2025-08-26T20:45:22.5465583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigvals_cpu_dispatch.h 2025-08-26T20:45:22.5469958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigvals_cuda_dispatch.h 2025-08-26T20:45:22.5473689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigvals_native.h 2025-08-26T20:45:22.5477489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigvals_ops.h 2025-08-26T20:45:22.5481358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet.h 2025-08-26T20:45:22.5485365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.5489232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet_cpu_dispatch.h 2025-08-26T20:45:22.5493354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet_cuda_dispatch.h 2025-08-26T20:45:22.5497167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet_meta.h 2025-08-26T20:45:22.5501453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet_meta_dispatch.h 2025-08-26T20:45:22.5505816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet_native.h 2025-08-26T20:45:22.5509556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet_ops.h 2025-08-26T20:45:22.5513418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex.h 2025-08-26T20:45:22.5517564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.5521412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex_cpu_dispatch.h 2025-08-26T20:45:22.5525367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex_cuda_dispatch.h 2025-08-26T20:45:22.5529172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex_meta.h 2025-08-26T20:45:22.5532959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex_meta_dispatch.h 2025-08-26T20:45:22.5536695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex_native.h 2025-08-26T20:45:22.5540422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex_ops.h 2025-08-26T20:45:22.5544523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd.h 2025-08-26T20:45:22.5548588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.5552408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd_cpu_dispatch.h 2025-08-26T20:45:22.5556437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd_cuda_dispatch.h 2025-08-26T20:45:22.5560248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd_meta.h 2025-08-26T20:45:22.5563976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd_meta_dispatch.h 2025-08-26T20:45:22.5567794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd_native.h 2025-08-26T20:45:22.5571905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd_ops.h 2025-08-26T20:45:22.5575745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_local_scalar_dense.h 2025-08-26T20:45:22.5579587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_local_scalar_dense_cpu_dispatch.h 2025-08-26T20:45:22.5583469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_local_scalar_dense_cuda_dispatch.h 2025-08-26T20:45:22.5587325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_local_scalar_dense_native.h 2025-08-26T20:45:22.5591124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_local_scalar_dense_ops.h 2025-08-26T20:45:22.5594891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_logcumsumexp.h 2025-08-26T20:45:22.5598840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_logcumsumexp_cpu_dispatch.h 2025-08-26T20:45:22.5602520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_logcumsumexp_cuda_dispatch.h 2025-08-26T20:45:22.5606246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_logcumsumexp_native.h 2025-08-26T20:45:22.5610576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_logcumsumexp_ops.h 2025-08-26T20:45:22.5614347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax.h 2025-08-26T20:45:22.5618232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data.h 2025-08-26T20:45:22.5653638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.5658311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data_cpu_dispatch.h 2025-08-26T20:45:22.5662849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data_cuda_dispatch.h 2025-08-26T20:45:22.5667056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data_meta.h 2025-08-26T20:45:22.5670925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data_meta_dispatch.h 2025-08-26T20:45:22.5675106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data_native.h 2025-08-26T20:45:22.5679325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data_ops.h 2025-08-26T20:45:22.5683974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.5687623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_cpu_dispatch.h 2025-08-26T20:45:22.5692188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_cuda_dispatch.h 2025-08-26T20:45:22.5695960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_meta.h 2025-08-26T20:45:22.5699827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_meta_dispatch.h 2025-08-26T20:45:22.5704030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_native.h 2025-08-26T20:45:22.5708112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_ops.h 2025-08-26T20:45:22.5711910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lstm_mps.h 2025-08-26T20:45:22.5716324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lstm_mps_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.5720563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lstm_mps_native.h 2025-08-26T20:45:22.5724673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lstm_mps_ops.h 2025-08-26T20:45:22.5728022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lu_with_info.h 2025-08-26T20:45:22.5731916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lu_with_info_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.5736330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lu_with_info_native.h 2025-08-26T20:45:22.5739877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lu_with_info_ops.h 2025-08-26T20:45:22.5743800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dep_token.h 2025-08-26T20:45:22.5748083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dep_token_cpu_dispatch.h 2025-08-26T20:45:22.5751972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dep_token_native.h 2025-08-26T20:45:22.5755944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dep_token_ops.h 2025-08-26T20:45:22.5759909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual.h 2025-08-26T20:45:22.5764563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.5767840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_copy.h 2025-08-26T20:45:22.5772305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.5776489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.5780330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_copy_native.h 2025-08-26T20:45:22.5784753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_copy_ops.h 2025-08-26T20:45:22.5790061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_native.h 2025-08-26T20:45:22.5794237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_ops.h 2025-08-26T20:45:22.5799020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_channel_quantized_tensor.h 2025-08-26T20:45:22.5802868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_channel_quantized_tensor_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.5807317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_channel_quantized_tensor_cpu_dispatch.h 2025-08-26T20:45:22.5811330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_channel_quantized_tensor_cuda_dispatch.h 2025-08-26T20:45:22.5816241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_channel_quantized_tensor_native.h 2025-08-26T20:45:22.5820041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_channel_quantized_tensor_ops.h 2025-08-26T20:45:22.5824748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_tensor_quantized_tensor.h 2025-08-26T20:45:22.5828936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_tensor_quantized_tensor_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.5832714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_tensor_quantized_tensor_cpu_dispatch.h 2025-08-26T20:45:22.5836863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_tensor_quantized_tensor_cuda_dispatch.h 2025-08-26T20:45:22.5841170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_tensor_quantized_tensor_native.h 2025-08-26T20:45:22.5858025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_tensor_quantized_tensor_ops.h 2025-08-26T20:45:22.5858252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_scale.h 2025-08-26T20:45:22.5858632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_scale_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.5858991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_scale_cuda_dispatch.h 2025-08-26T20:45:22.5870223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_scale_native.h 2025-08-26T20:45:22.5870459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_scale_ops.h 2025-08-26T20:45:22.5872050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax.h 2025-08-26T20:45:22.5876258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_backward.h 2025-08-26T20:45:22.5880049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.5884275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_backward_cpu_dispatch.h 2025-08-26T20:45:22.5888680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_backward_cuda_dispatch.h 2025-08-26T20:45:22.5892491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_backward_native.h 2025-08-26T20:45:22.5896444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_backward_ops.h 2025-08-26T20:45:22.5900868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.5905414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_cpu_dispatch.h 2025-08-26T20:45:22.5908893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_cuda_dispatch.h 2025-08-26T20:45:22.5912942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_native.h 2025-08-26T20:45:22.5917011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_ops.h 2025-08-26T20:45:22.5921414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mixed_dtypes_linear.h 2025-08-26T20:45:22.5925023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mixed_dtypes_linear_cuda_dispatch.h 2025-08-26T20:45:22.5928661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mixed_dtypes_linear_native.h 2025-08-26T20:45:22.5932343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mixed_dtypes_linear_ops.h 2025-08-26T20:45:22.5936151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_reshape.h 2025-08-26T20:45:22.5940512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_reshape_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.5944295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_reshape_native.h 2025-08-26T20:45:22.5948927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_reshape_ops.h 2025-08-26T20:45:22.5952868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_transpose.h 2025-08-26T20:45:22.5957082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_transpose_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.5961054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_transpose_meta_dispatch.h 2025-08-26T20:45:22.5965137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_transpose_native.h 2025-08-26T20:45:22.5969157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_transpose_ops.h 2025-08-26T20:45:22.5972956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution.h 2025-08-26T20:45:22.5976805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.5980545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution_native.h 2025-08-26T20:45:22.5984744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution_ops.h 2025-08-26T20:45:22.5988782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution_transpose.h 2025-08-26T20:45:22.5993115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution_transpose_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.5996870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution_transpose_native.h 2025-08-26T20:45:22.6000700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution_transpose_ops.h 2025-08-26T20:45:22.6004623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit.h 2025-08-26T20:45:22.6008731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.6012439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_cpu_dispatch.h 2025-08-26T20:45:22.6016385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_cuda_dispatch.h 2025-08-26T20:45:22.6020227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_native.h 2025-08-26T20:45:22.6024407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_no_training.h 2025-08-26T20:45:22.6028559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_no_training_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.6032572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_no_training_native.h 2025-08-26T20:45:22.6036723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_no_training_ops.h 2025-08-26T20:45:22.6040748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_ops.h 2025-08-26T20:45:22.6045202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_multi_head_attention.h 2025-08-26T20:45:22.6049262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_multi_head_attention_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.6053166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_multi_head_attention_cpu_dispatch.h 2025-08-26T20:45:22.6057096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_multi_head_attention_cuda_dispatch.h 2025-08-26T20:45:22.6061195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_multi_head_attention_native.h 2025-08-26T20:45:22.6065364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_multi_head_attention_ops.h 2025-08-26T20:45:22.6068865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view.h 2025-08-26T20:45:22.6072849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.6076550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_copy.h 2025-08-26T20:45:22.6081791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.6084988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.6089217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_copy_native.h 2025-08-26T20:45:22.6093211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_copy_ops.h 2025-08-26T20:45:22.6097451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_native.h 2025-08-26T20:45:22.6101340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_ops.h 2025-08-26T20:45:22.6105400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets.h 2025-08-26T20:45:22.6109885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_cpu_dispatch.h 2025-08-26T20:45:22.6113773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_cuda_dispatch.h 2025-08-26T20:45:22.6117496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_native.h 2025-08-26T20:45:22.6121520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_ops.h 2025-08-26T20:45:22.6125259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded.h 2025-08-26T20:45:22.6129697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_and_nested_example.h 2025-08-26T20:45:22.6134218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_and_nested_example_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.6138594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_and_nested_example_native.h 2025-08-26T20:45:22.6142847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_and_nested_example_ops.h 2025-08-26T20:45:22.6146915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.6151118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_cpu_dispatch.h 2025-08-26T20:45:22.6155367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_cuda_dispatch.h 2025-08-26T20:45:22.6158975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_native.h 2025-08-26T20:45:22.6162974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_ops.h 2025-08-26T20:45:22.6167040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_tensor.h 2025-08-26T20:45:22.6171091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_tensor_native.h 2025-08-26T20:45:22.6175543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_tensor_ops.h 2025-08-26T20:45:22.6179384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_jagged_dummy.h 2025-08-26T20:45:22.6183902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_jagged_dummy_native.h 2025-08-26T20:45:22.6187397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_jagged_dummy_ops.h 2025-08-26T20:45:22.6191911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_lengths.h 2025-08-26T20:45:22.6195973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_lengths_native.h 2025-08-26T20:45:22.6200024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_lengths_ops.h 2025-08-26T20:45:22.6204337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_max_seqlen.h 2025-08-26T20:45:22.6208800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_max_seqlen_native.h 2025-08-26T20:45:22.6213100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_max_seqlen_ops.h 2025-08-26T20:45:22.6216853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_min_seqlen.h 2025-08-26T20:45:22.6221151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_min_seqlen_native.h 2025-08-26T20:45:22.6225151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_min_seqlen_ops.h 2025-08-26T20:45:22.6229299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_offsets.h 2025-08-26T20:45:22.6233329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_offsets_native.h 2025-08-26T20:45:22.6237419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_offsets_ops.h 2025-08-26T20:45:22.6241577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_ragged_idx.h 2025-08-26T20:45:22.6245951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_ragged_idx_native.h 2025-08-26T20:45:22.6250021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_ragged_idx_ops.h 2025-08-26T20:45:22.6253989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values.h 2025-08-26T20:45:22.6257899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values_copy.h 2025-08-26T20:45:22.6262496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.6267129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.6271110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values_copy_native.h 2025-08-26T20:45:22.6275575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values_copy_ops.h 2025-08-26T20:45:22.6279080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values_native.h 2025-08-26T20:45:22.6283358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values_ops.h 2025-08-26T20:45:22.6287507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_select_backward.h 2025-08-26T20:45:22.6291373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_select_backward_native.h 2025-08-26T20:45:22.6295656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_select_backward_ops.h 2025-08-26T20:45:22.6299659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_sum_backward.h 2025-08-26T20:45:22.6304276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_sum_backward_native.h 2025-08-26T20:45:22.6307951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_sum_backward_ops.h 2025-08-26T20:45:22.6312503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask.h 2025-08-26T20:45:22.6316776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.6320736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_cpu_dispatch.h 2025-08-26T20:45:22.6324947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_cuda_dispatch.h 2025-08-26T20:45:22.6328790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned.h 2025-08-26T20:45:22.6333317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_cpu_dispatch.h 2025-08-26T20:45:22.6337331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_cuda_dispatch.h 2025-08-26T20:45:22.6341463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_native.h 2025-08-26T20:45:22.6346530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_ops.h 2025-08-26T20:45:22.6365071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_native.h 2025-08-26T20:45:22.6365358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_ops.h 2025-08-26T20:45:22.6365638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_tensor_list.h 2025-08-26T20:45:22.6366074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_tensor_list_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.6369083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_tensor_list_native.h 2025-08-26T20:45:22.6373540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_tensor_list_ops.h 2025-08-26T20:45:22.6377777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_size.h 2025-08-26T20:45:22.6383280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_size_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.6386223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_size_native.h 2025-08-26T20:45:22.6390346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_size_ops.h 2025-08-26T20:45:22.6394244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_softmax_with_shape.h 2025-08-26T20:45:22.6398169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_softmax_with_shape_native.h 2025-08-26T20:45:22.6402048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_softmax_with_shape_ops.h 2025-08-26T20:45:22.6406169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_storage_offsets.h 2025-08-26T20:45:22.6410887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_storage_offsets_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.6414991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_storage_offsets_native.h 2025-08-26T20:45:22.6419202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_storage_offsets_ops.h 2025-08-26T20:45:22.6423339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_strides.h 2025-08-26T20:45:22.6427479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_strides_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.6432815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_strides_native.h 2025-08-26T20:45:22.6436827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_strides_ops.h 2025-08-26T20:45:22.6440704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer.h 2025-08-26T20:45:22.6445054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_copy.h 2025-08-26T20:45:22.6449796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.6454040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.6457839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_copy_native.h 2025-08-26T20:45:22.6461911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_copy_ops.h 2025-08-26T20:45:22.6466401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_cpu_dispatch.h 2025-08-26T20:45:22.6470563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_cuda_dispatch.h 2025-08-26T20:45:22.6474888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_native.h 2025-08-26T20:45:22.6478897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_ops.h 2025-08-26T20:45:22.6482752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged.h 2025-08-26T20:45:22.6486676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged_copy.h 2025-08-26T20:45:22.6491028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.6495218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.6499212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged_copy_native.h 2025-08-26T20:45:22.6503078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged_copy_ops.h 2025-08-26T20:45:22.6507451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged_native.h 2025-08-26T20:45:22.6510874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged_ops.h 2025-08-26T20:45:22.6514991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_new_zeros_with_same_feature_meta.h 2025-08-26T20:45:22.6519046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_new_zeros_with_same_feature_meta_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.6522926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_new_zeros_with_same_feature_meta_native.h 2025-08-26T20:45:22.6526766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_new_zeros_with_same_feature_meta_ops.h 2025-08-26T20:45:22.6530593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_available.h 2025-08-26T20:45:22.6534826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_available_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.6538508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_available_native.h 2025-08-26T20:45:22.6542320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_available_ops.h 2025-08-26T20:45:22.6546289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_spatial_convolution.h 2025-08-26T20:45:22.6550327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_spatial_convolution_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.6554082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_spatial_convolution_native.h 2025-08-26T20:45:22.6558001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_spatial_convolution_ops.h 2025-08-26T20:45:22.6561988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnz.h 2025-08-26T20:45:22.6565475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnz_native.h 2025-08-26T20:45:22.6569553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnz_ops.h 2025-08-26T20:45:22.6573034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence.h 2025-08-26T20:45:22.6577002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence_backward.h 2025-08-26T20:45:22.6580992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.6584811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence_backward_native.h 2025-08-26T20:45:22.6588732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence_backward_ops.h 2025-08-26T20:45:22.6593167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.6596880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence_native.h 2025-08-26T20:45:22.6600718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence_ops.h 2025-08-26T20:45:22.6604644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_padded_dense_to_jagged_forward.h 2025-08-26T20:45:22.6608550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_padded_dense_to_jagged_forward_cpu_dispatch.h 2025-08-26T20:45:22.6612427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_padded_dense_to_jagged_forward_cuda_dispatch.h 2025-08-26T20:45:22.6616399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_padded_dense_to_jagged_forward_native.h 2025-08-26T20:45:22.6620260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_padded_dense_to_jagged_forward_ops.h 2025-08-26T20:45:22.6624361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_circular.h 2025-08-26T20:45:22.6628650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_circular_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.6633034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_circular_native.h 2025-08-26T20:45:22.6665209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_circular_ops.h 2025-08-26T20:45:22.6668959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_enum.h 2025-08-26T20:45:22.6673209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_enum_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.6677176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_enum_native.h 2025-08-26T20:45:22.6680973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_enum_ops.h 2025-08-26T20:45:22.6684954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_packed_sequence.h 2025-08-26T20:45:22.6689139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_packed_sequence_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.6692755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_packed_sequence_native.h 2025-08-26T20:45:22.6696910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_packed_sequence_ops.h 2025-08-26T20:45:22.6700859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_backward.h 2025-08-26T20:45:22.6704836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.6708575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_backward_cpu_dispatch.h 2025-08-26T20:45:22.6712441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_backward_cuda_dispatch.h 2025-08-26T20:45:22.6716318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_backward_native.h 2025-08-26T20:45:22.6720861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_backward_ops.h 2025-08-26T20:45:22.6725044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_forward.h 2025-08-26T20:45:22.6729375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_forward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.6764266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_forward_cpu_dispatch.h 2025-08-26T20:45:22.6768596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_forward_cuda_dispatch.h 2025-08-26T20:45:22.6772558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_forward_native.h 2025-08-26T20:45:22.6776432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_forward_ops.h 2025-08-26T20:45:22.6780404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pin_memory.h 2025-08-26T20:45:22.6784686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pin_memory_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.6788393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pin_memory_native.h 2025-08-26T20:45:22.6793129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pin_memory_ops.h 2025-08-26T20:45:22.6797317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel.h 2025-08-26T20:45:22.6801674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_backward.h 2025-08-26T20:45:22.6805590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_backward_cpu_dispatch.h 2025-08-26T20:45:22.6809803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_backward_cuda_dispatch.h 2025-08-26T20:45:22.6813903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_backward_native.h 2025-08-26T20:45:22.6817738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_backward_ops.h 2025-08-26T20:45:22.6821633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_cpu_dispatch.h 2025-08-26T20:45:22.6825970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_cuda_dispatch.h 2025-08-26T20:45:22.6830206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_native.h 2025-08-26T20:45:22.6834005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_ops.h 2025-08-26T20:45:22.6838134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_print.h 2025-08-26T20:45:22.6842128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_print_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.6845937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_print_native.h 2025-08-26T20:45:22.6850271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_print_ops.h 2025-08-26T20:45:22.6854470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_propagate_xla_data.h 2025-08-26T20:45:22.6859189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_propagate_xla_data_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.6863197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_propagate_xla_data_native.h 2025-08-26T20:45:22.6867120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_propagate_xla_data_ops.h 2025-08-26T20:45:22.6871386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_remove_batch_dim.h 2025-08-26T20:45:22.6875307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_remove_batch_dim_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.6879225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_remove_batch_dim_native.h 2025-08-26T20:45:22.6883032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_remove_batch_dim_ops.h 2025-08-26T20:45:22.6886906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias.h 2025-08-26T20:45:22.6890766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_copy.h 2025-08-26T20:45:22.6894762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.6900288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.6904402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_copy_native.h 2025-08-26T20:45:22.6908398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_copy_ops.h 2025-08-26T20:45:22.6912381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_cpu_dispatch.h 2025-08-26T20:45:22.6916508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_cuda_dispatch.h 2025-08-26T20:45:22.6920841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_meta_dispatch.h 2025-08-26T20:45:22.6924960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_native.h 2025-08-26T20:45:22.6928929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_ops.h 2025-08-26T20:45:22.6932643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_copy.h 2025-08-26T20:45:22.6936637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.6940727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_copy_native.h 2025-08-26T20:45:22.6944919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_copy_ops.h 2025-08-26T20:45:22.6949154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_from_tensor.h 2025-08-26T20:45:22.6953344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_from_tensor_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.6958370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_from_tensor_native.h 2025-08-26T20:45:22.6962648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_from_tensor_ops.h 2025-08-26T20:45:22.6966723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_resize_output.h 2025-08-26T20:45:22.6970625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_resize_output_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.6974456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_resize_output_meta_dispatch.h 2025-08-26T20:45:22.6978529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_resize_output_native.h 2025-08-26T20:45:22.6982364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_resize_output_ops.h 2025-08-26T20:45:22.6986340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_rowwise_prune.h 2025-08-26T20:45:22.6990151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_rowwise_prune_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.6994171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_rowwise_prune_native.h 2025-08-26T20:45:22.6998010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_rowwise_prune_ops.h 2025-08-26T20:45:22.7001784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_safe_softmax.h 2025-08-26T20:45:22.7006897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_safe_softmax_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.7010949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_safe_softmax_native.h 2025-08-26T20:45:22.7015058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_safe_softmax_ops.h 2025-08-26T20:45:22.7018825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sample_dirichlet.h 2025-08-26T20:45:22.7022616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sample_dirichlet_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.7026769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sample_dirichlet_cpu_dispatch.h 2025-08-26T20:45:22.7031016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sample_dirichlet_cuda_dispatch.h 2025-08-26T20:45:22.7034961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sample_dirichlet_native.h 2025-08-26T20:45:22.7038903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sample_dirichlet_ops.h 2025-08-26T20:45:22.7042903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_saturate_weight_to_fp16.h 2025-08-26T20:45:22.7046912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_saturate_weight_to_fp16_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.7050656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_saturate_weight_to_fp16_native.h 2025-08-26T20:45:22.7054778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_saturate_weight_to_fp16_ops.h 2025-08-26T20:45:22.7058756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_attention_math.h 2025-08-26T20:45:22.7062777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_attention_math_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.7066603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_attention_math_for_mps.h 2025-08-26T20:45:22.7070677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_attention_math_for_mps_native.h 2025-08-26T20:45:22.7074477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_attention_math_for_mps_ops.h 2025-08-26T20:45:22.7078524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_attention_math_native.h 2025-08-26T20:45:22.7082505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_attention_math_ops.h 2025-08-26T20:45:22.7086461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention.h 2025-08-26T20:45:22.7090467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward.h 2025-08-26T20:45:22.7094379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward_cuda_dispatch.h 2025-08-26T20:45:22.7099198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward_native.h 2025-08-26T20:45:22.7103342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward_ops.h 2025-08-26T20:45:22.7107409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_cuda_dispatch.h 2025-08-26T20:45:22.7111500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_native.h 2025-08-26T20:45:22.7115294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_ops.h 2025-08-26T20:45:22.7120085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention.h 2025-08-26T20:45:22.7124177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward.h 2025-08-26T20:45:22.7128349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward_cuda_dispatch.h 2025-08-26T20:45:22.7132568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward_native.h 2025-08-26T20:45:22.7136816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward_ops.h 2025-08-26T20:45:22.7141265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_cuda_dispatch.h 2025-08-26T20:45:22.7145482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_native.h 2025-08-26T20:45:22.7149519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_ops.h 2025-08-26T20:45:22.7153985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention.h 2025-08-26T20:45:22.7158291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward.h 2025-08-26T20:45:22.7162619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward_cuda_dispatch.h 2025-08-26T20:45:22.7166643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward_native.h 2025-08-26T20:45:22.7171139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward_ops.h 2025-08-26T20:45:22.7176173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_cuda_dispatch.h 2025-08-26T20:45:22.7180144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu.h 2025-08-26T20:45:22.7184711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward.h 2025-08-26T20:45:22.7189059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward_cpu_dispatch.h 2025-08-26T20:45:22.7193328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward_native.h 2025-08-26T20:45:22.7197418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward_ops.h 2025-08-26T20:45:22.7201528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_cpu_dispatch.h 2025-08-26T20:45:22.7205873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_native.h 2025-08-26T20:45:22.7209980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_ops.h 2025-08-26T20:45:22.7214416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_native.h 2025-08-26T20:45:22.7218528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_ops.h 2025-08-26T20:45:22.7223430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable.h 2025-08-26T20:45:22.7227619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward.h 2025-08-26T20:45:22.7231907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.7235915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward_native.h 2025-08-26T20:45:22.7240070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward_ops.h 2025-08-26T20:45:22.7244701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.7248773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_native.h 2025-08-26T20:45:22.7252790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_ops.h 2025-08-26T20:45:22.7256975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_grouped_mm.h 2025-08-26T20:45:22.7261514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_grouped_mm_cuda_dispatch.h 2025-08-26T20:45:22.7266407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_grouped_mm_native.h 2025-08-26T20:45:22.7270557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_grouped_mm_ops.h 2025-08-26T20:45:22.7274729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_mm.h 2025-08-26T20:45:22.7278925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_mm_cpu_dispatch.h 2025-08-26T20:45:22.7282744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_mm_cuda_dispatch.h 2025-08-26T20:45:22.7286659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_mm_native.h 2025-08-26T20:45:22.7290725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_mm_ops.h 2025-08-26T20:45:22.7294757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_segment_reduce_backward.h 2025-08-26T20:45:22.7298883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_segment_reduce_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.7303174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_segment_reduce_backward_cpu_dispatch.h 2025-08-26T20:45:22.7307962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_segment_reduce_backward_cuda_dispatch.h 2025-08-26T20:45:22.7312398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_segment_reduce_backward_native.h 2025-08-26T20:45:22.7316545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_segment_reduce_backward_ops.h 2025-08-26T20:45:22.7320824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_shape_as_tensor.h 2025-08-26T20:45:22.7324935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_shape_as_tensor_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.7328726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_shape_as_tensor_native.h 2025-08-26T20:45:22.7332869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_shape_as_tensor_ops.h 2025-08-26T20:45:22.7336441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_backward.h 2025-08-26T20:45:22.7340389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.7344947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_backward_cpu_dispatch.h 2025-08-26T20:45:22.7349118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_backward_cuda_dispatch.h 2025-08-26T20:45:22.7353542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_backward_native.h 2025-08-26T20:45:22.7357898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_backward_ops.h 2025-08-26T20:45:22.7362068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_forward.h 2025-08-26T20:45:22.7366599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_forward_cpu_dispatch.h 2025-08-26T20:45:22.7371503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_forward_cuda_dispatch.h 2025-08-26T20:45:22.7375615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_forward_native.h 2025-08-26T20:45:22.7379998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_forward_ops.h 2025-08-26T20:45:22.7384303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_draw.h 2025-08-26T20:45:22.7388344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_draw_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.7392168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_draw_native.h 2025-08-26T20:45:22.7396223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_draw_ops.h 2025-08-26T20:45:22.7400355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_ff.h 2025-08-26T20:45:22.7404476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_ff_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.7408277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_ff_native.h 2025-08-26T20:45:22.7412467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_ff_ops.h 2025-08-26T20:45:22.7416450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_initialize_state.h 2025-08-26T20:45:22.7420513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_initialize_state_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.7424683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_initialize_state_native.h 2025-08-26T20:45:22.7428591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_initialize_state_ops.h 2025-08-26T20:45:22.7432671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_scramble.h 2025-08-26T20:45:22.7436772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_scramble_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.7440725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_scramble_native.h 2025-08-26T20:45:22.7444607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_scramble_ops.h 2025-08-26T20:45:22.7448491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax.h 2025-08-26T20:45:22.7452496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data.h 2025-08-26T20:45:22.7456881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.7460627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data_cpu_dispatch.h 2025-08-26T20:45:22.7464526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data_cuda_dispatch.h 2025-08-26T20:45:22.7469016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data_meta.h 2025-08-26T20:45:22.7473117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data_meta_dispatch.h 2025-08-26T20:45:22.7477380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data_native.h 2025-08-26T20:45:22.7481521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data_ops.h 2025-08-26T20:45:22.7485632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.7489702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_cpu_dispatch.h 2025-08-26T20:45:22.7494145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_cuda_dispatch.h 2025-08-26T20:45:22.7498416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_meta.h 2025-08-26T20:45:22.7502492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_meta_dispatch.h 2025-08-26T20:45:22.7506929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_native.h 2025-08-26T20:45:22.7511472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_ops.h 2025-08-26T20:45:22.7516368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_addmm.h 2025-08-26T20:45:22.7519488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_addmm_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.7523470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_addmm_native.h 2025-08-26T20:45:22.7528247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_addmm_ops.h 2025-08-26T20:45:22.7532704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to.h 2025-08-26T20:45:22.7536752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to_copy.h 2025-08-26T20:45:22.7541219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.7545538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.7549797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to_copy_native.h 2025-08-26T20:45:22.7553904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to_copy_ops.h 2025-08-26T20:45:22.7558404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to_native.h 2025-08-26T20:45:22.7562462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to_ops.h 2025-08-26T20:45:22.7566630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsc_tensor_unsafe.h 2025-08-26T20:45:22.7570783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.7575528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_native.h 2025-08-26T20:45:22.7579728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_ops.h 2025-08-26T20:45:22.7584387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsr_tensor_unsafe.h 2025-08-26T20:45:22.7588884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.7592984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_native.h 2025-08-26T20:45:22.7597074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_ops.h 2025-08-26T20:45:22.7601466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_unsafe.h 2025-08-26T20:45:22.7606053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.7610150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_native.h 2025-08-26T20:45:22.7614388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_ops.h 2025-08-26T20:45:22.7618151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_with_dims.h 2025-08-26T20:45:22.7622307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.7626339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_native.h 2025-08-26T20:45:22.7630609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_ops.h 2025-08-26T20:45:22.7635174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_unsafe.h 2025-08-26T20:45:22.7639646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_unsafe_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.7644884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_unsafe_native.h 2025-08-26T20:45:22.7648279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_unsafe_ops.h 2025-08-26T20:45:22.7652832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims.h 2025-08-26T20:45:22.7657560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors.h 2025-08-26T20:45:22.7662180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.7666201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_meta_dispatch.h 2025-08-26T20:45:22.7671514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_native.h 2025-08-26T20:45:22.7675785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_ops.h 2025-08-26T20:45:22.7679979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.7683854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_meta_dispatch.h 2025-08-26T20:45:22.7688165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_native.h 2025-08-26T20:45:22.7693209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_ops.h 2025-08-26T20:45:22.7697741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csc_tensor_unsafe.h 2025-08-26T20:45:22.7708190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csc_tensor_unsafe_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.7708986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csc_tensor_unsafe_native.h 2025-08-26T20:45:22.7713729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csc_tensor_unsafe_ops.h 2025-08-26T20:45:22.7718871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_prod.h 2025-08-26T20:45:22.7723346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_prod_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.7727872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_prod_native.h 2025-08-26T20:45:22.7732385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_prod_ops.h 2025-08-26T20:45:22.7737161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_sum.h 2025-08-26T20:45:22.7741576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_sum_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.7746145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_sum_native.h 2025-08-26T20:45:22.7750133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_sum_ops.h 2025-08-26T20:45:22.7754997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_tensor_unsafe.h 2025-08-26T20:45:22.7759105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_tensor_unsafe_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.7763716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_tensor_unsafe_native.h 2025-08-26T20:45:22.7768883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_tensor_unsafe_ops.h 2025-08-26T20:45:22.7773902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax.h 2025-08-26T20:45:22.7778227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_backward_data.h 2025-08-26T20:45:22.7784014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_backward_data_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.7787180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_backward_data_native.h 2025-08-26T20:45:22.7791740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_backward_data_ops.h 2025-08-26T20:45:22.7795935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.7801198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.7804407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_native.h 2025-08-26T20:45:22.7808978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_ops.h 2025-08-26T20:45:22.7814035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mask_projection.h 2025-08-26T20:45:22.7818582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mask_projection_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.7822484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mask_projection_native.h 2025-08-26T20:45:22.7827341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mask_projection_ops.h 2025-08-26T20:45:22.7831878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm.h 2025-08-26T20:45:22.7836304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.7841119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_native.h 2025-08-26T20:45:22.7845031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_ops.h 2025-08-26T20:45:22.7881591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_reduce_impl.h 2025-08-26T20:45:22.7885813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_reduce_impl_backward.h 2025-08-26T20:45:22.7890304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_reduce_impl_backward_native.h 2025-08-26T20:45:22.7894449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_reduce_impl_backward_ops.h 2025-08-26T20:45:22.7898647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_reduce_impl_native.h 2025-08-26T20:45:22.7903275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_reduce_impl_ops.h 2025-08-26T20:45:22.7908003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_addmm.h 2025-08-26T20:45:22.7911958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_addmm_cuda_dispatch.h 2025-08-26T20:45:22.7916164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_addmm_native.h 2025-08-26T20:45:22.7920959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_addmm_ops.h 2025-08-26T20:45:22.7924980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply.h 2025-08-26T20:45:22.7929457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply_cuda_dispatch.h 2025-08-26T20:45:22.7933586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply_dense.h 2025-08-26T20:45:22.7937732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply_dense_cuda_dispatch.h 2025-08-26T20:45:22.7942040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply_dense_native.h 2025-08-26T20:45:22.7946463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply_dense_ops.h 2025-08-26T20:45:22.7950340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply_native.h 2025-08-26T20:45:22.7954551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply_ops.h 2025-08-26T20:45:22.7958517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_linear.h 2025-08-26T20:45:22.7963227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_linear_cuda_dispatch.h 2025-08-26T20:45:22.7967759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_linear_native.h 2025-08-26T20:45:22.7972016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_linear_ops.h 2025-08-26T20:45:22.7976211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_mm.h 2025-08-26T20:45:22.7980274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_mm_cuda_dispatch.h 2025-08-26T20:45:22.7984735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_mm_native.h 2025-08-26T20:45:22.7988778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_mm_ops.h 2025-08-26T20:45:22.7993199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_tile.h 2025-08-26T20:45:22.7997412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_tile_cuda_dispatch.h 2025-08-26T20:45:22.8001506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_tile_native.h 2025-08-26T20:45:22.8005678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_tile_ops.h 2025-08-26T20:45:22.8009554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax.h 2025-08-26T20:45:22.8013602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_backward_data.h 2025-08-26T20:45:22.8018916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_backward_data_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.8023334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_backward_data_native.h 2025-08-26T20:45:22.8027590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_backward_data_ops.h 2025-08-26T20:45:22.8032027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.8036211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.8040350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_native.h 2025-08-26T20:45:22.8044436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_ops.h 2025-08-26T20:45:22.8048295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sparse_matmul.h 2025-08-26T20:45:22.8052405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sparse_matmul_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.8056263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sparse_matmul_native.h 2025-08-26T20:45:22.8060535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sparse_matmul_ops.h 2025-08-26T20:45:22.8064601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum.h 2025-08-26T20:45:22.8068614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_backward.h 2025-08-26T20:45:22.8073070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.8077327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_backward_native.h 2025-08-26T20:45:22.8081727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_backward_ops.h 2025-08-26T20:45:22.8085886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.8089883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.8093964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_native.h 2025-08-26T20:45:22.8098092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_ops.h 2025-08-26T20:45:22.8102226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spdiags.h 2025-08-26T20:45:22.8106219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spdiags_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.8110134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spdiags_cpu_dispatch.h 2025-08-26T20:45:22.8113892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spdiags_native.h 2025-08-26T20:45:22.8118345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spdiags_ops.h 2025-08-26T20:45:22.8122591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spsolve.h 2025-08-26T20:45:22.8126455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spsolve_native.h 2025-08-26T20:45:22.8131060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spsolve_ops.h 2025-08-26T20:45:22.8135631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_stack.h 2025-08-26T20:45:22.8139230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_stack_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.8143603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_stack_cpu_dispatch.h 2025-08-26T20:45:22.8147614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_stack_native.h 2025-08-26T20:45:22.8151395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_stack_ops.h 2025-08-26T20:45:22.8155571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma.h 2025-08-26T20:45:22.8159886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.8164510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_cpu_dispatch.h 2025-08-26T20:45:22.8167967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_cuda_dispatch.h 2025-08-26T20:45:22.8172478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_grad.h 2025-08-26T20:45:22.8176825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_grad_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.8181851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_grad_cpu_dispatch.h 2025-08-26T20:45:22.8185246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_grad_cuda_dispatch.h 2025-08-26T20:45:22.8189958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_grad_native.h 2025-08-26T20:45:22.8194178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_grad_ops.h 2025-08-26T20:45:22.8199154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_native.h 2025-08-26T20:45:22.8203349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_ops.h 2025-08-26T20:45:22.8207627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_ambiguous_defaults.h 2025-08-26T20:45:22.8211732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_ambiguous_defaults_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.8216538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_ambiguous_defaults_native.h 2025-08-26T20:45:22.8220775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_ambiguous_defaults_ops.h 2025-08-26T20:45:22.8225862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch.h 2025-08-26T20:45:22.8230177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.8234857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.8239351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_native.h 2025-08-26T20:45:22.8243503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_ops.h 2025-08-26T20:45:22.8247707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view.h 2025-08-26T20:45:22.8252436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.8256901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy.h 2025-08-26T20:45:22.8261348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.8265469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.8269763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_native.h 2025-08-26T20:45:22.8274274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_ops.h 2025-08-26T20:45:22.8278598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_native.h 2025-08-26T20:45:22.8282711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_ops.h 2025-08-26T20:45:22.8288233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_check_tensor.h 2025-08-26T20:45:22.8292161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_check_tensor_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.8296511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_check_tensor_native.h 2025-08-26T20:45:22.8300824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_check_tensor_ops.h 2025-08-26T20:45:22.8305324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_functorch_fallback.h 2025-08-26T20:45:22.8309673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_functorch_fallback_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.8313816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_functorch_fallback_cpu_dispatch.h 2025-08-26T20:45:22.8317951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_functorch_fallback_native.h 2025-08-26T20:45:22.8321975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_functorch_fallback_ops.h 2025-08-26T20:45:22.8326520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_filled_intlist.h 2025-08-26T20:45:22.8331022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_filled_intlist_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.8334977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_filled_intlist_cpu_dispatch.h 2025-08-26T20:45:22.8339153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_filled_intlist_native.h 2025-08-26T20:45:22.8343351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_filled_intlist_ops.h 2025-08-26T20:45:22.8347582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_floatlist.h 2025-08-26T20:45:22.8351769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_floatlist_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.8356364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_floatlist_cpu_dispatch.h 2025-08-26T20:45:22.8360837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_floatlist_native.h 2025-08-26T20:45:22.8364769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_floatlist_ops.h 2025-08-26T20:45:22.8368769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_intlist.h 2025-08-26T20:45:22.8373447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_intlist_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.8377907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_intlist_cpu_dispatch.h 2025-08-26T20:45:22.8382262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_intlist_native.h 2025-08-26T20:45:22.8386378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_intlist_ops.h 2025-08-26T20:45:22.8390880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_parallel_materialize.h 2025-08-26T20:45:22.8395064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_parallel_materialize_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.8399410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_parallel_materialize_native.h 2025-08-26T20:45:22.8404009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_parallel_materialize_ops.h 2025-08-26T20:45:22.8407941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_serialization_subcmul.h 2025-08-26T20:45:22.8412082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_serialization_subcmul_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.8415988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_serialization_subcmul_native.h 2025-08-26T20:45:22.8420173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_serialization_subcmul_ops.h 2025-08-26T20:45:22.8424541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_string_default.h 2025-08-26T20:45:22.8429124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_string_default_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.8433626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_string_default_native.h 2025-08-26T20:45:22.8437469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_string_default_ops.h 2025-08-26T20:45:22.8441338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_warn_in_autograd.h 2025-08-26T20:45:22.8446086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_warn_in_autograd_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.8449991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_warn_in_autograd_native.h 2025-08-26T20:45:22.8454043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_warn_in_autograd_ops.h 2025-08-26T20:45:22.8458164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward.h 2025-08-26T20:45:22.8462296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.8466486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_native.h 2025-08-26T20:45:22.8470386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_ops.h 2025-08-26T20:45:22.8474621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward.h 2025-08-26T20:45:22.8479167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.8483298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_native.h 2025-08-26T20:45:22.8487307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_ops.h 2025-08-26T20:45:22.8491416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell.h 2025-08-26T20:45:22.8495639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_backward.h 2025-08-26T20:45:22.8500034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.8504089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_backward_cuda_dispatch.h 2025-08-26T20:45:22.8508448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_backward_native.h 2025-08-26T20:45:22.8512419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_backward_ops.h 2025-08-26T20:45:22.8519295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.8524865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_cuda_dispatch.h 2025-08-26T20:45:22.8529126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_native.h 2025-08-26T20:45:22.8533303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_ops.h 2025-08-26T20:45:22.8537308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell.h 2025-08-26T20:45:22.8541286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward.h 2025-08-26T20:45:22.8545566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.8549888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl.h 2025-08-26T20:45:22.8554384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.8558153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_cuda_dispatch.h 2025-08-26T20:45:22.8562083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_native.h 2025-08-26T20:45:22.8566490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_ops.h 2025-08-26T20:45:22.8570484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_native.h 2025-08-26T20:45:22.8574685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_ops.h 2025-08-26T20:45:22.8579505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.8583585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_cuda_dispatch.h 2025-08-26T20:45:22.8587618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_native.h 2025-08-26T20:45:22.8592840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_ops.h 2025-08-26T20:45:22.8596745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_copy.h 2025-08-26T20:45:22.8600438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.8604670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_copy_native.h 2025-08-26T20:45:22.8608477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_copy_ops.h 2025-08-26T20:45:22.8612313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_cpu.h 2025-08-26T20:45:22.8615990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_cpu_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.8622027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_cpu_native.h 2025-08-26T20:45:22.8627153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_cpu_ops.h 2025-08-26T20:45:22.8632380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_dense.h 2025-08-26T20:45:22.8637622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_dense_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.8642909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_dense_native.h 2025-08-26T20:45:22.8646979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_dense_ops.h 2025-08-26T20:45:22.8652115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse.h 2025-08-26T20:45:22.8657384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsc.h 2025-08-26T20:45:22.8663067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsc_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.8668602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsc_cpu_dispatch.h 2025-08-26T20:45:22.8673972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsc_cuda_dispatch.h 2025-08-26T20:45:22.8679359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsc_native.h 2025-08-26T20:45:22.8684594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsc_ops.h 2025-08-26T20:45:22.8690159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsr.h 2025-08-26T20:45:22.8695757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsr_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.8700279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsr_cpu_dispatch.h 2025-08-26T20:45:22.8705812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsr_cuda_dispatch.h 2025-08-26T20:45:22.8711180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsr_native.h 2025-08-26T20:45:22.8716441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsr_ops.h 2025-08-26T20:45:22.8722286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.8727603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_cpu_dispatch.h 2025-08-26T20:45:22.8733203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csc.h 2025-08-26T20:45:22.8738574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csc_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.8744216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csc_cpu_dispatch.h 2025-08-26T20:45:22.8749607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csc_cuda_dispatch.h 2025-08-26T20:45:22.8755225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csc_native.h 2025-08-26T20:45:22.8760988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csc_ops.h 2025-08-26T20:45:22.8767206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csr.h 2025-08-26T20:45:22.8772866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csr_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.8778345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csr_cpu_dispatch.h 2025-08-26T20:45:22.8782805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csr_cuda_dispatch.h 2025-08-26T20:45:22.8788426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csr_native.h 2025-08-26T20:45:22.8793586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csr_ops.h 2025-08-26T20:45:22.8798840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_cuda_dispatch.h 2025-08-26T20:45:22.8804177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_native.h 2025-08-26T20:45:22.8809643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_ops.h 2025-08-26T20:45:22.8814767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_semi_structured.h 2025-08-26T20:45:22.8820061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_semi_structured_cuda_dispatch.h 2025-08-26T20:45:22.8824326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_semi_structured_native.h 2025-08-26T20:45:22.8829878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_semi_structured_ops.h 2025-08-26T20:45:22.8835238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transformer_encoder_layer_fwd.h 2025-08-26T20:45:22.8840568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transformer_encoder_layer_fwd_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.8846479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transformer_encoder_layer_fwd_cpu_dispatch.h 2025-08-26T20:45:22.8852058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transformer_encoder_layer_fwd_cuda_dispatch.h 2025-08-26T20:45:22.8857355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transformer_encoder_layer_fwd_native.h 2025-08-26T20:45:22.8862715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transformer_encoder_layer_fwd_ops.h 2025-08-26T20:45:22.8868783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transform_bias_rescale_qkv.h 2025-08-26T20:45:22.8908993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transform_bias_rescale_qkv_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.8914813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transform_bias_rescale_qkv_cpu_dispatch.h 2025-08-26T20:45:22.8920571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transform_bias_rescale_qkv_cuda_dispatch.h 2025-08-26T20:45:22.8926393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transform_bias_rescale_qkv_native.h 2025-08-26T20:45:22.8932900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transform_bias_rescale_qkv_ops.h 2025-08-26T20:45:22.8937417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_trilinear.h 2025-08-26T20:45:22.8941591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_trilinear_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.8947163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_trilinear_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.8950914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_trilinear_native.h 2025-08-26T20:45:22.8954733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_trilinear_ops.h 2025-08-26T20:45:22.8960274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_multi_head_attention.h 2025-08-26T20:45:22.8974607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_multi_head_attention_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.8975563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_multi_head_attention_cuda_dispatch.h 2025-08-26T20:45:22.8976330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_multi_head_attention_native.h 2025-08-26T20:45:22.8977048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_multi_head_attention_ops.h 2025-08-26T20:45:22.8980888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_scaled_dot_attention.h 2025-08-26T20:45:22.8985063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_scaled_dot_attention_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.8989337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_scaled_dot_attention_cuda_dispatch.h 2025-08-26T20:45:22.8994570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_scaled_dot_attention_native.h 2025-08-26T20:45:22.8998951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_scaled_dot_attention_ops.h 2025-08-26T20:45:22.9002950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique.h 2025-08-26T20:45:22.9006498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique2.h 2025-08-26T20:45:22.9010184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique2_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.9014151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique2_cpu_dispatch.h 2025-08-26T20:45:22.9018214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique2_cuda_dispatch.h 2025-08-26T20:45:22.9022173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique2_native.h 2025-08-26T20:45:22.9027424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique2_ops.h 2025-08-26T20:45:22.9031446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.9035203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique_cpu_dispatch.h 2025-08-26T20:45:22.9039586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique_cuda_dispatch.h 2025-08-26T20:45:22.9043485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique_native.h 2025-08-26T20:45:22.9048883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique_ops.h 2025-08-26T20:45:22.9054411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unpack_dual.h 2025-08-26T20:45:22.9059988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unpack_dual_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.9064898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unpack_dual_native.h 2025-08-26T20:45:22.9098555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unpack_dual_ops.h 2025-08-26T20:45:22.9133442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index.h 2025-08-26T20:45:22.9138616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.9143982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index_native.h 2025-08-26T20:45:22.9149565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index_ops.h 2025-08-26T20:45:22.9154744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index_put.h 2025-08-26T20:45:22.9160400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index_put_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.9165540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index_put_native.h 2025-08-26T20:45:22.9170920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index_put_ops.h 2025-08-26T20:45:22.9176367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index.h 2025-08-26T20:45:22.9182252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.9187879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index_native.h 2025-08-26T20:45:22.9191912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index_ops.h 2025-08-26T20:45:22.9197224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index_put_accumulate.h 2025-08-26T20:45:22.9202864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.9208273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_native.h 2025-08-26T20:45:22.9213599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_ops.h 2025-08-26T20:45:22.9218921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_view.h 2025-08-26T20:45:22.9224267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_view_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.9230219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_view_native.h 2025-08-26T20:45:22.9235458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_view_ops.h 2025-08-26T20:45:22.9239735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa.h 2025-08-26T20:45:22.9245124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward.h 2025-08-26T20:45:22.9250636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.9256161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_cpu_dispatch.h 2025-08-26T20:45:22.9261671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_cuda_dispatch.h 2025-08-26T20:45:22.9266958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_meta.h 2025-08-26T20:45:22.9272842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_meta_dispatch.h 2025-08-26T20:45:22.9278288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_native.h 2025-08-26T20:45:22.9283960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_ops.h 2025-08-26T20:45:22.9289693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.9295059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.9300948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_cpu_dispatch.h 2025-08-26T20:45:22.9306380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_cuda_dispatch.h 2025-08-26T20:45:22.9310518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_meta.h 2025-08-26T20:45:22.9315806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_meta_dispatch.h 2025-08-26T20:45:22.9321055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_native.h 2025-08-26T20:45:22.9326800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_ops.h 2025-08-26T20:45:22.9332622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa.h 2025-08-26T20:45:22.9337969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward.h 2025-08-26T20:45:22.9343542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.9349432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_cpu_dispatch.h 2025-08-26T20:45:22.9354907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_cuda_dispatch.h 2025-08-26T20:45:22.9360582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_meta.h 2025-08-26T20:45:22.9366114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_meta_dispatch.h 2025-08-26T20:45:22.9371994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_native.h 2025-08-26T20:45:22.9377963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_ops.h 2025-08-26T20:45:22.9382201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.9387137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.9391515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_cpu_dispatch.h 2025-08-26T20:45:22.9395764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_cuda_dispatch.h 2025-08-26T20:45:22.9399737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_meta.h 2025-08-26T20:45:22.9403774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_meta_dispatch.h 2025-08-26T20:45:22.9408133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_native.h 2025-08-26T20:45:22.9412319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_ops.h 2025-08-26T20:45:22.9416362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d.h 2025-08-26T20:45:22.9420336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward.h 2025-08-26T20:45:22.9424912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.9429312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_cpu_dispatch.h 2025-08-26T20:45:22.9433899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_cuda_dispatch.h 2025-08-26T20:45:22.9438282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_meta.h 2025-08-26T20:45:22.9442489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_meta_dispatch.h 2025-08-26T20:45:22.9446400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_native.h 2025-08-26T20:45:22.9451435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_ops.h 2025-08-26T20:45:22.9456150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.9460148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.9464115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_cpu_dispatch.h 2025-08-26T20:45:22.9468302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_cuda_dispatch.h 2025-08-26T20:45:22.9472486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_meta.h 2025-08-26T20:45:22.9476795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_meta_dispatch.h 2025-08-26T20:45:22.9480853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_native.h 2025-08-26T20:45:22.9484946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_ops.h 2025-08-26T20:45:22.9488875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d.h 2025-08-26T20:45:22.9492975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward.h 2025-08-26T20:45:22.9497196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.9501580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_cpu_dispatch.h 2025-08-26T20:45:22.9506116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_cuda_dispatch.h 2025-08-26T20:45:22.9510188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_meta.h 2025-08-26T20:45:22.9514565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_meta_dispatch.h 2025-08-26T20:45:22.9518648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_native.h 2025-08-26T20:45:22.9522921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_ops.h 2025-08-26T20:45:22.9527255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.9531192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.9534993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_cpu_dispatch.h 2025-08-26T20:45:22.9539544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_cuda_dispatch.h 2025-08-26T20:45:22.9544005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_meta.h 2025-08-26T20:45:22.9548238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_meta_dispatch.h 2025-08-26T20:45:22.9552407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_native.h 2025-08-26T20:45:22.9556387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_ops.h 2025-08-26T20:45:22.9561006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d.h 2025-08-26T20:45:22.9565082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward.h 2025-08-26T20:45:22.9569279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.9573458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_cpu_dispatch.h 2025-08-26T20:45:22.9577692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_cuda_dispatch.h 2025-08-26T20:45:22.9581940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_meta.h 2025-08-26T20:45:22.9586147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_meta_dispatch.h 2025-08-26T20:45:22.9590305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_native.h 2025-08-26T20:45:22.9594482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_ops.h 2025-08-26T20:45:22.9598707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.9603291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.9607653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_cpu_dispatch.h 2025-08-26T20:45:22.9611745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_cuda_dispatch.h 2025-08-26T20:45:22.9615864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_meta.h 2025-08-26T20:45:22.9620284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_meta_dispatch.h 2025-08-26T20:45:22.9624460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_native.h 2025-08-26T20:45:22.9629052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_ops.h 2025-08-26T20:45:22.9633865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_ctc_loss.h 2025-08-26T20:45:22.9637912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_ctc_loss_cuda_dispatch.h 2025-08-26T20:45:22.9641850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_ctc_loss_native.h 2025-08-26T20:45:22.9645773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_ctc_loss_ops.h 2025-08-26T20:45:22.9649919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight.h 2025-08-26T20:45:22.9654445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.9659697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_native.h 2025-08-26T20:45:22.9664108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_ops.h 2025-08-26T20:45:22.9668286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_compressed_sparse_indices.h 2025-08-26T20:45:22.9672612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_compressed_sparse_indices_cpu_dispatch.h 2025-08-26T20:45:22.9676838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_compressed_sparse_indices_cuda_dispatch.h 2025-08-26T20:45:22.9681145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_compressed_sparse_indices_native.h 2025-08-26T20:45:22.9685490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_compressed_sparse_indices_ops.h 2025-08-26T20:45:22.9689537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsc_tensor_args.h 2025-08-26T20:45:22.9693978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.9697897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_native.h 2025-08-26T20:45:22.9702515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_ops.h 2025-08-26T20:45:22.9706870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsr_tensor_args.h 2025-08-26T20:45:22.9711316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.9715380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_native.h 2025-08-26T20:45:22.9719453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_ops.h 2025-08-26T20:45:22.9723802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_compressed_tensor_args.h 2025-08-26T20:45:22.9728798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.9733302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_native.h 2025-08-26T20:45:22.9737727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_ops.h 2025-08-26T20:45:22.9741740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_coo_tensor_args.h 2025-08-26T20:45:22.9746009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_coo_tensor_args_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.9750359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_coo_tensor_args_native.h 2025-08-26T20:45:22.9754741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_coo_tensor_args_ops.h 2025-08-26T20:45:22.9758829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csc_tensor_args.h 2025-08-26T20:45:22.9763082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csc_tensor_args_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.9767092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csc_tensor_args_native.h 2025-08-26T20:45:22.9771660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csc_tensor_args_ops.h 2025-08-26T20:45:22.9776379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csr_tensor_args.h 2025-08-26T20:45:22.9780725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csr_tensor_args_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.9785102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csr_tensor_args_native.h 2025-08-26T20:45:22.9789573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csr_tensor_args_ops.h 2025-08-26T20:45:22.9793812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values.h 2025-08-26T20:45:22.9797441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values_copy.h 2025-08-26T20:45:22.9801730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-26T20:45:22.9806135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values_copy_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.9810289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values_copy_native.h 2025-08-26T20:45:22.9814385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values_copy_ops.h 2025-08-26T20:45:22.9818250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values_native.h 2025-08-26T20:45:22.9822393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values_ops.h 2025-08-26T20:45:22.9827089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_version.h 2025-08-26T20:45:22.9830885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_version_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.9834769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_version_native.h 2025-08-26T20:45:22.9838772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_version_ops.h 2025-08-26T20:45:22.9842704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm.h 2025-08-26T20:45:22.9846553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_cuda_dispatch.h 2025-08-26T20:45:22.9850880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_for_cpu.h 2025-08-26T20:45:22.9854886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_cpu_dispatch.h 2025-08-26T20:45:22.9859311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_native.h 2025-08-26T20:45:22.9863335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_ops.h 2025-08-26T20:45:22.9867364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_native.h 2025-08-26T20:45:22.9871294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_ops.h 2025-08-26T20:45:22.9875734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_with_scales_and_zeros.h 2025-08-26T20:45:22.9879942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_with_scales_and_zeros_native.h 2025-08-26T20:45:22.9884258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_with_scales_and_zeros_ops.h 2025-08-26T20:45:22.9888632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int8pack_mm.h 2025-08-26T20:45:22.9892648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int8pack_mm_cpu_dispatch.h 2025-08-26T20:45:22.9896645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int8pack_mm_cuda_dispatch.h 2025-08-26T20:45:22.9900751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int8pack_mm_native.h 2025-08-26T20:45:22.9904796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int8pack_mm_ops.h 2025-08-26T20:45:22.9908954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm.h 2025-08-26T20:45:22.9913649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.9917810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_differentiable_backward.h 2025-08-26T20:45:22.9922150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_differentiable_backward_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:22.9926122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_differentiable_backward_native.h 2025-08-26T20:45:22.9930547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_differentiable_backward_ops.h 2025-08-26T20:45:22.9934795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface.h 2025-08-26T20:45:22.9939120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_backward.h 2025-08-26T20:45:22.9943786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_backward_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.9948601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_backward_cpu_dispatch.h 2025-08-26T20:45:22.9952867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_backward_cuda_dispatch.h 2025-08-26T20:45:22.9957778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_backward_native.h 2025-08-26T20:45:22.9961827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_backward_ops.h 2025-08-26T20:45:22.9965892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_compositeexplicitautograd_dispatch.h 2025-08-26T20:45:22.9969731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_cpu_dispatch.h 2025-08-26T20:45:22.9974222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_cuda_dispatch.h 2025-08-26T20:45:22.9978217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_native.h 2025-08-26T20:45:22.9982675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_ops.h 2025-08-26T20:45:22.9987049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_native.h 2025-08-26T20:45:22.9991153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_ops.h 2025-08-26T20:45:22.9995106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_linear_prepack.h 2025-08-26T20:45:22.9999318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_linear_prepack_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:23.0003115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_linear_prepack_native.h 2025-08-26T20:45:23.0007043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_linear_prepack_ops.h 2025-08-26T20:45:23.0010941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_quantized_linear_prepacked.h 2025-08-26T20:45:23.0015039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_compositeimplicitautograd_dispatch.h 2025-08-26T20:45:23.0018873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_native.h 2025-08-26T20:45:23.0023396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_ops.h 2025-08-26T20:45:23.0273185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\quantized\QTensorImpl.h 2025-08-26T20:45:23.0276445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\quantized\Quantizer.h 2025-08-26T20:45:23.0284737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\xpu\CachingHostAllocator.h 2025-08-26T20:45:23.0288328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\xpu\PinnedMemoryAllocator.h 2025-08-26T20:45:23.0291780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\xpu\XPUContext.h 2025-08-26T20:45:23.0295296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\xpu\XPUDevice.h 2025-08-26T20:45:23.0383607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\xpu\XPUEvent.h 2025-08-26T20:45:23.0387190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\xpu\XPUGeneratorImpl.h 2025-08-26T20:45:23.0394077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\xpu\detail\XPUHooks.h 2025-08-26T20:45:23.0406904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\alignment.h 2025-08-26T20:45:23.0410373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Allocator.h 2025-08-26T20:45:23.0414024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\AllocatorConfig.h 2025-08-26T20:45:23.0417472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\AutogradState.h 2025-08-26T20:45:23.0425499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Backend.h 2025-08-26T20:45:23.0429764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\CachingDeviceAllocator.h 2025-08-26T20:45:23.0433349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\CompileTimeFunctionPointer.h 2025-08-26T20:45:23.0437245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\ConstantSymNodeImpl.h 2025-08-26T20:45:23.0440547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Contiguity.h 2025-08-26T20:45:23.0443763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\CopyBytes.h 2025-08-26T20:45:23.0447268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\CPUAllocator.h 2025-08-26T20:45:23.0450992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DefaultDtype.h 2025-08-26T20:45:23.0454558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DefaultTensorOptions.h 2025-08-26T20:45:23.0458168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Device.h 2025-08-26T20:45:23.0461574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DeviceArray.h 2025-08-26T20:45:23.0465260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DeviceGuard.h 2025-08-26T20:45:23.0469874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DeviceType.h 2025-08-26T20:45:23.0472366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DispatchKey.h 2025-08-26T20:45:23.0476193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DispatchKeySet.h 2025-08-26T20:45:23.0479960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DynamicCast.h 2025-08-26T20:45:23.0487708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Event.h 2025-08-26T20:45:23.0491037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\GeneratorImpl.h 2025-08-26T20:45:23.0495267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\GradMode.h 2025-08-26T20:45:23.0498968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\InferenceMode.h 2025-08-26T20:45:23.0502466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Layout.h 2025-08-26T20:45:23.0505897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\MemoryFormat.h 2025-08-26T20:45:23.0509348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\OptionalRef.h 2025-08-26T20:45:23.0512861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\PyHandleCache.h 2025-08-26T20:45:23.0516519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\QEngine.h 2025-08-26T20:45:23.0519833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\QScheme.h 2025-08-26T20:45:23.0523227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\RefcountedDeleter.h 2025-08-26T20:45:23.0526876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\SafePyObject.h 2025-08-26T20:45:23.0535696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Scalar.h 2025-08-26T20:45:23.0538258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\ScalarType.h 2025-08-26T20:45:23.0541808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\ScalarTypeToTypeMeta.h 2025-08-26T20:45:23.0545573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Storage.h 2025-08-26T20:45:23.0548984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\StorageImpl.h 2025-08-26T20:45:23.0552447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Stream.h 2025-08-26T20:45:23.0555817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\StreamGuard.h 2025-08-26T20:45:23.0559283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\SymbolicShapeMeta.h 2025-08-26T20:45:23.0562681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\SymBool.h 2025-08-26T20:45:23.0566174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\SymFloat.h 2025-08-26T20:45:23.0569551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\SymInt.h 2025-08-26T20:45:23.0575710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\SymIntArrayRef.h 2025-08-26T20:45:23.0597290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\SymNodeImpl.h 2025-08-26T20:45:23.0600802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\TensorImpl.h 2025-08-26T20:45:23.0605473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\TensorOptions.h 2025-08-26T20:45:23.0609101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\thread_pool.h 2025-08-26T20:45:23.0612839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\UndefinedTensorImpl.h 2025-08-26T20:45:23.0616539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\WrapDimMinimal.h 2025-08-26T20:45:23.0624525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\alloc_cpu.h 2025-08-26T20:45:23.0628098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\COW.h 2025-08-26T20:45:23.0632435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\COWDeleter.h 2025-08-26T20:45:23.0636282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\DeviceGuardImplInterface.h 2025-08-26T20:45:23.0644478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\FakeGuardImpl.h 2025-08-26T20:45:23.0648243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\GPUTrace.h 2025-08-26T20:45:23.0651709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\HermeticPyObjectTLS.h 2025-08-26T20:45:23.0655905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\InlineDeviceGuard.h 2025-08-26T20:45:23.0659656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\InlineEvent.h 2025-08-26T20:45:23.0663245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\InlineStreamGuard.h 2025-08-26T20:45:23.0666785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\LocalDispatchKeySet.h 2025-08-26T20:45:23.0670341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\PyInterpreter.h 2025-08-26T20:45:23.0673890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\PyInterpreterHooks.h 2025-08-26T20:45:23.0677522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\PyObjectSlot.h 2025-08-26T20:45:23.0681032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\PythonDispatcherTLS.h 2025-08-26T20:45:23.0684558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\SizesAndStrides.h 2025-08-26T20:45:23.0688284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\TorchDispatchModeTLS.h 2025-08-26T20:45:23.0691919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\VirtualGuardImpl.h 2025-08-26T20:45:23.0701401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAAlgorithm.h 2025-08-26T20:45:23.0705087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAAllocatorConfig.h 2025-08-26T20:45:23.0708548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDACachingAllocator.h 2025-08-26T20:45:23.0712024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDADeviceAssertion.h 2025-08-26T20:45:23.0720161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDADeviceAssertionHost.h 2025-08-26T20:45:23.0723664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAException.h 2025-08-26T20:45:23.0727036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAFunctions.h 2025-08-26T20:45:23.0730451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAGraphsC10Utils.h 2025-08-26T20:45:23.0733993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAGuard.h 2025-08-26T20:45:23.0737474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAMacros.h 2025-08-26T20:45:23.0741042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAMathCompat.h 2025-08-26T20:45:23.0744867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAMiscFunctions.h 2025-08-26T20:45:23.0749382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAStream.h 2025-08-26T20:45:23.0753170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\driver_api.h 2025-08-26T20:45:23.0760981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\impl\CUDAGuardImpl.h 2025-08-26T20:45:23.0764542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\impl\CUDATest.h 2025-08-26T20:45:23.0772276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\macros\cmake_macros.h 2025-08-26T20:45:23.0775740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\macros\Export.h 2025-08-26T20:45:23.0778974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\macros\Macros.h 2025-08-26T20:45:23.0786018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\atomic.h 2025-08-26T20:45:23.0789743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\common.h 2025-08-26T20:45:23.0793258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\expm1f.h 2025-08-26T20:45:23.0796588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\indexing.h 2025-08-26T20:45:23.0799902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\random.h 2025-08-26T20:45:23.0803209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\reduction_utils.h 2025-08-26T20:45:23.0811350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\special_math.h 2025-08-26T20:45:23.0815733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\utils.h 2025-08-26T20:45:23.0822703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\mobile\CPUCachingAllocator.h 2025-08-26T20:45:23.0826290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\mobile\CPUProfilingAllocator.h 2025-08-26T20:45:23.0837922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\test\util\complex_math_test_common.h 2025-08-26T20:45:23.0841571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\test\util\complex_test_common.h 2025-08-26T20:45:23.0845003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\test\util\Macros.h 2025-08-26T20:45:23.0853559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\AbortHandler.h 2025-08-26T20:45:23.0857507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\accumulate.h 2025-08-26T20:45:23.0860682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\AlignOf.h 2025-08-26T20:45:23.0864130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ApproximateClock.h 2025-08-26T20:45:23.0872372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Array.h 2025-08-26T20:45:23.0876048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ArrayRef.h 2025-08-26T20:45:23.0879375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Backtrace.h 2025-08-26T20:45:23.0883469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\BFloat16-inl.h 2025-08-26T20:45:23.0887126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\BFloat16-math.h 2025-08-26T20:45:23.0890744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\BFloat16.h 2025-08-26T20:45:23.0894945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\bits.h 2025-08-26T20:45:23.0898314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Bitset.h 2025-08-26T20:45:23.0901855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\bit_cast.h 2025-08-26T20:45:23.0905603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\C++17.h 2025-08-26T20:45:23.0909290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\CallOnce.h 2025-08-26T20:45:23.0912757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\complex.h 2025-08-26T20:45:23.0916315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\complex_math.h 2025-08-26T20:45:23.0920098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\complex_utils.h 2025-08-26T20:45:23.0924482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ConstexprCrc.h 2025-08-26T20:45:23.0928135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\copysign.h 2025-08-26T20:45:23.0931699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\DeadlockDetection.h 2025-08-26T20:45:23.0935372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Deprecated.h 2025-08-26T20:45:23.0938908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\DimVector.h 2025-08-26T20:45:23.0942628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\DynamicCounter.h 2025-08-26T20:45:23.0950713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Enumerate.h 2025-08-26T20:45:23.0954185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\env.h 2025-08-26T20:45:23.0957509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\error.h 2025-08-26T20:45:23.0960887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Exception.h 2025-08-26T20:45:23.0964640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ExclusivelyOwned.h 2025-08-26T20:45:23.0968221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ExclusivelyOwnedTensorTraits.h 2025-08-26T20:45:23.0971699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\FbcodeMaps.h 2025-08-26T20:45:23.0975436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Flags.h 2025-08-26T20:45:23.0979654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\flat_hash_map.h 2025-08-26T20:45:23.0983738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float4_e2m1fn_x2.h 2025-08-26T20:45:23.0987279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e4m3fn-inl.h 2025-08-26T20:45:23.0994779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e4m3fn.h 2025-08-26T20:45:23.0998320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e4m3fnuz-inl.h 2025-08-26T20:45:23.1001857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e4m3fnuz.h 2025-08-26T20:45:23.1005678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e5m2-inl.h 2025-08-26T20:45:23.1009532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e5m2.h 2025-08-26T20:45:23.1013512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e5m2fnuz-inl.h 2025-08-26T20:45:23.1017148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e5m2fnuz.h 2025-08-26T20:45:23.1020743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e8m0fnu-inl.h 2025-08-26T20:45:23.1024407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e8m0fnu.h 2025-08-26T20:45:23.1032215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\floating_point_utils.h 2025-08-26T20:45:23.1035645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\FunctionRef.h 2025-08-26T20:45:23.1039441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Gauge.h 2025-08-26T20:45:23.1043149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\generic_math.h 2025-08-26T20:45:23.1046751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Half-inl.h 2025-08-26T20:45:23.1050238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Half.h 2025-08-26T20:45:23.1053886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\hash.h 2025-08-26T20:45:23.1057299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\IdWrapper.h 2025-08-26T20:45:23.1060816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\int128.h 2025-08-26T20:45:23.1064314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\IntrusiveList.h 2025-08-26T20:45:23.1067977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\intrusive_ptr.h 2025-08-26T20:45:23.1071665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\irange.h 2025-08-26T20:45:23.1075043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Lazy.h 2025-08-26T20:45:23.1078443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\LeftRight.h 2025-08-26T20:45:23.1086548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\llvmMathExtras.h 2025-08-26T20:45:23.1090987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Load.h 2025-08-26T20:45:23.1094778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Logging.h 2025-08-26T20:45:23.1098199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\logging_is_google_glog.h 2025-08-26T20:45:23.1101812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\logging_is_not_google_glog.h 2025-08-26T20:45:23.1105514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\MathConstants.h 2025-08-26T20:45:23.1109214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\MaybeOwned.h 2025-08-26T20:45:23.1112695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Metaprogramming.h 2025-08-26T20:45:23.1116182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\NetworkFlow.h 2025-08-26T20:45:23.1119924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\numa.h 2025-08-26T20:45:23.1123411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Optional.h 2025-08-26T20:45:23.1134585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\OptionalArrayRef.h 2025-08-26T20:45:23.1138076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\order_preserving_flat_hash_map.h 2025-08-26T20:45:23.1142039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\overflows.h 2025-08-26T20:45:23.1145764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\overloaded.h 2025-08-26T20:45:23.1149755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ParallelGuard.h 2025-08-26T20:45:23.1153313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\python_stub.h 2025-08-26T20:45:23.1156783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\qint32.h 2025-08-26T20:45:23.1160233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\qint8.h 2025-08-26T20:45:23.1163582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\quint2x4.h 2025-08-26T20:45:23.1166907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\quint4x2.h 2025-08-26T20:45:23.1170193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\quint8.h 2025-08-26T20:45:23.1173770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Registry.h 2025-08-26T20:45:23.1177269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\safe_numerics.h 2025-08-26T20:45:23.1185118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ScopeExit.h 2025-08-26T20:45:23.1188700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Semaphore.h 2025-08-26T20:45:23.1192223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\signal_handler.h 2025-08-26T20:45:23.1196103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\SmallBuffer.h 2025-08-26T20:45:23.1199930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\SmallVector.h 2025-08-26T20:45:23.1203868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\sparse_bitset.h 2025-08-26T20:45:23.1207511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ssize.h 2025-08-26T20:45:23.1211269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\static_tracepoint.h 2025-08-26T20:45:23.1215056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\static_tracepoint_elfx86.h 2025-08-26T20:45:23.1218738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\strides.h 2025-08-26T20:45:23.1222157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\StringUtil.h 2025-08-26T20:45:23.1229955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\string_utils.h 2025-08-26T20:45:23.1233409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\string_view.h 2025-08-26T20:45:23.1237499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\strong_type.h 2025-08-26T20:45:23.1241272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Synchronized.h 2025-08-26T20:45:23.1255285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\tempfile.h 2025-08-26T20:45:23.1259513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ThreadLocal.h 2025-08-26T20:45:23.1264517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ThreadLocalDebugInfo.h 2025-08-26T20:45:23.1269775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\thread_name.h 2025-08-26T20:45:23.1274378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Type.h 2025-08-26T20:45:23.1279178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\TypeCast.h 2025-08-26T20:45:23.1282700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\typeid.h 2025-08-26T20:45:23.1288059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\TypeIndex.h 2025-08-26T20:45:23.1292873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\TypeList.h 2025-08-26T20:45:23.1297616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\TypeSafeSignMath.h 2025-08-26T20:45:23.1302447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\TypeTraits.h 2025-08-26T20:45:23.1306189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Unicode.h 2025-08-26T20:45:23.1311235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\UniqueVoidPtr.h 2025-08-26T20:45:23.1316125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Unroll.h 2025-08-26T20:45:23.1320923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\WaitCounter.h 2025-08-26T20:45:23.1325865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\WaitCounterDynamicBackend.h 2025-08-26T20:45:23.1329774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\win32-headers.h 2025-08-26T20:45:23.1347784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\XPUCachingAllocator.h 2025-08-26T20:45:23.1352670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\XPUDeviceProp.h 2025-08-26T20:45:23.1357633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\XPUException.h 2025-08-26T20:45:23.1362296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\XPUFunctions.h 2025-08-26T20:45:23.1370445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\XPUMacros.h 2025-08-26T20:45:23.1375274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\XPUStream.h 2025-08-26T20:45:23.1404083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\impl\XPUGuardImpl.h 2025-08-26T20:45:23.1417979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\test\impl\XPUTest.h 2025-08-26T20:45:23.1436407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\core\common.h 2025-08-26T20:45:23.1439821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\core\macros.h 2025-08-26T20:45:23.1443138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\core\timer.h 2025-08-26T20:45:23.1452228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\perfkernels\batch_box_cox_vec.h 2025-08-26T20:45:23.1455829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\perfkernels\common.h 2025-08-26T20:45:23.1459203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\perfkernels\embedding_lookup_idx.h 2025-08-26T20:45:23.1468451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\serialize\crc_alt.h 2025-08-26T20:45:23.1472531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\serialize\file_adapter.h 2025-08-26T20:45:23.1476418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\serialize\inline_container.h 2025-08-26T20:45:23.1480027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\serialize\in_memory_adapter.h 2025-08-26T20:45:23.1488291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\serialize\istream_adapter.h 2025-08-26T20:45:23.1492182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\serialize\read_adapter_interface.h 2025-08-26T20:45:23.1495947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\serialize\versions.h 2025-08-26T20:45:23.1503429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\fixed_divisor.h 2025-08-26T20:45:23.1506920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\proto_wrap.h 2025-08-26T20:45:23.1510350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\string_utils.h 2025-08-26T20:45:23.1522700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\threadpool\pthreadpool-cpp.h 2025-08-26T20:45:23.1526536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\threadpool\pthreadpool.h 2025-08-26T20:45:23.1530222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\threadpool\ThreadPool.h 2025-08-26T20:45:23.1538144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\threadpool\ThreadPoolCommon.h 2025-08-26T20:45:23.1541709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\threadpool\thread_pool_guard.h 2025-08-26T20:45:23.1545344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\threadpool\WorkersPool.h 2025-08-26T20:45:23.1554061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\args.h 2025-08-26T20:45:23.1557633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\base.h 2025-08-26T20:45:23.1561859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\chrono.h 2025-08-26T20:45:23.1565485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\color.h 2025-08-26T20:45:23.1568849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\compile.h 2025-08-26T20:45:23.1572336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\core.h 2025-08-26T20:45:23.1576029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\format-inl.h 2025-08-26T20:45:23.1585105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\format.h 2025-08-26T20:45:23.1589332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\os.h 2025-08-26T20:45:23.1592674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\ostream.h 2025-08-26T20:45:23.1595885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\printf.h 2025-08-26T20:45:23.1599180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\ranges.h 2025-08-26T20:45:23.1602541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\std.h 2025-08-26T20:45:23.1606091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\xchar.h 2025-08-26T20:45:23.1613337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fp16\bitcasts.h 2025-08-26T20:45:23.1616849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fp16\fp16.h 2025-08-26T20:45:23.1620107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fp16\psimd.h 2025-08-26T20:45:23.1631473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\any.h 2025-08-26T20:45:23.1634721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\any.pb.h 2025-08-26T20:45:23.1638526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\api.pb.h 2025-08-26T20:45:23.1642068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\arena.h 2025-08-26T20:45:23.1645499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\arenastring.h 2025-08-26T20:45:23.1653818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\arena_impl.h 2025-08-26T20:45:23.1657800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\descriptor.h 2025-08-26T20:45:23.1661909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\descriptor.pb.h 2025-08-26T20:45:23.1669272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\descriptor_database.h 2025-08-26T20:45:23.1672764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\duration.pb.h 2025-08-26T20:45:23.1677021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\dynamic_message.h 2025-08-26T20:45:23.1680770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\empty.pb.h 2025-08-26T20:45:23.1684353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\extension_set.h 2025-08-26T20:45:23.1688284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\extension_set_inl.h 2025-08-26T20:45:23.1691809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\field_mask.pb.h 2025-08-26T20:45:23.1695537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\generated_enum_reflection.h 2025-08-26T20:45:23.1716190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\generated_enum_util.h 2025-08-26T20:45:23.1720113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\generated_message_reflection.h 2025-08-26T20:45:23.1723864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\generated_message_table_driven.h 2025-08-26T20:45:23.1727453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\generated_message_util.h 2025-08-26T20:45:23.1735085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\has_bits.h 2025-08-26T20:45:23.1738669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\implicit_weak_message.h 2025-08-26T20:45:23.1742757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\inlined_string_field.h 2025-08-26T20:45:23.1746422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\map.h 2025-08-26T20:45:23.1750038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\map_entry.h 2025-08-26T20:45:23.1754019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\map_entry_lite.h 2025-08-26T20:45:23.1757842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\map_field.h 2025-08-26T20:45:23.1761827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\map_field_inl.h 2025-08-26T20:45:23.1765571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\map_field_lite.h 2025-08-26T20:45:23.1769292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\map_type_handler.h 2025-08-26T20:45:23.1777724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\message.h 2025-08-26T20:45:23.1781775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\message_lite.h 2025-08-26T20:45:23.1785440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\metadata.h 2025-08-26T20:45:23.1788958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\metadata_lite.h 2025-08-26T20:45:23.1792618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\parse_context.h 2025-08-26T20:45:23.1796369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\port.h 2025-08-26T20:45:23.1799775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\reflection.h 2025-08-26T20:45:23.1803378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\reflection_ops.h 2025-08-26T20:45:23.1806949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\repeated_field.h 2025-08-26T20:45:23.1811699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\service.h 2025-08-26T20:45:23.1815540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\source_context.pb.h 2025-08-26T20:45:23.1819085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\struct.pb.h 2025-08-26T20:45:23.1827304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\text_format.h 2025-08-26T20:45:23.1831011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\timestamp.pb.h 2025-08-26T20:45:23.1834504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\type.pb.h 2025-08-26T20:45:23.1839186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\unknown_field_set.h 2025-08-26T20:45:23.1842964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\wire_format.h 2025-08-26T20:45:23.1846830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\wire_format_lite.h 2025-08-26T20:45:23.1851038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\wrappers.pb.h 2025-08-26T20:45:23.1859502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\code_generator.h 2025-08-26T20:45:23.1863167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\command_line_interface.h 2025-08-26T20:45:23.1866757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\importer.h 2025-08-26T20:45:23.1870373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\parser.h 2025-08-26T20:45:23.1873874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\plugin.h 2025-08-26T20:45:23.1881275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\plugin.pb.h 2025-08-26T20:45:23.1889112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\cpp\cpp_generator.h 2025-08-26T20:45:23.1896957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\csharp\csharp_generator.h 2025-08-26T20:45:23.1900864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\csharp\csharp_names.h 2025-08-26T20:45:23.1908636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\java\java_generator.h 2025-08-26T20:45:23.1912413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\java\java_names.h 2025-08-26T20:45:23.1919806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\js\js_generator.h 2025-08-26T20:45:23.1923459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\js\well_known_types_embed.h 2025-08-26T20:45:23.1931209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\objectivec\objectivec_generator.h 2025-08-26T20:45:23.1934870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\objectivec\objectivec_helpers.h 2025-08-26T20:45:23.1942157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\php\php_generator.h 2025-08-26T20:45:23.1949441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\python\python_generator.h 2025-08-26T20:45:23.1956562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\ruby\ruby_generator.h 2025-08-26T20:45:23.1965040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\coded_stream.h 2025-08-26T20:45:23.1969039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\gzip_stream.h 2025-08-26T20:45:23.1972471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\io_win32.h 2025-08-26T20:45:23.1975768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\printer.h 2025-08-26T20:45:23.1979160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\strtod.h 2025-08-26T20:45:23.1987378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\tokenizer.h 2025-08-26T20:45:23.1990902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\zero_copy_stream.h 2025-08-26T20:45:23.1994467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\zero_copy_stream_impl.h 2025-08-26T20:45:23.1997964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\zero_copy_stream_impl_lite.h 2025-08-26T20:45:23.2007128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\bytestream.h 2025-08-26T20:45:23.2010599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\callback.h 2025-08-26T20:45:23.2014625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\casts.h 2025-08-26T20:45:23.2018173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\common.h 2025-08-26T20:45:23.2021331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\fastmem.h 2025-08-26T20:45:23.2024510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\hash.h 2025-08-26T20:45:23.2031771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\logging.h 2025-08-26T20:45:23.2035068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\macros.h 2025-08-26T20:45:23.2038763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\map_util.h 2025-08-26T20:45:23.2042169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\mutex.h 2025-08-26T20:45:23.2045554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\once.h 2025-08-26T20:45:23.2049021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\platform_macros.h 2025-08-26T20:45:23.2052270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\port.h 2025-08-26T20:45:23.2055473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\status.h 2025-08-26T20:45:23.2058827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\stl_util.h 2025-08-26T20:45:23.2062285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\stringpiece.h 2025-08-26T20:45:23.2065826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\strutil.h 2025-08-26T20:45:23.2069336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\template_util.h 2025-08-26T20:45:23.2078014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\delimited_message_util.h 2025-08-26T20:45:23.2081766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\field_comparator.h 2025-08-26T20:45:23.2085315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\field_mask_util.h 2025-08-26T20:45:23.2092686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\json_util.h 2025-08-26T20:45:23.2096178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\message_differencer.h 2025-08-26T20:45:23.2099905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\time_util.h 2025-08-26T20:45:23.2103599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\type_resolver.h 2025-08-26T20:45:23.2107305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\type_resolver_util.h 2025-08-26T20:45:23.2116524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\AbstractConfig.h 2025-08-26T20:45:23.2120043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\ActivityProfilerInterface.h 2025-08-26T20:45:23.2123470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\ActivityTraceInterface.h 2025-08-26T20:45:23.2130958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\ActivityType.h 2025-08-26T20:45:23.2134390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\ClientInterface.h 2025-08-26T20:45:23.2137809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\Config.h 2025-08-26T20:45:23.2141236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\GenericTraceActivity.h 2025-08-26T20:45:23.2145112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\IActivityProfiler.h 2025-08-26T20:45:23.2148715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\ILoggerObserver.h 2025-08-26T20:45:23.2152342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\ITraceActivity.h 2025-08-26T20:45:23.2155759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\libkineto.h 2025-08-26T20:45:23.2159342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\LoggingAPI.h 2025-08-26T20:45:23.2162812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\output_base.h 2025-08-26T20:45:23.2166811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\ThreadUtil.h 2025-08-26T20:45:23.2170664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\time_since_epoch.h 2025-08-26T20:45:23.2174144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\TraceSpan.h 2025-08-26T20:45:23.2182239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\legacy\ittnotify.h 2025-08-26T20:45:23.2189864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\mimalloc-2.2\mimalloc-new-delete.h 2025-08-26T20:45:23.2193403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\mimalloc-2.2\mimalloc-override.h 2025-08-26T20:45:23.2196848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\mimalloc-2.2\mimalloc-stats.h 2025-08-26T20:45:23.2204891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\mimalloc-2.2\mimalloc.h 2025-08-26T20:45:23.2217437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl.h 2025-08-26T20:45:23.2221971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl.hpp 2025-08-26T20:45:23.2229370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_common.h 2025-08-26T20:45:23.2233125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_common.hpp 2025-08-26T20:45:23.2236575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_common_types.h 2025-08-26T20:45:23.2244429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_config.h 2025-08-26T20:45:23.2247958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_debug.h 2025-08-26T20:45:23.2251499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_graph.h 2025-08-26T20:45:23.2255534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_graph.hpp 2025-08-26T20:45:23.2259654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_graph_ocl.h 2025-08-26T20:45:23.2263263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_graph_ocl.hpp 2025-08-26T20:45:23.2267514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_graph_sycl.h 2025-08-26T20:45:23.2271269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_graph_sycl.hpp 2025-08-26T20:45:23.2274762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_graph_types.h 2025-08-26T20:45:23.2278882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_ocl.h 2025-08-26T20:45:23.2281881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_ocl.hpp 2025-08-26T20:45:23.2285584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_ocl_types.h 2025-08-26T20:45:23.2289338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_sycl.h 2025-08-26T20:45:23.2293033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_sycl.hpp 2025-08-26T20:45:23.2296886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_sycl_types.h 2025-08-26T20:45:23.2300765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_threadpool.h 2025-08-26T20:45:23.2308407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_threadpool.hpp 2025-08-26T20:45:23.2312055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_threadpool_iface.hpp 2025-08-26T20:45:23.2315695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_types.h 2025-08-26T20:45:23.2320255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_ukernel.h 2025-08-26T20:45:23.2324240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_ukernel.hpp 2025-08-26T20:45:23.2327897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_ukernel_types.h 2025-08-26T20:45:23.2331760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_version.h 2025-08-26T20:45:23.2336061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_version_hash.h 2025-08-26T20:45:23.2346587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\attr.h 2025-08-26T20:45:23.2350280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\buffer_info.h 2025-08-26T20:45:23.2353723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\cast.h 2025-08-26T20:45:23.2357699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\chrono.h 2025-08-26T20:45:23.2361759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\common.h 2025-08-26T20:45:23.2365119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\complex.h 2025-08-26T20:45:23.2372878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\critical_section.h 2025-08-26T20:45:23.2376627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\eigen.h 2025-08-26T20:45:23.2380003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\embed.h 2025-08-26T20:45:23.2383321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\eval.h 2025-08-26T20:45:23.2386712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\functional.h 2025-08-26T20:45:23.2390033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\gil.h 2025-08-26T20:45:23.2393631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\gil_safe_call_once.h 2025-08-26T20:45:23.2396801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\gil_simple.h 2025-08-26T20:45:23.2400229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\iostream.h 2025-08-26T20:45:23.2404149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\native_enum.h 2025-08-26T20:45:23.2407729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\numpy.h 2025-08-26T20:45:23.2411720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\operators.h 2025-08-26T20:45:23.2415205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\options.h 2025-08-26T20:45:23.2418554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\pybind11.h 2025-08-26T20:45:23.2422791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\pytypes.h 2025-08-26T20:45:23.2426746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\stl.h 2025-08-26T20:45:23.2430449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\stl_bind.h 2025-08-26T20:45:23.2434147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\subinterpreter.h 2025-08-26T20:45:23.2437698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\trampoline_self_life_support.h 2025-08-26T20:45:23.2441447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\type_caster_pyobject_ptr.h 2025-08-26T20:45:23.2444961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\typing.h 2025-08-26T20:45:23.2448727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\warnings.h 2025-08-26T20:45:23.2460665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\conduit\pybind11_conduit_v1.h 2025-08-26T20:45:23.2464244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\conduit\pybind11_platform_abi_id.h 2025-08-26T20:45:23.2467732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\conduit\wrap_include_python_h.h 2025-08-26T20:45:23.2479898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\class.h 2025-08-26T20:45:23.2483419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\common.h 2025-08-26T20:45:23.2487356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\cpp_conduit.h 2025-08-26T20:45:23.2490796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\descr.h 2025-08-26T20:45:23.2494210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\dynamic_raw_ptr_cast_if_possible.h 2025-08-26T20:45:23.2501540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\exception_translation.h 2025-08-26T20:45:23.2505556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\function_record_pyobject.h 2025-08-26T20:45:23.2509216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\init.h 2025-08-26T20:45:23.2513174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\internals.h 2025-08-26T20:45:23.2516956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\native_enum_data.h 2025-08-26T20:45:23.2520509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\pybind11_namespace_macros.h 2025-08-26T20:45:23.2525195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\struct_smart_holder.h 2025-08-26T20:45:23.2528505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\typeid.h 2025-08-26T20:45:23.2531903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\type_caster_base.h 2025-08-26T20:45:23.2535744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\using_smart_holder.h 2025-08-26T20:45:23.2539302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\value_and_holder.h 2025-08-26T20:45:23.2547090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\eigen\common.h 2025-08-26T20:45:23.2550572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\eigen\matrix.h 2025-08-26T20:45:23.2554085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\eigen\tensor.h 2025-08-26T20:45:23.2561795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\stl\filesystem.h 2025-08-26T20:45:23.2571172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\custom_class.h 2025-08-26T20:45:23.2574622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\custom_class_detail.h 2025-08-26T20:45:23.2577966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\extension.h 2025-08-26T20:45:23.2581720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\library.h 2025-08-26T20:45:23.2589710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\script.h 2025-08-26T20:45:23.2598397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\copy_utils.h 2025-08-26T20:45:23.2601763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\CudaIPCTypes.h 2025-08-26T20:45:23.2605104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\DataLoader.h 2025-08-26T20:45:23.2608435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Device.h 2025-08-26T20:45:23.2615751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\DeviceAccelerator.h 2025-08-26T20:45:23.2619850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Dtype.h 2025-08-26T20:45:23.2623079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\DynamicTypes.h 2025-08-26T20:45:23.2626546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Event.h 2025-08-26T20:45:23.2629910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Exceptions.h 2025-08-26T20:45:23.2633347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Export.h 2025-08-26T20:45:23.2637123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Generator.h 2025-08-26T20:45:23.2640460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\itt.h 2025-08-26T20:45:23.2643766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\itt_wrapper.h 2025-08-26T20:45:23.2647211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Layout.h 2025-08-26T20:45:23.2650536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\MemoryFormat.h 2025-08-26T20:45:23.2653972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Module.h 2025-08-26T20:45:23.2657596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\PyInterpreter.h 2025-08-26T20:45:23.2661177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\PyInterpreterHooks.h 2025-08-26T20:45:23.2665102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\python_dimname.h 2025-08-26T20:45:23.2668805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\python_headers.h 2025-08-26T20:45:23.2672142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\QScheme.h 2025-08-26T20:45:23.2675441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\serialization.h 2025-08-26T20:45:23.2679203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Size.h 2025-08-26T20:45:23.2683209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Storage.h 2025-08-26T20:45:23.2690752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\StorageMethods.h 2025-08-26T20:45:23.2694197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\StorageSharing.h 2025-08-26T20:45:23.2697576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Stream.h 2025-08-26T20:45:23.2700933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\THConcat.h 2025-08-26T20:45:23.2704351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\THP.h 2025-08-26T20:45:23.2708323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\TypeInfo.h 2025-08-26T20:45:23.2712591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Types.h 2025-08-26T20:45:23.2715046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils.h 2025-08-26T20:45:23.2730055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\all.h 2025-08-26T20:45:23.2733480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\arg.h 2025-08-26T20:45:23.2737012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\autograd.h 2025-08-26T20:45:23.2740637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\cuda.h 2025-08-26T20:45:23.2744432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data.h 2025-08-26T20:45:23.2763785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\enum.h 2025-08-26T20:45:23.2767280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\expanding_array.h 2025-08-26T20:45:23.2774885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\fft.h 2025-08-26T20:45:23.2778359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\imethod.h 2025-08-26T20:45:23.2781817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\jit.h 2025-08-26T20:45:23.2785379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\mps.h 2025-08-26T20:45:23.2788877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nested.h 2025-08-26T20:45:23.2792249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn.h 2025-08-26T20:45:23.2795662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim.h 2025-08-26T20:45:23.2799202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\ordered_dict.h 2025-08-26T20:45:23.2803018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\python.h 2025-08-26T20:45:23.2806475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\serialize.h 2025-08-26T20:45:23.2809972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\sparse.h 2025-08-26T20:45:23.2813508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\special.h 2025-08-26T20:45:23.2817246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\torch.h 2025-08-26T20:45:23.2820632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\types.h 2025-08-26T20:45:23.2824116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\utils.h 2025-08-26T20:45:23.2827665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\version.h 2025-08-26T20:45:23.2830939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\xpu.h 2025-08-26T20:45:23.2838901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\dataloader.h 2025-08-26T20:45:23.2842480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\dataloader_options.h 2025-08-26T20:45:23.2846085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets.h 2025-08-26T20:45:23.2849480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\example.h 2025-08-26T20:45:23.2852860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\iterator.h 2025-08-26T20:45:23.2860234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers.h 2025-08-26T20:45:23.2864939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\transforms.h 2025-08-26T20:45:23.2868487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\worker_exception.h 2025-08-26T20:45:23.2875730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\dataloader\base.h 2025-08-26T20:45:23.2879270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\dataloader\stateful.h 2025-08-26T20:45:23.2882687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\dataloader\stateless.h 2025-08-26T20:45:23.2890292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets\base.h 2025-08-26T20:45:23.2893928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets\chunk.h 2025-08-26T20:45:23.2897371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets\map.h 2025-08-26T20:45:23.2900669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets\mnist.h 2025-08-26T20:45:23.2904070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets\shared.h 2025-08-26T20:45:23.2907496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets\stateful.h 2025-08-26T20:45:23.2910919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets\tensor.h 2025-08-26T20:45:23.2923307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\detail\data_shuttle.h 2025-08-26T20:45:23.2926758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\detail\queue.h 2025-08-26T20:45:23.2930148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\detail\sequencers.h 2025-08-26T20:45:23.2937631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers\base.h 2025-08-26T20:45:23.2941121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers\custom_batch_request.h 2025-08-26T20:45:23.2944728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers\distributed.h 2025-08-26T20:45:23.2948112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers\random.h 2025-08-26T20:45:23.2951513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers\sequential.h 2025-08-26T20:45:23.2958814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers\serialize.h 2025-08-26T20:45:23.2962612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers\stream.h 2025-08-26T20:45:23.2970062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\transforms\base.h 2025-08-26T20:45:23.2973384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\transforms\collate.h 2025-08-26T20:45:23.2976793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\transforms\lambda.h 2025-08-26T20:45:23.2980313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\transforms\stack.h 2025-08-26T20:45:23.2983772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\transforms\tensor.h 2025-08-26T20:45:23.2991849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\detail\static.h 2025-08-26T20:45:23.2995535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\detail\TensorDataContainer.h 2025-08-26T20:45:23.3003908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nativert\ModelRunnerHandle.h 2025-08-26T20:45:23.3011241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\cloneable.h 2025-08-26T20:45:23.3014773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional.h 2025-08-26T20:45:23.3018221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\init.h 2025-08-26T20:45:23.3021541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\module.h 2025-08-26T20:45:23.3025122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules.h 2025-08-26T20:45:23.3034234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options.h 2025-08-26T20:45:23.3038113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\pimpl-inl.h 2025-08-26T20:45:23.3041991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\pimpl.h 2025-08-26T20:45:23.3045386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\utils.h 2025-08-26T20:45:23.3052807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\activation.h 2025-08-26T20:45:23.3056373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\batchnorm.h 2025-08-26T20:45:23.3059900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\conv.h 2025-08-26T20:45:23.3063339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\distance.h 2025-08-26T20:45:23.3072044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\dropout.h 2025-08-26T20:45:23.3075508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\embedding.h 2025-08-26T20:45:23.3079232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\fold.h 2025-08-26T20:45:23.3082704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\instancenorm.h 2025-08-26T20:45:23.3086225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\linear.h 2025-08-26T20:45:23.3089684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\loss.h 2025-08-26T20:45:23.3093523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\normalization.h 2025-08-26T20:45:23.3097881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\padding.h 2025-08-26T20:45:23.3101269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\pixelshuffle.h 2025-08-26T20:45:23.3104930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\pooling.h 2025-08-26T20:45:23.3109426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\upsampling.h 2025-08-26T20:45:23.3113086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\vision.h 2025-08-26T20:45:23.3121305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\activation.h 2025-08-26T20:45:23.3124903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\adaptive.h 2025-08-26T20:45:23.3128498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\batchnorm.h 2025-08-26T20:45:23.3132695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\common.h 2025-08-26T20:45:23.3136097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\conv.h 2025-08-26T20:45:23.3143502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\distance.h 2025-08-26T20:45:23.3147520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\dropout.h 2025-08-26T20:45:23.3150866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\embedding.h 2025-08-26T20:45:23.3154574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\fold.h 2025-08-26T20:45:23.3157983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\instancenorm.h 2025-08-26T20:45:23.3161428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\linear.h 2025-08-26T20:45:23.3164754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\loss.h 2025-08-26T20:45:23.3168339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\normalization.h 2025-08-26T20:45:23.3171929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\padding.h 2025-08-26T20:45:23.3175347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\pixelshuffle.h 2025-08-26T20:45:23.3178847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\pooling.h 2025-08-26T20:45:23.3182667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\rnn.h 2025-08-26T20:45:23.3186180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\transformer.h 2025-08-26T20:45:23.3189885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\transformercoder.h 2025-08-26T20:45:23.3193407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\transformerlayer.h 2025-08-26T20:45:23.3197223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\upsampling.h 2025-08-26T20:45:23.3200674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\utils.h 2025-08-26T20:45:23.3204583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\_functions.h 2025-08-26T20:45:23.3212136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\any.h 2025-08-26T20:45:23.3215729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\any_module_holder.h 2025-08-26T20:45:23.3219514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\any_value.h 2025-08-26T20:45:23.3223216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\functional.h 2025-08-26T20:45:23.3232224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\moduledict.h 2025-08-26T20:45:23.3235760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\modulelist.h 2025-08-26T20:45:23.3239298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\named_any.h 2025-08-26T20:45:23.3243089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\parameterdict.h 2025-08-26T20:45:23.3246686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\parameterlist.h 2025-08-26T20:45:23.3250171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\sequential.h 2025-08-26T20:45:23.3260108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\activation.h 2025-08-26T20:45:23.3264447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\adaptive.h 2025-08-26T20:45:23.3267931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\batchnorm.h 2025-08-26T20:45:23.3271707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\conv.h 2025-08-26T20:45:23.3275244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\distance.h 2025-08-26T20:45:23.3284082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\dropout.h 2025-08-26T20:45:23.3287790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\embedding.h 2025-08-26T20:45:23.3291253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\fold.h 2025-08-26T20:45:23.3295131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\instancenorm.h 2025-08-26T20:45:23.3298870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\linear.h 2025-08-26T20:45:23.3302451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\loss.h 2025-08-26T20:45:23.3306511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\normalization.h 2025-08-26T20:45:23.3310129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\padding.h 2025-08-26T20:45:23.3313895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\pixelshuffle.h 2025-08-26T20:45:23.3317948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\pooling.h 2025-08-26T20:45:23.3321564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\rnn.h 2025-08-26T20:45:23.3325027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\transformer.h 2025-08-26T20:45:23.3329102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\transformercoder.h 2025-08-26T20:45:23.3332929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\transformerlayer.h 2025-08-26T20:45:23.3336551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\upsampling.h 2025-08-26T20:45:23.3341234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\vision.h 2025-08-26T20:45:23.3350028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\parallel\data_parallel.h 2025-08-26T20:45:23.3357434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\utils\clip_grad.h 2025-08-26T20:45:23.3361019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\utils\convert_parameters.h 2025-08-26T20:45:23.3365425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\utils\rnn.h 2025-08-26T20:45:23.3373707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\adagrad.h 2025-08-26T20:45:23.3377151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\adam.h 2025-08-26T20:45:23.3381202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\adamw.h 2025-08-26T20:45:23.3384874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\lbfgs.h 2025-08-26T20:45:23.3388384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\optimizer.h 2025-08-26T20:45:23.3392633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\rmsprop.h 2025-08-26T20:45:23.3399920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\serialize.h 2025-08-26T20:45:23.3403703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\sgd.h 2025-08-26T20:45:23.3411360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\schedulers\lr_scheduler.h 2025-08-26T20:45:23.3415250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\schedulers\reduce_on_plateau_scheduler.h 2025-08-26T20:45:23.3419233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\schedulers\step_lr.h 2025-08-26T20:45:23.3431376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\python\init.h 2025-08-26T20:45:23.3439228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\serialize\archive.h 2025-08-26T20:45:23.3443183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\serialize\input-archive.h 2025-08-26T20:45:23.3446981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\serialize\output-archive.h 2025-08-26T20:45:23.3450499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\serialize\tensor.h 2025-08-26T20:45:23.3466203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\anomaly_mode.h 2025-08-26T20:45:23.3469917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\autograd.h 2025-08-26T20:45:23.3473584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\autograd_not_implemented_fallback.h 2025-08-26T20:45:23.3476937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\cpp_hook.h 2025-08-26T20:45:23.3484672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\custom_function.h 2025-08-26T20:45:23.3488170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\edge.h 2025-08-26T20:45:23.3491558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\engine.h 2025-08-26T20:45:23.3495038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\forward_grad.h 2025-08-26T20:45:23.3498399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\function.h 2025-08-26T20:45:23.3501934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\FunctionsManual.h 2025-08-26T20:45:23.3505900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\function_hook.h 2025-08-26T20:45:23.3509508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\grad_mode.h 2025-08-26T20:45:23.3512950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\graph_task.h 2025-08-26T20:45:23.3516475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\InferenceMode.h 2025-08-26T20:45:23.3520232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\input_buffer.h 2025-08-26T20:45:23.3523874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\input_metadata.h 2025-08-26T20:45:23.3527595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\jit_decomp_interface.h 2025-08-26T20:45:23.3530978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\profiler.h 2025-08-26T20:45:23.3534345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\profiler_kineto.h 2025-08-26T20:45:23.3538216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\profiler_legacy.h 2025-08-26T20:45:23.3542037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\profiler_python.h 2025-08-26T20:45:23.3546018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_anomaly_mode.h 2025-08-26T20:45:23.3553905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_autograd.h 2025-08-26T20:45:23.3557804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_cpp_function.h 2025-08-26T20:45:23.3561366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_engine.h 2025-08-26T20:45:23.3564948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_enum_tag.h 2025-08-26T20:45:23.3568611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_fft_functions.h 2025-08-26T20:45:23.3572343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_function.h 2025-08-26T20:45:23.3575885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_hook.h 2025-08-26T20:45:23.3579868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_legacy_variable.h 2025-08-26T20:45:23.3583541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_linalg_functions.h 2025-08-26T20:45:23.3592657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_nested_functions.h 2025-08-26T20:45:23.3596290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_nn_functions.h 2025-08-26T20:45:23.3599895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_saved_variable_hooks.h 2025-08-26T20:45:23.3603494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_sparse_functions.h 2025-08-26T20:45:23.3607308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_special_functions.h 2025-08-26T20:45:23.3610840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_torch_functions.h 2025-08-26T20:45:23.3614456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_variable.h 2025-08-26T20:45:23.3619147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_variable_indexing.h 2025-08-26T20:45:23.3622844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\record_function_ops.h 2025-08-26T20:45:23.3626596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\saved_variable.h 2025-08-26T20:45:23.3630141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\saved_variable_hooks.h 2025-08-26T20:45:23.3638436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\symbolic.h 2025-08-26T20:45:23.3641922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\variable.h 2025-08-26T20:45:23.3645528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\VariableTypeUtils.h 2025-08-26T20:45:23.3649089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\variable_info.h 2025-08-26T20:45:23.3656937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\functions\accumulate_grad.h 2025-08-26T20:45:23.3660391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\functions\basic_ops.h 2025-08-26T20:45:23.3664653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\functions\comm.h 2025-08-26T20:45:23.3667908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\functions\pybind.h 2025-08-26T20:45:23.3675653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\functions\tensor.h 2025-08-26T20:45:23.3679227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\functions\utils.h 2025-08-26T20:45:23.3686683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\generated\Functions.h 2025-08-26T20:45:23.3693373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\generated\python_functions.h 2025-08-26T20:45:23.3696982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\generated\python_return_types.h 2025-08-26T20:45:23.3704656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\generated\VariableType.h 2025-08-26T20:45:23.3708591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\generated\variable_factories.h 2025-08-26T20:45:23.3712930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\generated\ViewFuncs.h 2025-08-26T20:45:23.3722057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\utils\error_messages.h 2025-08-26T20:45:23.3725574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\utils\grad_layout_contract.h 2025-08-26T20:45:23.3729147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\utils\lambda_post_hook.h 2025-08-26T20:45:23.3732667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\utils\python_arg_parsing.h 2025-08-26T20:45:23.3740790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\utils\warnings.h 2025-08-26T20:45:23.3744263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\utils\wrap_outputs.h 2025-08-26T20:45:23.3752723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cpu\Module.h 2025-08-26T20:45:23.3760059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\comm.h 2025-08-26T20:45:23.3763707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\CUDAPluggableAllocator.h 2025-08-26T20:45:23.3767058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\device_set.h 2025-08-26T20:45:23.3770528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\Event.h 2025-08-26T20:45:23.3773817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\GdsFile.h 2025-08-26T20:45:23.3781047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\memory_snapshot.h 2025-08-26T20:45:23.3784689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\Module.h 2025-08-26T20:45:23.3788103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\nccl.h 2025-08-26T20:45:23.3791410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\python_comm.h 2025-08-26T20:45:23.3794940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\python_nccl.h 2025-08-26T20:45:23.3798663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\Stream.h 2025-08-26T20:45:23.3817500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\THCP.h 2025-08-26T20:45:23.3820783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\utils.h 2025-08-26T20:45:23.3832567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\autograd.h 2025-08-26T20:45:23.3836211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\python_autograd.h 2025-08-26T20:45:23.3839738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\utils.h 2025-08-26T20:45:23.3847170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\context\container.h 2025-08-26T20:45:23.3850809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\context\context.h 2025-08-26T20:45:23.3857947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\engine\dist_engine.h 2025-08-26T20:45:23.3870694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\functions\recvrpc_backward.h 2025-08-26T20:45:23.3874325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\functions\sendrpc_backward.h 2025-08-26T20:45:23.3882561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\autograd_metadata.h 2025-08-26T20:45:23.3886343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\cleanup_autograd_context_req.h 2025-08-26T20:45:23.3890457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\cleanup_autograd_context_resp.h 2025-08-26T20:45:23.3898328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\propagate_gradients_req.h 2025-08-26T20:45:23.3901757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\propagate_gradients_resp.h 2025-08-26T20:45:23.3905717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\rpc_with_autograd.h 2025-08-26T20:45:23.3909488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\rpc_with_profiling_req.h 2025-08-26T20:45:23.3913417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\rpc_with_profiling_resp.h 2025-08-26T20:45:23.3917333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\rref_backward_req.h 2025-08-26T20:45:23.3921356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\rref_backward_resp.h 2025-08-26T20:45:23.3929922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\Backend.hpp 2025-08-26T20:45:23.3933419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\Backoff.hpp 2025-08-26T20:45:23.3937288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\c10d.h 2025-08-26T20:45:23.3940737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\comm.hpp 2025-08-26T20:45:23.3944248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\debug.h 2025-08-26T20:45:23.3947890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\default_comm_hooks.hpp 2025-08-26T20:45:23.3956010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\error.h 2025-08-26T20:45:23.3960043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\exception.h 2025-08-26T20:45:23.3963095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\FakeProcessGroup.hpp 2025-08-26T20:45:23.3966543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\FileStore.hpp 2025-08-26T20:45:23.3970073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\FlightRecorder.hpp 2025-08-26T20:45:23.3973569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\FlightRecorderDetail.hpp 2025-08-26T20:45:23.3977106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\Functional.hpp 2025-08-26T20:45:23.3980727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\GlooDeviceFactory.hpp 2025-08-26T20:45:23.3984395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\GroupRegistry.hpp 2025-08-26T20:45:23.3988012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\HashStore.hpp 2025-08-26T20:45:23.3991654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\logger.hpp 2025-08-26T20:45:23.3994998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\logging.h 2025-08-26T20:45:23.3998348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\NanCheck.hpp 2025-08-26T20:45:23.4001765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\NCCLUtils.hpp 2025-08-26T20:45:23.4006631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ParamCommsUtils.hpp 2025-08-26T20:45:23.4009301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\PrefixStore.hpp 2025-08-26T20:45:23.4012882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ProcessGroup.hpp 2025-08-26T20:45:23.4020750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ProcessGroupGloo.hpp 2025-08-26T20:45:23.4024749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ProcessGroupGlooDetail.hpp 2025-08-26T20:45:23.4028396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ProcessGroupMPI.hpp 2025-08-26T20:45:23.4031923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ProcessGroupNCCL.hpp 2025-08-26T20:45:23.4035816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ProcessGroupUCC.hpp 2025-08-26T20:45:23.4039562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ProcessGroupWrapper.hpp 2025-08-26T20:45:23.4043349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\PyProcessGroup.hpp 2025-08-26T20:45:23.4046958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\python_comm_hook.h 2025-08-26T20:45:23.4050531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\RankLocal.hpp 2025-08-26T20:45:23.4058382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\reducer.hpp 2025-08-26T20:45:23.4061815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\reducer_timer.hpp 2025-08-26T20:45:23.4065474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\sequence_num.hpp 2025-08-26T20:45:23.4068989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\socket.h 2025-08-26T20:45:23.4072467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\socket_fmt.h 2025-08-26T20:45:23.4076027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\Store.hpp 2025-08-26T20:45:23.4079876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\TCPStore.hpp 2025-08-26T20:45:23.4083263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\TCPStoreBackend.hpp 2025-08-26T20:45:23.4086756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\TraceUtils.h 2025-08-26T20:45:23.4090825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\Types.hpp 2025-08-26T20:45:23.4094255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\UCCTracing.hpp 2025-08-26T20:45:23.4097789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\UCCUtils.hpp 2025-08-26T20:45:23.4105401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\UnixSockUtils.hpp 2025-08-26T20:45:23.4108804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\Utils.hpp 2025-08-26T20:45:23.4112252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\WinSockUtils.hpp 2025-08-26T20:45:23.4115747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\Work.hpp 2025-08-26T20:45:23.4123301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\control_collectives\ControlCollectives.hpp 2025-08-26T20:45:23.4127927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\control_collectives\StoreCollectives.hpp 2025-08-26T20:45:23.4135641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\control_plane\Handlers.hpp 2025-08-26T20:45:23.4139268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\control_plane\WorkerServer.hpp 2025-08-26T20:45:23.4146663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\cuda\CUDAEventCache.hpp 2025-08-26T20:45:23.4150195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\cuda\StreamBlock.hpp 2025-08-26T20:45:23.4153640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\cuda\utils.hpp 2025-08-26T20:45:23.4161859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\quantization\quantization.h 2025-08-26T20:45:23.4165721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\quantization\quantization_gpu.h 2025-08-26T20:45:23.4169329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\quantization\quantization_utils.h 2025-08-26T20:45:23.4182367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemory-inl.h 2025-08-26T20:45:23.4186027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemory.hpp 2025-08-26T20:45:23.4189953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemoryTypes.hpp 2025-08-26T20:45:23.4198159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemoryUtils.hpp 2025-08-26T20:45:23.4201973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\symm_mem\DMAConnectivity.hpp 2025-08-26T20:45:23.4205634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\symm_mem\intra_node_comm.hpp 2025-08-26T20:45:23.4209314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\symm_mem\SymmetricMemory.hpp 2025-08-26T20:45:23.4217926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\agent_utils.h 2025-08-26T20:45:23.4221911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\message.h 2025-08-26T20:45:23.4225795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\python_call.h 2025-08-26T20:45:23.4229074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\python_functions.h 2025-08-26T20:45:23.4237291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\python_remote_call.h 2025-08-26T20:45:23.4240384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\python_resp.h 2025-08-26T20:45:23.4244115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\python_rpc_handler.h 2025-08-26T20:45:23.4248458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\py_rref.h 2025-08-26T20:45:23.4251039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\request_callback.h 2025-08-26T20:45:23.4255062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\request_callback_impl.h 2025-08-26T20:45:23.4258653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\request_callback_no_python.h 2025-08-26T20:45:23.4262325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\rpc.h 2025-08-26T20:45:23.4266866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\rpc_agent.h 2025-08-26T20:45:23.4272004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\rpc_command_base.h 2025-08-26T20:45:23.4274836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\rref_context.h 2025-08-26T20:45:23.4280410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\rref_impl.h 2025-08-26T20:45:23.4285309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\rref_proto.h 2025-08-26T20:45:23.4290486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\script_call.h 2025-08-26T20:45:23.4294129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\script_remote_call.h 2025-08-26T20:45:23.4299572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\script_resp.h 2025-08-26T20:45:23.4309359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\tensorpipe_agent.h 2025-08-26T20:45:23.4314557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\tensorpipe_utils.h 2025-08-26T20:45:23.4319448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\torchscript_functions.h 2025-08-26T20:45:23.4323223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\types.h 2025-08-26T20:45:23.4328055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\unpickled_python_call.h 2025-08-26T20:45:23.4333067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\unpickled_python_remote_call.h 2025-08-26T20:45:23.4344355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\utils.h 2025-08-26T20:45:23.4347077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\metrics\RpcMetricsHandler.h 2025-08-26T20:45:23.4357405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\profiler\remote_profiler_manager.h 2025-08-26T20:45:23.4362280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\profiler\server_process_global_profiler.h 2025-08-26T20:45:23.4372409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\testing\faulty_tensorpipe_agent.h 2025-08-26T20:45:23.4376507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\testing\testing.h 2025-08-26T20:45:23.4387921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\cache_entry.h 2025-08-26T20:45:23.4392862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\compiled_autograd.h 2025-08-26T20:45:23.4398472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\cpp_shim.h 2025-08-26T20:45:23.4424503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\cpython_defs.h 2025-08-26T20:45:23.4433539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\cpython_includes.h 2025-08-26T20:45:23.4437062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\debug_macros.h 2025-08-26T20:45:23.4440705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\eval_frame.h 2025-08-26T20:45:23.4444804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\eval_frame_cpp.h 2025-08-26T20:45:23.4448400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\extra_state.h 2025-08-26T20:45:23.4453121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\framelocals_mapping.h 2025-08-26T20:45:23.4456590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\guards.h 2025-08-26T20:45:23.4460249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\init.h 2025-08-26T20:45:23.4463785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\python_compiled_autograd.h 2025-08-26T20:45:23.4467240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\utils.h 2025-08-26T20:45:23.4475487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\export\example_upgraders.h 2025-08-26T20:45:23.4478968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\export\pt2_archive_constants.h 2025-08-26T20:45:23.4482506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\export\pybind.h 2025-08-26T20:45:23.4485856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\export\upgrader.h 2025-08-26T20:45:23.4493005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\functorch\init.h 2025-08-26T20:45:23.4500609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\fx\node.h 2025-08-26T20:45:23.4510553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\array_ref_impl.h 2025-08-26T20:45:23.4514164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_prefix.h 2025-08-26T20:45:23.4517912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\inductor_ops.h 2025-08-26T20:45:23.4521441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\static_cuda_launcher.h 2025-08-26T20:45:23.4535165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_eager\kernel_holder.h 2025-08-26T20:45:23.4538676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_eager\kernel_meta_info.h 2025-08-26T20:45:23.4546025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_include\array_ref.h 2025-08-26T20:45:23.4549587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_include\common.h 2025-08-26T20:45:23.4553401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_include\cpu.h 2025-08-26T20:45:23.4557204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_include\cuda.h 2025-08-26T20:45:23.4561711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_include\mps.h 2025-08-26T20:45:23.4568928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_include\xpu.h 2025-08-26T20:45:23.4576635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_package\model_package_loader.h 2025-08-26T20:45:23.4580467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_package\pybind.h 2025-08-26T20:45:23.4592986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runner\model_container_runner.h 2025-08-26T20:45:23.4594507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_cpu.h 2025-08-26T20:45:23.4598036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_cuda.h 2025-08-26T20:45:23.4606994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_mps.h 2025-08-26T20:45:23.4610464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_xpu.h 2025-08-26T20:45:23.4614294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runner\pybind.h 2025-08-26T20:45:23.4621830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\arrayref_tensor.h 2025-08-26T20:45:23.4625505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\constant_type.h 2025-08-26T20:45:23.4628971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\device_utils.h 2025-08-26T20:45:23.4636647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\interface.h 2025-08-26T20:45:23.4640226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\mini_array_ref.h 2025-08-26T20:45:23.4643693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\model.h 2025-08-26T20:45:23.4647632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\model_base.h 2025-08-26T20:45:23.4651297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\model_container.h 2025-08-26T20:45:23.4654920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\scalar_to_tensor.h 2025-08-26T20:45:23.4658574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\sycl_runtime_wrappers.h 2025-08-26T20:45:23.4662295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\thread_local.h 2025-08-26T20:45:23.4665915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\utils.h 2025-08-26T20:45:23.4669341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\utils_cuda.h 2025-08-26T20:45:23.4672918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\utils_xpu.h 2025-08-26T20:45:23.4681277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\mkldnn_tensor.h 2025-08-26T20:45:23.4684928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\oss_proxy_executor.h 2025-08-26T20:45:23.4688442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\proxy_executor.h 2025-08-26T20:45:23.4696415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\tensor_converter.h 2025-08-26T20:45:23.4699904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\utils.h 2025-08-26T20:45:23.4707262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\c\macros.h 2025-08-26T20:45:23.4710859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\c\shim.h 2025-08-26T20:45:23.4714311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\c\shim_cpu.h 2025-08-26T20:45:23.4717710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\c\shim_deprecated.h 2025-08-26T20:45:23.4721150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\c\shim_mps.h 2025-08-26T20:45:23.4724784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\c\shim_xpu.h 2025-08-26T20:45:23.4737535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_aten.h 2025-08-26T20:45:23.4741093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_cpu.h 2025-08-26T20:45:23.4744805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_cuda.h 2025-08-26T20:45:23.4753016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_mps.h 2025-08-26T20:45:23.4756796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_xpu.h 2025-08-26T20:45:23.4765696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\array_ref.h 2025-08-26T20:45:23.4769243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\common.h 2025-08-26T20:45:23.4772763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\cpu.h 2025-08-26T20:45:23.4776170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\cuda.h 2025-08-26T20:45:23.4779619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\mps.h 2025-08-26T20:45:23.4787775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\xpu.h 2025-08-26T20:45:23.4794746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\cpu.h 2025-08-26T20:45:23.4798279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\cuda.h 2025-08-26T20:45:23.4801542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\mps.h 2025-08-26T20:45:23.4805012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\xpu.h 2025-08-26T20:45:23.4813788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\instruction_counter\Module.h 2025-08-26T20:45:23.4821574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\jit_log.h 2025-08-26T20:45:23.4825054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\jit_opt_limit.h 2025-08-26T20:45:23.4828666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\resource_guard.h 2025-08-26T20:45:23.4835591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\api\compilation_unit.h 2025-08-26T20:45:23.4839119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\api\function_impl.h 2025-08-26T20:45:23.4842480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\api\method.h 2025-08-26T20:45:23.4846049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\api\module.h 2025-08-26T20:45:23.4849478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\api\object.h 2025-08-26T20:45:23.4865978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend.h 2025-08-26T20:45:23.4870312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_debug_handler.h 2025-08-26T20:45:23.4872905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_debug_info.h 2025-08-26T20:45:23.4876511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_detail.h 2025-08-26T20:45:23.4885037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_exception.h 2025-08-26T20:45:23.4888614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_init.h 2025-08-26T20:45:23.4893262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_interface.h 2025-08-26T20:45:23.4896079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_preprocess.h 2025-08-26T20:45:23.4899778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_resolver.h 2025-08-26T20:45:23.4911151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\coreml\cpp\context.h 2025-08-26T20:45:23.4919787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLCompiler.h 2025-08-26T20:45:23.4923947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLExecutor.h 2025-08-26T20:45:23.4943198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLFeatureProvider.h 2025-08-26T20:45:23.4952315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLModelWrapper.h 2025-08-26T20:45:23.4956031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLTensorSpec.h 2025-08-26T20:45:23.4965095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\xnnpack\xnnpack_graph_builder.h 2025-08-26T20:45:23.4972094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\xnnpack\compiler\xnn_compiler.h 2025-08-26T20:45:23.4979512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\xnnpack\executor\xnn_executor.h 2025-08-26T20:45:23.4987096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\xnnpack\serialization\serializer.h 2025-08-26T20:45:23.4999246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\cuda\interface.h 2025-08-26T20:45:23.5006789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\arg_spec.h 2025-08-26T20:45:23.5009907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\codegen.h 2025-08-26T20:45:23.5013281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\compiler.h 2025-08-26T20:45:23.5016866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\executor.h 2025-08-26T20:45:23.5020245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\fallback.h 2025-08-26T20:45:23.5023649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\fused_kernel.h 2025-08-26T20:45:23.5031568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\interface.h 2025-08-26T20:45:23.5035076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\kernel_cache.h 2025-08-26T20:45:23.5038538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\kernel_spec.h 2025-08-26T20:45:23.5041936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\partition_desc.h 2025-08-26T20:45:23.5045462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\tensor_desc.h 2025-08-26T20:45:23.5048976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\tensor_info.h 2025-08-26T20:45:23.5056197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\cpu\fused_kernel.h 2025-08-26T20:45:23.5059850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\cpu\resource_strings.h 2025-08-26T20:45:23.5063458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\cpu\temp_file.h 2025-08-26T20:45:23.5070707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\cuda\fused_kernel.h 2025-08-26T20:45:23.5074208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\cuda\resource_strings.h 2025-08-26T20:45:23.5082045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\decompose_silu.h 2025-08-26T20:45:23.5085674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\defer_size_check.h 2025-08-26T20:45:23.5089449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\graph_fuser.h 2025-08-26T20:45:23.5093017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\graph_helper.h 2025-08-26T20:45:23.5101074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\guard_shape.h 2025-08-26T20:45:23.5104588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\interface.h 2025-08-26T20:45:23.5108540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\kernel.h 2025-08-26T20:45:23.5112023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\layout_propagation.h 2025-08-26T20:45:23.5115497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\LlgaTensorImpl.h 2025-08-26T20:45:23.5119131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\operator.h 2025-08-26T20:45:23.5122578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\prepare_binary.h 2025-08-26T20:45:23.5131047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\cuda\cuda.h 2025-08-26T20:45:23.5138287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\builtin_functions.h 2025-08-26T20:45:23.5141771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\canonicalize_modified_loop.h 2025-08-26T20:45:23.5145319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\concrete_module_type.h 2025-08-26T20:45:23.5153334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\convert_to_ssa.h 2025-08-26T20:45:23.5157117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\edit_distance.h 2025-08-26T20:45:23.5160586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\error_report.h 2025-08-26T20:45:23.5164388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\exit_transforms.h 2025-08-26T20:45:23.5167899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\function_schema_parser.h 2025-08-26T20:45:23.5171424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\inline_loop_condition.h 2025-08-26T20:45:23.5174794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\ir_emitter.h 2025-08-26T20:45:23.5178296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\lexer.h 2025-08-26T20:45:23.5181813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\mini_environment.h 2025-08-26T20:45:23.5185893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\name_mangler.h 2025-08-26T20:45:23.5190280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\parser.h 2025-08-26T20:45:23.5194500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\parser_constants.h 2025-08-26T20:45:23.5197549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\parse_string_literal.h 2025-08-26T20:45:23.5201795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\resolver.h 2025-08-26T20:45:23.5206018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\schema_matching.h 2025-08-26T20:45:23.5209251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\schema_type_parser.h 2025-08-26T20:45:23.5212883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\script_type_parser.h 2025-08-26T20:45:23.5221464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\source_range.h 2025-08-26T20:45:23.5225569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\source_ref.h 2025-08-26T20:45:23.5229419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\strtod.h 2025-08-26T20:45:23.5232977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\sugared_value.h 2025-08-26T20:45:23.5236802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\tracer.h 2025-08-26T20:45:23.5240844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\tree.h 2025-08-26T20:45:23.5243714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\tree_views.h 2025-08-26T20:45:23.5247531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\versioned_symbols.h 2025-08-26T20:45:23.5255691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\alias_analysis.h 2025-08-26T20:45:23.5259934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\attributes.h 2025-08-26T20:45:23.5263590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\constants.h 2025-08-26T20:45:23.5266938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\graph_node_list.h 2025-08-26T20:45:23.5275084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\graph_utils.h 2025-08-26T20:45:23.5278459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\ir.h 2025-08-26T20:45:23.5282651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\irparser.h 2025-08-26T20:45:23.5286512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\ir_views.h 2025-08-26T20:45:23.5290050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\named_value.h 2025-08-26T20:45:23.5294300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\node_hashing.h 2025-08-26T20:45:23.5298425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\scope.h 2025-08-26T20:45:23.5301505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\subgraph_matcher.h 2025-08-26T20:45:23.5305114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\type_hashing.h 2025-08-26T20:45:23.5313144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\code.h 2025-08-26T20:45:23.5316569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\debug_info.h 2025-08-26T20:45:23.5320093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\file_format.h 2025-08-26T20:45:23.5323617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\flatbuffer_loader.h 2025-08-26T20:45:23.5331115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\frame.h 2025-08-26T20:45:23.5335005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\function.h 2025-08-26T20:45:23.5338952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\import.h 2025-08-26T20:45:23.5341977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\import_data.h 2025-08-26T20:45:23.5345646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\import_export_common.h 2025-08-26T20:45:23.5349373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\interpreter.h 2025-08-26T20:45:23.5353121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\method.h 2025-08-26T20:45:23.5356652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\module.h 2025-08-26T20:45:23.5360073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\observer.h 2025-08-26T20:45:23.5363603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\parse_bytecode.h 2025-08-26T20:45:23.5367257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\parse_operators.h 2025-08-26T20:45:23.5371165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\prim_ops_registery.h 2025-08-26T20:45:23.5375185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\profiler_edge.h 2025-08-26T20:45:23.5379153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\promoted_prim_ops.h 2025-08-26T20:45:23.5382532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\quantization.h 2025-08-26T20:45:23.5386779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\register_ops_common_utils.h 2025-08-26T20:45:23.5390611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\type_parser.h 2025-08-26T20:45:23.5394101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\upgrader_mobile.h 2025-08-26T20:45:23.5405589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\compatibility\backport.h 2025-08-26T20:45:23.5409357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\compatibility\backport_manager.h 2025-08-26T20:45:23.5413116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\compatibility\model_compatibility.h 2025-08-26T20:45:23.5421020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\compatibility\runtime_compatibility.h 2025-08-26T20:45:23.5429424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\model_tracer\BuildFeatureTracer.h 2025-08-26T20:45:23.5432999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\model_tracer\CustomClassTracer.h 2025-08-26T20:45:23.5436617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\model_tracer\KernelDTypeTracer.h 2025-08-26T20:45:23.5444746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\model_tracer\MobileModelRunner.h 2025-08-26T20:45:23.5448374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\model_tracer\OperatorCallTracer.h 2025-08-26T20:45:23.5452997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\model_tracer\TensorUtils.h 2025-08-26T20:45:23.5456941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\model_tracer\TracerRunner.h 2025-08-26T20:45:23.5464943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\nnc\aot_compiler.h 2025-08-26T20:45:23.5468421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\nnc\context.h 2025-08-26T20:45:23.5471830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\nnc\registry.h 2025-08-26T20:45:23.5479270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\train\export_data.h 2025-08-26T20:45:23.5482737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\train\random.h 2025-08-26T20:45:23.5486166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\train\sequential.h 2025-08-26T20:45:23.5493109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\train\optim\sgd.h 2025-08-26T20:45:23.5501277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\operator_upgraders\upgraders.h 2025-08-26T20:45:23.5505056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\operator_upgraders\upgraders_entry.h 2025-08-26T20:45:23.5508628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\operator_upgraders\utils.h 2025-08-26T20:45:23.5512139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\operator_upgraders\version_map.h 2025-08-26T20:45:23.5525222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\add_if_then_else.h 2025-08-26T20:45:23.5528783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\annotate_warns.h 2025-08-26T20:45:23.5532486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\autocast.h 2025-08-26T20:45:23.5535806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\bailout_graph.h 2025-08-26T20:45:23.5544070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\batch_mm.h 2025-08-26T20:45:23.5547434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\canonicalize.h 2025-08-26T20:45:23.5550983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\canonicalize_graph_fuser_ops.h 2025-08-26T20:45:23.5554480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\check_strict_fusion.h 2025-08-26T20:45:23.5558135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\clear_profiling.h 2025-08-26T20:45:23.5561640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\clear_undefinedness.h 2025-08-26T20:45:23.5565712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\common_subexpression_elimination.h 2025-08-26T20:45:23.5569459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\concat_opt.h 2025-08-26T20:45:23.5573116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\constant_pooling.h 2025-08-26T20:45:23.5576875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\constant_propagation.h 2025-08-26T20:45:23.5580823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\create_autodiff_subgraphs.h 2025-08-26T20:45:23.5584273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\create_functional_graphs.h 2025-08-26T20:45:23.5587863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\dead_code_elimination.h 2025-08-26T20:45:23.5591911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\decompose_ops.h 2025-08-26T20:45:23.5595232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\device_type_analysis.h 2025-08-26T20:45:23.5603377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\dtype_analysis.h 2025-08-26T20:45:23.5606788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\eliminate_no_ops.h 2025-08-26T20:45:23.5610558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\erase_number_types.h 2025-08-26T20:45:23.5614180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\fixup_trace_scope_blocks.h 2025-08-26T20:45:23.5617773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\fold_conv_bn.h 2025-08-26T20:45:23.5621964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\fold_linear_bn.h 2025-08-26T20:45:23.5626251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\freeze_module.h 2025-08-26T20:45:23.5629518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\frozen_concat_linear.h 2025-08-26T20:45:23.5633265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\frozen_conv_add_relu_fusion.h 2025-08-26T20:45:23.5640942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\frozen_conv_folding.h 2025-08-26T20:45:23.5644691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\frozen_graph_optimizations.h 2025-08-26T20:45:23.5648874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\frozen_linear_folding.h 2025-08-26T20:45:23.5652540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\frozen_linear_transpose.h 2025-08-26T20:45:23.5656283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\frozen_ops_to_mkldnn.h 2025-08-26T20:45:23.5660052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\fuse_linear.h 2025-08-26T20:45:23.5664013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\fuse_relu.h 2025-08-26T20:45:23.5667713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\graph_fuser.h 2025-08-26T20:45:23.5671330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\graph_rewrite_helper.h 2025-08-26T20:45:23.5679311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\guard_elimination.h 2025-08-26T20:45:23.5682917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\hoist_conv_packed_params.h 2025-08-26T20:45:23.5686667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\inliner.h 2025-08-26T20:45:23.5690258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\inline_autodiff_subgraphs.h 2025-08-26T20:45:23.5693793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\inline_forked_closures.h 2025-08-26T20:45:23.5697640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\inline_fork_wait.h 2025-08-26T20:45:23.5701600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\inplace_check.h 2025-08-26T20:45:23.5704936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\insert_guards.h 2025-08-26T20:45:23.5708937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\integer_value_refinement.h 2025-08-26T20:45:23.5716952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\lift_closures.h 2025-08-26T20:45:23.5720542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\liveness.h 2025-08-26T20:45:23.5724097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\loop_unrolling.h 2025-08-26T20:45:23.5727891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\lower_grad_of.h 2025-08-26T20:45:23.5731776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\lower_graph.h 2025-08-26T20:45:23.5735997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\lower_tuples.h 2025-08-26T20:45:23.5739237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\metal_rewrite.h 2025-08-26T20:45:23.5743246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\mkldnn_rewrite.h 2025-08-26T20:45:23.5747513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\mobile_optimizer_type.h 2025-08-26T20:45:23.5751109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\normalize_ops.h 2025-08-26T20:45:23.5762607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onednn_graph_fuser.h 2025-08-26T20:45:23.5766607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx.h 2025-08-26T20:45:23.5770549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\pass_manager.h 2025-08-26T20:45:23.5774542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\peephole.h 2025-08-26T20:45:23.5778455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\peephole_alias_sensitive.h 2025-08-26T20:45:23.5782181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\peephole_dict_idioms.h 2025-08-26T20:45:23.5786023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\peephole_list_idioms.h 2025-08-26T20:45:23.5789737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\peephole_non_tensor.h 2025-08-26T20:45:23.5793459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\prepack_folding.h 2025-08-26T20:45:23.5797071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\refine_tuple_types.h 2025-08-26T20:45:23.5800992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\remove_dropout.h 2025-08-26T20:45:23.5808863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\remove_exceptions.h 2025-08-26T20:45:23.5812804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\remove_expands.h 2025-08-26T20:45:23.5816542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\remove_inplace_ops.h 2025-08-26T20:45:23.5820146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\remove_mutation.h 2025-08-26T20:45:23.5824997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\remove_redundant_profiles.h 2025-08-26T20:45:23.5828936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\replacement_of_old_operators.h 2025-08-26T20:45:23.5833177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\requires_grad_analysis.h 2025-08-26T20:45:23.5836524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\restore_mutation.h 2025-08-26T20:45:23.5840134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\shape_analysis.h 2025-08-26T20:45:23.5848050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\specialize_autogradzero.h 2025-08-26T20:45:23.5851709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\subgraph_rewrite.h 2025-08-26T20:45:23.5855261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\symbolic_shape_analysis.h 2025-08-26T20:45:23.5859282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\symbolic_shape_cache.h 2025-08-26T20:45:23.5862918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\symbolic_shape_runtime_fusion.h 2025-08-26T20:45:23.5866776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\tensorexpr_fuser.h 2025-08-26T20:45:23.5871458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\update_differentiable_graph_requires_grad.h 2025-08-26T20:45:23.5875537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\value_refinement_utils.h 2025-08-26T20:45:23.5879736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\variadic_ops.h 2025-08-26T20:45:23.5883631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\vulkan_rewrite.h 2025-08-26T20:45:23.5887306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\xnnpack_rewrite.h 2025-08-26T20:45:23.5895271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\dbr_quantization\remove_redundant_aliases.h 2025-08-26T20:45:23.5905177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\cast_all_constant_to_floating.h 2025-08-26T20:45:23.5909044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\constant_fold.h 2025-08-26T20:45:23.5912722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\constant_map.h 2025-08-26T20:45:23.5916375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\deduplicate_initializers.h 2025-08-26T20:45:23.5924158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\eliminate_unused_items.h 2025-08-26T20:45:23.5927859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\eval_peephole.h 2025-08-26T20:45:23.5932214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\fixup_onnx_controlflow.h 2025-08-26T20:45:23.5935862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\function_extraction.h 2025-08-26T20:45:23.5939615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\function_substitution.h 2025-08-26T20:45:23.5943207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\helper.h 2025-08-26T20:45:23.5946798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\list_model_parameters.h 2025-08-26T20:45:23.5950427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\naming.h 2025-08-26T20:45:23.5953878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\onnx_log.h 2025-08-26T20:45:23.5957444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\peephole.h 2025-08-26T20:45:23.5960980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\prepare_division_for_onnx.h 2025-08-26T20:45:23.5964530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\preprocess_for_onnx.h 2025-08-26T20:45:23.5968262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\remove_inplace_ops_for_onnx.h 2025-08-26T20:45:23.5971796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\scalar_type_analysis.h 2025-08-26T20:45:23.5975624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\shape_type_inference.h 2025-08-26T20:45:23.5979093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\unpack_quantized_weights.h 2025-08-26T20:45:23.5991514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\autograd_function_process.h 2025-08-26T20:45:23.5994999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\common.h 2025-08-26T20:45:23.6014745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\pattern_conversion.h 2025-08-26T20:45:23.6022113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\pattern_encapsulation.h 2025-08-26T20:45:23.6031241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\dedup_module_uses.h 2025-08-26T20:45:23.6034941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\finalize.h 2025-08-26T20:45:23.6038264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\fusion_passes.h 2025-08-26T20:45:23.6041688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\helper.h 2025-08-26T20:45:23.6049330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\insert_observers.h 2025-08-26T20:45:23.6052937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\insert_quant_dequant.h 2025-08-26T20:45:23.6056824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\quantization_patterns.h 2025-08-26T20:45:23.6060774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\quantization_type.h 2025-08-26T20:45:23.6064550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\register_packed_params.h 2025-08-26T20:45:23.6072933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\utils\check_alias_annotation.h 2025-08-26T20:45:23.6076527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\utils\memory_dag.h 2025-08-26T20:45:23.6080116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\utils\optimization_utils.h 2025-08-26T20:45:23.6087944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\utils\op_registry.h 2025-08-26T20:45:23.6091466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\utils\subgraph_utils.h 2025-08-26T20:45:23.6099760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\init.h 2025-08-26T20:45:23.6103191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\module_python.h 2025-08-26T20:45:23.6106960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\pybind.h 2025-08-26T20:45:23.6110367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\pybind_utils.h 2025-08-26T20:45:23.6114170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_arg_flatten.h 2025-08-26T20:45:23.6122035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_custom_class.h 2025-08-26T20:45:23.6125505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_dict.h 2025-08-26T20:45:23.6129049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_ir.h 2025-08-26T20:45:23.6132774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_ivalue.h 2025-08-26T20:45:23.6136426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_list.h 2025-08-26T20:45:23.6139985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_sugared_value.h 2025-08-26T20:45:23.6143645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_tracer.h 2025-08-26T20:45:23.6147280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_tree_views.h 2025-08-26T20:45:23.6150831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\script_init.h 2025-08-26T20:45:23.6154709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\update_graph_executor_opt.h 2025-08-26T20:45:23.6158305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\utf8_decoding_ignore.h 2025-08-26T20:45:23.6166797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\argument_spec.h 2025-08-26T20:45:23.6170253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\autodiff.h 2025-08-26T20:45:23.6174503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\calculate_necessary_args.h 2025-08-26T20:45:23.6177401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\custom_operator.h 2025-08-26T20:45:23.6185395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\decomposition_registry.h 2025-08-26T20:45:23.6188902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\decomposition_registry_util.h 2025-08-26T20:45:23.6192382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\exception_message.h 2025-08-26T20:45:23.6196154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\graph_executor.h 2025-08-26T20:45:23.6199623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\graph_executor_impl.h 2025-08-26T20:45:23.6203636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\graph_iterator.h 2025-08-26T20:45:23.6207121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\instruction.h 2025-08-26T20:45:23.6210700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\interpreter.h 2025-08-26T20:45:23.6214142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\jit_exception.h 2025-08-26T20:45:23.6218231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\jit_trace.h 2025-08-26T20:45:23.6222811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\logging.h 2025-08-26T20:45:23.6225383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\operator.h 2025-08-26T20:45:23.6229297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\operator_options.h 2025-08-26T20:45:23.6232783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\print_handler.h 2025-08-26T20:45:23.6237092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\profiling_graph_executor_impl.h 2025-08-26T20:45:23.6240787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\profiling_record.h 2025-08-26T20:45:23.6248733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\register_ops_utils.h 2025-08-26T20:45:23.6252438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\script_profile.h 2025-08-26T20:45:23.6256095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\serialized_shape_function_registry.h 2025-08-26T20:45:23.6259783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\shape_function_registry.h 2025-08-26T20:45:23.6263734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\simple_graph_executor_impl.h 2025-08-26T20:45:23.6267336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\slice_indices_adjust.h 2025-08-26T20:45:23.6271461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\symbolic_script.h 2025-08-26T20:45:23.6275263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\symbolic_shape_registry.h 2025-08-26T20:45:23.6278925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\symbolic_shape_registry_util.h 2025-08-26T20:45:23.6287088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\vararg_functions.h 2025-08-26T20:45:23.6290592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\variable_tensor_list.h 2025-08-26T20:45:23.6298594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\interpreter\can_emit_inline.h 2025-08-26T20:45:23.6302092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\interpreter\code_impl.h 2025-08-26T20:45:23.6306229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\interpreter\frame.h 2025-08-26T20:45:23.6310037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\interpreter\preprocess_graph.h 2025-08-26T20:45:23.6321875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\fusion.h 2025-08-26T20:45:23.6325277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\impl.h 2025-08-26T20:45:23.6328869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\init.h 2025-08-26T20:45:23.6332632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\memory_planner.h 2025-08-26T20:45:23.6336104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\ops.h 2025-08-26T20:45:23.6339916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\passes.h 2025-08-26T20:45:23.6348211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\ProcessedNodeInputs.h 2025-08-26T20:45:23.6352253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\processed_node_wrapper.h 2025-08-26T20:45:23.6355880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\static_method.h 2025-08-26T20:45:23.6359383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\te_wrapper.h 2025-08-26T20:45:23.6368646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\callstack_debug_info_serialization.h 2025-08-26T20:45:23.6372809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\export.h 2025-08-26T20:45:23.6375926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\export_bytecode.h 2025-08-26T20:45:23.6384443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\flatbuffer_serializer.h 2025-08-26T20:45:23.6387716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\flatbuffer_serializer_jit.h 2025-08-26T20:45:23.6391662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\import.h 2025-08-26T20:45:23.6395879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\import_export_constants.h 2025-08-26T20:45:23.6399771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\import_export_functions.h 2025-08-26T20:45:23.6403505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\import_export_helpers.h 2025-08-26T20:45:23.6407423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\import_read.h 2025-08-26T20:45:23.6410944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\import_source.h 2025-08-26T20:45:23.6415266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\mobile_bytecode_generated.h 2025-08-26T20:45:23.6419554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\onnx.h 2025-08-26T20:45:23.6423582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\pickle.h 2025-08-26T20:45:23.6427413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\pickler.h 2025-08-26T20:45:23.6430880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\pickler_helper.h 2025-08-26T20:45:23.6434505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\python_print.h 2025-08-26T20:45:23.6438206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\source_range_serialization.h 2025-08-26T20:45:23.6442169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\source_range_serialization_impl.h 2025-08-26T20:45:23.6445834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\storage_context.h 2025-08-26T20:45:23.6454676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\type_name_uniquer.h 2025-08-26T20:45:23.6458062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\unpickler.h 2025-08-26T20:45:23.6466625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\analysis.h 2025-08-26T20:45:23.6470308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\block_codegen.h 2025-08-26T20:45:23.6473846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\bounds_inference.h 2025-08-26T20:45:23.6477965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\bounds_overlap.h 2025-08-26T20:45:23.6485168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\codegen.h 2025-08-26T20:45:23.6488715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\cpp_codegen.h 2025-08-26T20:45:23.6492307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\cpp_intrinsics.h 2025-08-26T20:45:23.6495793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\cuda_codegen.h 2025-08-26T20:45:23.6499280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\cuda_random.h 2025-08-26T20:45:23.6502785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\eval.h 2025-08-26T20:45:23.6506682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\exceptions.h 2025-08-26T20:45:23.6510278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\expr.h 2025-08-26T20:45:23.6513981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\external_functions.h 2025-08-26T20:45:23.6517845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\external_functions_core.h 2025-08-26T20:45:23.6521419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\external_functions_registry.h 2025-08-26T20:45:23.6525151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\fwd_decls.h 2025-08-26T20:45:23.6529131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\graph_opt.h 2025-08-26T20:45:23.6532500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\half_support.h 2025-08-26T20:45:23.6535921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\hash_provider.h 2025-08-26T20:45:23.6539573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\intrinsic_symbols.h 2025-08-26T20:45:23.6543168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\ir.h 2025-08-26T20:45:23.6550826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\ir_cloner.h 2025-08-26T20:45:23.6554440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\ir_mutator.h 2025-08-26T20:45:23.6558066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\ir_printer.h 2025-08-26T20:45:23.6561609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\ir_simplifier.h 2025-08-26T20:45:23.6565131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\ir_verifier.h 2025-08-26T20:45:23.6568868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\ir_visitor.h 2025-08-26T20:45:23.6572423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\kernel.h 2025-08-26T20:45:23.6576067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\llvm_codegen.h 2025-08-26T20:45:23.6580502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\llvm_jit.h 2025-08-26T20:45:23.6584285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\loopnest.h 2025-08-26T20:45:23.6588196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\loopnest_randomization.h 2025-08-26T20:45:23.6596385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\lowerings.h 2025-08-26T20:45:23.6600113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\mem_dependency_checker.h 2025-08-26T20:45:23.6603659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\reduction.h 2025-08-26T20:45:23.6607542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\registerizer.h 2025-08-26T20:45:23.6611213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\stmt.h 2025-08-26T20:45:23.6614909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\tensor.h 2025-08-26T20:45:23.6618435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\tensorexpr_init.h 2025-08-26T20:45:23.6622136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\types.h 2025-08-26T20:45:23.6625738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\unique_name_manager.h 2025-08-26T20:45:23.6629905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\var_substitutor.h 2025-08-26T20:45:23.6638258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\conv2d.h 2025-08-26T20:45:23.6641703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\matmul.h 2025-08-26T20:45:23.6645315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\misc.h 2025-08-26T20:45:23.6648788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\norm.h 2025-08-26T20:45:23.6652200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\operators.h 2025-08-26T20:45:23.6659783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\pointwise.h 2025-08-26T20:45:23.6663678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\quantization.h 2025-08-26T20:45:23.6667173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\reduction.h 2025-08-26T20:45:23.6670822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\softmax.h 2025-08-26T20:45:23.6679114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\testing\catch_utils.hpp 2025-08-26T20:45:23.6683081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\testing\file_check.h 2025-08-26T20:45:23.6686728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\testing\hooks_for_testing.h 2025-08-26T20:45:23.6699405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\backend\backend_data.h 2025-08-26T20:45:23.6703446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\backend\backend_device.h 2025-08-26T20:45:23.6706629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\backend\backend_interface.h 2025-08-26T20:45:23.6710115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\backend\lowering_context.h 2025-08-26T20:45:23.6721624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\cache.h 2025-08-26T20:45:23.6725067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\config.h 2025-08-26T20:45:23.6728577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\debug_util.h 2025-08-26T20:45:23.6732303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\dynamic_ir.h 2025-08-26T20:45:23.6735717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\hash.h 2025-08-26T20:45:23.6743828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\helpers.h 2025-08-26T20:45:23.6746885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\ir.h 2025-08-26T20:45:23.6750281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\ir_builder.h 2025-08-26T20:45:23.6753778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\ir_dump_util.h 2025-08-26T20:45:23.6757382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\ir_metadata.h 2025-08-26T20:45:23.6761018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\ir_util.h 2025-08-26T20:45:23.6764342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\lazy_graph_executor.h 2025-08-26T20:45:23.6768236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\metrics.h 2025-08-26T20:45:23.6772486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\multi_wait.h 2025-08-26T20:45:23.6775846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\permutation_util.h 2025-08-26T20:45:23.6779547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\shape.h 2025-08-26T20:45:23.6783029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\shape_inference.h 2025-08-26T20:45:23.6787573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\tensor.h 2025-08-26T20:45:23.6791120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\tensor_impl.h 2025-08-26T20:45:23.6794788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\tensor_util.h 2025-08-26T20:45:23.6798479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\thread_pool.h 2025-08-26T20:45:23.6802161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\trie.h 2025-08-26T20:45:23.6806031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\unique.h 2025-08-26T20:45:23.6809905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\util.h 2025-08-26T20:45:23.6821659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\internal_ops\ltc_ops.h 2025-08-26T20:45:23.6829112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\ops\arithmetic_ir_ops.h 2025-08-26T20:45:23.6832946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\ops\utils.h 2025-08-26T20:45:23.6840912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\generated\LazyIr.h 2025-08-26T20:45:23.6846095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\generated\LazyNativeFunctions.h 2025-08-26T20:45:23.6850090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\generated\LazyNonNativeIr.h 2025-08-26T20:45:23.6857943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\python\init.h 2025-08-26T20:45:23.6861920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\python\python_util.h 2025-08-26T20:45:23.6873857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\config.h 2025-08-26T20:45:23.6877898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\dynamic_ir.h 2025-08-26T20:45:23.6882018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ir_builder.h 2025-08-26T20:45:23.6885316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\tensor_aten_ops.h 2025-08-26T20:45:23.6892724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ts_autograd_functions.h 2025-08-26T20:45:23.6896537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ts_backend_impl.h 2025-08-26T20:45:23.6900195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ts_eager_fallback.h 2025-08-26T20:45:23.6903807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ts_lowering_context.h 2025-08-26T20:45:23.6907608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ts_node.h 2025-08-26T20:45:23.6910986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ts_node_lowering.h 2025-08-26T20:45:23.6918241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ops\device_data.h 2025-08-26T20:45:23.6922234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ops\generic.h 2025-08-26T20:45:23.6925738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ops\to_copy.h 2025-08-26T20:45:23.6934503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\monitor\counters.h 2025-08-26T20:45:23.6938363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\monitor\events.h 2025-08-26T20:45:23.6941837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\monitor\python_init.h 2025-08-26T20:45:23.6949104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\mps\Module.h 2025-08-26T20:45:23.6956173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\mtia\Module.h 2025-08-26T20:45:23.6963167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\mtia\profiler\MTIAMemoryProfiler.h 2025-08-26T20:45:23.6970746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\multiprocessing\init.h 2025-08-26T20:45:23.6977847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\onnx\back_compat.h 2025-08-26T20:45:23.6981583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\onnx\init.h 2025-08-26T20:45:23.6984987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\onnx\onnx.h 2025-08-26T20:45:23.6992370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\api.h 2025-08-26T20:45:23.6995750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\collection.h 2025-08-26T20:45:23.6999333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\combined_traceback.h 2025-08-26T20:45:23.7002931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\containers.h 2025-08-26T20:45:23.7010696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\data_flow.h 2025-08-26T20:45:23.7014264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\events.h 2025-08-26T20:45:23.7017755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\kineto_client_interface.h 2025-08-26T20:45:23.7021195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\kineto_shim.h 2025-08-26T20:45:23.7024903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\perf-inl.h 2025-08-26T20:45:23.7028380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\perf.h 2025-08-26T20:45:23.7031903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\util.h 2025-08-26T20:45:23.7039063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\orchestration\observer.h 2025-08-26T20:45:23.7042665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\orchestration\python_tracer.h 2025-08-26T20:45:23.7047220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\orchestration\vulkan.h 2025-08-26T20:45:23.7054377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\python\combined_traceback.h 2025-08-26T20:45:23.7058021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\python\init.h 2025-08-26T20:45:23.7075292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\python\pybind.h 2025-08-26T20:45:23.7082790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\standalone\execution_trace_observer.h 2025-08-26T20:45:23.7086206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\standalone\itt_observer.h 2025-08-26T20:45:23.7090017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\standalone\nvtx_observer.h 2025-08-26T20:45:23.7098085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\standalone\privateuse1_observer.h 2025-08-26T20:45:23.7105493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\stubs\base.h 2025-08-26T20:45:23.7112542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\action.h 2025-08-26T20:45:23.7116335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\communicate.h 2025-08-26T20:45:23.7119798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\debug_info.h 2025-08-26T20:45:23.7123202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\dwarf_enums.h 2025-08-26T20:45:23.7131221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\dwarf_symbolize_enums.h 2025-08-26T20:45:23.7135233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\eh_frame_hdr.h 2025-08-26T20:45:23.7138879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\fast_symbolizer.h 2025-08-26T20:45:23.7142224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\fde.h 2025-08-26T20:45:23.7145790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\lexer.h 2025-08-26T20:45:23.7149426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\line_number_program.h 2025-08-26T20:45:23.7152925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\mem_file.h 2025-08-26T20:45:23.7156330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\range_table.h 2025-08-26T20:45:23.7160254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\sections.h 2025-08-26T20:45:23.7163637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\unwind.h 2025-08-26T20:45:23.7167171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\unwinder.h 2025-08-26T20:45:23.7170616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\unwind_error.h 2025-08-26T20:45:23.7183243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\stable\accelerator.h 2025-08-26T20:45:23.7186797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\stable\library.h 2025-08-26T20:45:23.7190065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\stable\ops.h 2025-08-26T20:45:23.7193391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\stable\stableivalue_conversions.h 2025-08-26T20:45:23.7196751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\stable\tensor.h 2025-08-26T20:45:23.7205124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\stable\tensor_inl.h 2025-08-26T20:45:23.7208887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\stable\tensor_struct.h 2025-08-26T20:45:23.7216135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\tensor\python_tensor.h 2025-08-26T20:45:23.7224088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\byte_order.h 2025-08-26T20:45:23.7227876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\cpp_stacktraces.h 2025-08-26T20:45:23.7231300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\cuda_enabled.h 2025-08-26T20:45:23.7234712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\device_lazy_init.h 2025-08-26T20:45:23.7242441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\disable_torch_function.h 2025-08-26T20:45:23.7246292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\generated_serialization_types.h 2025-08-26T20:45:23.7250584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\init.h 2025-08-26T20:45:23.7254028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\invalid_arguments.h 2025-08-26T20:45:23.7258041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\nested.h 2025-08-26T20:45:23.7261537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\numpy_stub.h 2025-08-26T20:45:23.7265108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\object_ptr.h 2025-08-26T20:45:23.7269140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\out_types.h 2025-08-26T20:45:23.7273017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\pybind.h 2025-08-26T20:45:23.7276453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\pycfunction_helpers.h 2025-08-26T20:45:23.7280748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\pyobject_preservation.h 2025-08-26T20:45:23.7284983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\pythoncapi_compat.h 2025-08-26T20:45:23.7288395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_arg_parser.h 2025-08-26T20:45:23.7292111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_compat.h 2025-08-26T20:45:23.7295942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_dispatch.h 2025-08-26T20:45:23.7299464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_numbers.h 2025-08-26T20:45:23.7307885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_raii.h 2025-08-26T20:45:23.7311149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_scalars.h 2025-08-26T20:45:23.7315307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_strings.h 2025-08-26T20:45:23.7319317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_stub.h 2025-08-26T20:45:23.7322673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_symnode.h 2025-08-26T20:45:23.7326427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_torch_function_mode.h 2025-08-26T20:45:23.7330396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_tuples.h 2025-08-26T20:45:23.7333758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\schema_info.h 2025-08-26T20:45:23.7337723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\six.h 2025-08-26T20:45:23.7341179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\structseq.h 2025-08-26T20:45:23.7348319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_apply.h 2025-08-26T20:45:23.7352081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_dtypes.h 2025-08-26T20:45:23.7355824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_flatten.h 2025-08-26T20:45:23.7359816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_layouts.h 2025-08-26T20:45:23.7363132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_list.h 2025-08-26T20:45:23.7366850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_memoryformats.h 2025-08-26T20:45:23.7371093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_new.h 2025-08-26T20:45:23.7374100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_numpy.h 2025-08-26T20:45:23.7377719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_qschemes.h 2025-08-26T20:45:23.7386003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_types.h 2025-08-26T20:45:23.7390321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\throughput_benchmark-inl.h 2025-08-26T20:45:23.7394362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\throughput_benchmark.h 2025-08-26T20:45:23.7397504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\torch_dispatch_mode.h 2025-08-26T20:45:23.7401399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\variadic.h 2025-08-26T20:45:23.7405471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\verbose.h 2025-08-26T20:45:23.7414009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\xpu\Event.h 2025-08-26T20:45:23.7417622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\xpu\Module.h 2025-08-26T20:45:23.7421017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\xpu\Stream.h 2025-08-26T20:45:23.7434550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\core\ScalarType.h 2025-08-26T20:45:23.7445762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\cpu\vec\intrinsics.h 2025-08-26T20:45:23.7449432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\cpu\vec\vec_half.h 2025-08-26T20:45:23.7456258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\cpu\vec\vec256\missing_vld1_neon.h 2025-08-26T20:45:23.7459729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\cpu\vec\vec256\missing_vst1_neon.h 2025-08-26T20:45:23.7468288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\macros\cmake_macros.h 2025-08-26T20:45:23.7471598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\macros\Export.h 2025-08-26T20:45:23.7474907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\macros\Macros.h 2025-08-26T20:45:23.7482716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\BFloat16.h 2025-08-26T20:45:23.7485940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\bits.h 2025-08-26T20:45:23.7489410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\bit_cast.h 2025-08-26T20:45:23.7492772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\complex.h 2025-08-26T20:45:23.7496089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Exception.h 2025-08-26T20:45:23.7499689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Float4_e2m1fn_x2.h 2025-08-26T20:45:23.7508101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Float8_e4m3fn.h 2025-08-26T20:45:23.7511548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Float8_e4m3fnuz.h 2025-08-26T20:45:23.7515114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Float8_e5m2.h 2025-08-26T20:45:23.7518602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Float8_e5m2fnuz.h 2025-08-26T20:45:23.7522109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Float8_e8m0fnu.h 2025-08-26T20:45:23.7525558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Float8_fnuz_cvt.h 2025-08-26T20:45:23.7529150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\floating_point_utils.h 2025-08-26T20:45:23.7532775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Half.h 2025-08-26T20:45:23.7536447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\qint32.h 2025-08-26T20:45:23.7540053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\qint8.h 2025-08-26T20:45:23.7543609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\quint2x4.h 2025-08-26T20:45:23.7546953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\quint4x2.h 2025-08-26T20:45:23.7550246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\quint8.h 2025-08-26T20:45:23.7553561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\shim_utils.h 2025-08-26T20:45:23.7557317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\TypeSafeSignMath.h 2025-08-26T20:45:23.7569352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\annotations.py 2025-08-26T20:45:23.7572269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\frontend.py 2025-08-26T20:45:23.7576032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\generate_bytecode.py 2025-08-26T20:45:23.7579572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\quantized.py 2025-08-26T20:45:23.7587866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\supported_ops.py 2025-08-26T20:45:23.7591299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\unsupported_tensor_ops.py 2025-08-26T20:45:23.7594668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_async.py 2025-08-26T20:45:23.7598186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_await.py 2025-08-26T20:45:23.7601594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_builtins.py 2025-08-26T20:45:23.7605040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_check.py 2025-08-26T20:45:23.7608381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_dataclass_impls.py 2025-08-26T20:45:23.7612271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_decompositions.py 2025-08-26T20:45:23.7615644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_decomposition_utils.py 2025-08-26T20:45:23.7618972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_freeze.py 2025-08-26T20:45:23.7622276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_fuser.py 2025-08-26T20:45:23.7625669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_ir_utils.py 2025-08-26T20:45:23.7629115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_logging.py 2025-08-26T20:45:23.7632671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_monkeytype_config.py 2025-08-26T20:45:23.7636333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_pickle.py 2025-08-26T20:45:23.7639731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_recursive.py 2025-08-26T20:45:23.7643437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_script.py 2025-08-26T20:45:23.7647059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_script.pyi 2025-08-26T20:45:23.7650488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_serialization.py 2025-08-26T20:45:23.7653863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_shape_functions.py 2025-08-26T20:45:23.7662064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_state.py 2025-08-26T20:45:23.7665877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_trace.py 2025-08-26T20:45:23.7669420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__init__.py 2025-08-26T20:45:23.7676241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\mobile\__init__.py 2025-08-26T20:45:23.7684226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\mobile\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:23.7692122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_passes\_property_propagation.py 2025-08-26T20:45:23.7695514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_passes\__init__.py 2025-08-26T20:45:23.7701757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_passes\__pycache__\_property_propagation.cpython-39.pyc 2025-08-26T20:45:23.7705364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_passes\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:23.7713481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\annotations.cpython-39.pyc 2025-08-26T20:45:23.7717425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\frontend.cpython-39.pyc 2025-08-26T20:45:23.7721045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\generate_bytecode.cpython-39.pyc 2025-08-26T20:45:23.7728530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\quantized.cpython-39.pyc 2025-08-26T20:45:23.7732324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\supported_ops.cpython-39.pyc 2025-08-26T20:45:23.7735750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\unsupported_tensor_ops.cpython-39.pyc 2025-08-26T20:45:23.7739975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_async.cpython-39.pyc 2025-08-26T20:45:23.7743909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_await.cpython-39.pyc 2025-08-26T20:45:23.7747538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_builtins.cpython-39.pyc 2025-08-26T20:45:23.7751647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_check.cpython-39.pyc 2025-08-26T20:45:23.7755301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_dataclass_impls.cpython-39.pyc 2025-08-26T20:45:23.7758754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_decompositions.cpython-39.pyc 2025-08-26T20:45:23.7762674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_decomposition_utils.cpython-39.pyc 2025-08-26T20:45:23.7766531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_freeze.cpython-39.pyc 2025-08-26T20:45:23.7770593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_fuser.cpython-39.pyc 2025-08-26T20:45:23.7775322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_ir_utils.cpython-39.pyc 2025-08-26T20:45:23.7779502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_logging.cpython-39.pyc 2025-08-26T20:45:23.7787948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_monkeytype_config.cpython-39.pyc 2025-08-26T20:45:23.7791284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_pickle.cpython-39.pyc 2025-08-26T20:45:23.7794936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_recursive.cpython-39.pyc 2025-08-26T20:45:23.7798614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_script.cpython-39.pyc 2025-08-26T20:45:23.7803060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_serialization.cpython-39.pyc 2025-08-26T20:45:23.7806927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_shape_functions.cpython-39.pyc 2025-08-26T20:45:23.7810826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_state.cpython-39.pyc 2025-08-26T20:45:23.7814857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_trace.cpython-39.pyc 2025-08-26T20:45:23.7823248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:23.7831776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\aoti_custom_ops.dll 2025-08-26T20:45:23.7836998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\aoti_custom_ops.lib 2025-08-26T20:45:23.7841035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\backend_with_compiler.dll 2025-08-26T20:45:23.7850174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\backend_with_compiler.lib 2025-08-26T20:45:23.7854249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\c10.dll 2025-08-26T20:45:23.7864016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\c10.lib 2025-08-26T20:45:23.7871581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\cpuinfo.lib 2025-08-26T20:45:23.7876241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\dnnl.lib 2025-08-26T20:45:24.1296561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\fmt.lib 2025-08-26T20:45:24.1307189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\jitbackend_test.dll 2025-08-26T20:45:24.1313124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\jitbackend_test.lib 2025-08-26T20:45:24.1317435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\kineto.lib 2025-08-26T20:45:24.1429009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libittnotify.lib 2025-08-26T20:45:24.1434196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libprotobuf-lite.lib 2025-08-26T20:45:24.1466775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libprotobuf.lib 2025-08-26T20:45:24.1653236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libprotoc.lib 2025-08-26T20:45:24.1853708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\microkernels-prod.lib 2025-08-26T20:45:24.1871224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\pthreadpool.lib 2025-08-26T20:45:24.1876774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\shm.dll 2025-08-26T20:45:24.1880755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\shm.lib 2025-08-26T20:45:24.1884579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\sleef.lib 2025-08-26T20:45:24.1935342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torch.dll 2025-08-26T20:45:24.1938956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torch.lib 2025-08-26T20:45:24.1942573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torchbind_test.dll 2025-08-26T20:45:24.1954288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torchbind_test.lib 2025-08-26T20:45:24.1958726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torch_cpu.dll 2025-08-26T20:45:24.3180234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torch_cpu.lib 2025-08-26T20:45:24.3325479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torch_global_deps.dll 2025-08-26T20:45:24.3329179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torch_python.dll 2025-08-26T20:45:24.3416889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torch_python.lib 2025-08-26T20:45:24.3422454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\XNNPACK.lib 2025-08-26T20:45:24.3440505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\_C.lib 2025-08-26T20:45:24.3448132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libshm\alloc_info.h 2025-08-26T20:45:24.3451772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libshm\err.h 2025-08-26T20:45:24.3455517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libshm\libshm.h 2025-08-26T20:45:24.3459247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libshm\socket.h 2025-08-26T20:45:24.3467542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libshm_windows\libshm.h 2025-08-26T20:45:24.3476001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\linalg\__init__.py 2025-08-26T20:45:24.3484554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\linalg\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.3493274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\_docs.py 2025-08-26T20:45:24.3496917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\_ops.py 2025-08-26T20:45:24.3500751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\__init__.py 2025-08-26T20:45:24.3507787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\binary.py 2025-08-26T20:45:24.3512810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\core.py 2025-08-26T20:45:24.3515344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\creation.py 2025-08-26T20:45:24.3518727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\passthrough.py 2025-08-26T20:45:24.3522127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\reductions.py 2025-08-26T20:45:24.3529979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\unary.py 2025-08-26T20:45:24.3533566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\_ops_refs.py 2025-08-26T20:45:24.3537094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__init__.py 2025-08-26T20:45:24.3544530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\binary.cpython-39.pyc 2025-08-26T20:45:24.3547988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\core.cpython-39.pyc 2025-08-26T20:45:24.3551627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\creation.cpython-39.pyc 2025-08-26T20:45:24.3559344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\passthrough.cpython-39.pyc 2025-08-26T20:45:24.3563209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\reductions.cpython-39.pyc 2025-08-26T20:45:24.3566771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\unary.cpython-39.pyc 2025-08-26T20:45:24.3570338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\_ops_refs.cpython-39.pyc 2025-08-26T20:45:24.3574206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.3587097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\__pycache__\_docs.cpython-39.pyc 2025-08-26T20:45:24.3590796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\__pycache__\_ops.cpython-39.pyc 2025-08-26T20:45:24.3594610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.3624275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\monitor\__init__.py 2025-08-26T20:45:24.3631517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\monitor\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.3638855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mps\event.py 2025-08-26T20:45:24.3642598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mps\profiler.py 2025-08-26T20:45:24.3646015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mps\__init__.py 2025-08-26T20:45:24.3652933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mps\__pycache__\event.cpython-39.pyc 2025-08-26T20:45:24.3656451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mps\__pycache__\profiler.cpython-39.pyc 2025-08-26T20:45:24.3660012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mps\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.3672173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mtia\memory.py 2025-08-26T20:45:24.3675726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mtia\_utils.py 2025-08-26T20:45:24.3679175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mtia\__init__.py 2025-08-26T20:45:24.3686022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mtia\__pycache__\memory.cpython-39.pyc 2025-08-26T20:45:24.3690001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mtia\__pycache__\_utils.cpython-39.pyc 2025-08-26T20:45:24.3693542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mtia\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.3707347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\pool.py 2025-08-26T20:45:24.3711102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\queue.py 2025-08-26T20:45:24.3714601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\reductions.py 2025-08-26T20:45:24.3718056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\spawn.py 2025-08-26T20:45:24.3721425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\_atfork.py 2025-08-26T20:45:24.3728931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\__init__.py 2025-08-26T20:45:24.3736080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\__pycache__\pool.cpython-39.pyc 2025-08-26T20:45:24.3739628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\__pycache__\queue.cpython-39.pyc 2025-08-26T20:45:24.3743638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\__pycache__\reductions.cpython-39.pyc 2025-08-26T20:45:24.3751501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\__pycache__\spawn.cpython-39.pyc 2025-08-26T20:45:24.3754998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\__pycache__\_atfork.cpython-39.pyc 2025-08-26T20:45:24.3758621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.3767201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\__init__.py 2025-08-26T20:45:24.3776239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\nested_int.py 2025-08-26T20:45:24.3781261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\nested_tensor.py 2025-08-26T20:45:24.3785630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\ops.py 2025-08-26T20:45:24.3789761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\sdpa.py 2025-08-26T20:45:24.3940856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\__init__.py 2025-08-26T20:45:24.3948642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\__pycache__\nested_int.cpython-39.pyc 2025-08-26T20:45:24.3954138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\__pycache__\nested_tensor.cpython-39.pyc 2025-08-26T20:45:24.3975196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\__pycache__\ops.cpython-39.pyc 2025-08-26T20:45:24.4066190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\__pycache__\sdpa.cpython-39.pyc 2025-08-26T20:45:24.4070306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.4079350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.4091478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\common_types.py 2025-08-26T20:45:24.4094901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\cpp.py 2025-08-26T20:45:24.4098620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\functional.py 2025-08-26T20:45:24.4104470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\functional.pyi 2025-08-26T20:45:24.4211087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\grad.py 2025-08-26T20:45:24.4216409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\init.py 2025-08-26T20:45:24.4221185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parameter.py 2025-08-26T20:45:24.4224688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parameter.pyi 2025-08-26T20:45:24.4228304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\_reduction.py 2025-08-26T20:45:24.4231789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__init__.py 2025-08-26T20:45:24.4241221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\bias.py 2025-08-26T20:45:24.4245248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\flex_attention.py 2025-08-26T20:45:24.4249687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\_utils.py 2025-08-26T20:45:24.4253127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\__init__.py 2025-08-26T20:45:24.4358363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\experimental\_paged_attention.py 2025-08-26T20:45:24.4364265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\experimental\__init__.py 2025-08-26T20:45:24.4372963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\experimental\__pycache__\_paged_attention.cpython-39.pyc 2025-08-26T20:45:24.4376911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\experimental\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.4387738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\__pycache__\bias.cpython-39.pyc 2025-08-26T20:45:24.4392067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\__pycache__\flex_attention.cpython-39.pyc 2025-08-26T20:45:24.4395824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\__pycache__\_utils.cpython-39.pyc 2025-08-26T20:45:24.4742764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.4753360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\backends\thnn.py 2025-08-26T20:45:24.4756818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\backends\__init__.py 2025-08-26T20:45:24.4762883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\backends\__pycache__\thnn.cpython-39.pyc 2025-08-26T20:45:24.4766501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\backends\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.4775562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\__init__.py 2025-08-26T20:45:24.4784903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\modules\fused.py 2025-08-26T20:45:24.4788204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\modules\__init__.py 2025-08-26T20:45:24.4795821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\modules\__pycache__\fused.cpython-39.pyc 2025-08-26T20:45:24.4799496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\modules\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.4809102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\__init__.py 2025-08-26T20:45:24.4818444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\conv_fused.py 2025-08-26T20:45:24.4822742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\linear_fused.py 2025-08-26T20:45:24.4826387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\linear_relu.py 2025-08-26T20:45:24.4829779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\__init__.py 2025-08-26T20:45:24.4939104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\__pycache__\conv_fused.cpython-39.pyc 2025-08-26T20:45:24.4943231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\__pycache__\linear_fused.cpython-39.pyc 2025-08-26T20:45:24.4948183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\__pycache__\linear_relu.cpython-39.pyc 2025-08-26T20:45:24.5072326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.5080424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.5089230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\__init__.py 2025-08-26T20:45:24.5096790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\dynamic\__init__.py 2025-08-26T20:45:24.5106719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\dynamic\modules\linear_relu.py 2025-08-26T20:45:24.5110292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\dynamic\modules\__init__.py 2025-08-26T20:45:24.5117286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\dynamic\modules\__pycache__\linear_relu.cpython-39.pyc 2025-08-26T20:45:24.5121848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\dynamic\modules\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.5130468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\dynamic\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.5139082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\bn_relu.py 2025-08-26T20:45:24.5142558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\conv_relu.py 2025-08-26T20:45:24.5146328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\linear_relu.py 2025-08-26T20:45:24.5149757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\__init__.py 2025-08-26T20:45:24.5280700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\__pycache__\bn_relu.cpython-39.pyc 2025-08-26T20:45:24.5284920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\__pycache__\conv_relu.cpython-39.pyc 2025-08-26T20:45:24.5288739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\__pycache__\linear_relu.cpython-39.pyc 2025-08-26T20:45:24.5408952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.5418044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.9960092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:24.9969607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\activation.py 2025-08-26T20:45:24.9973870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\adaptive.py 2025-08-26T20:45:24.9978596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\batchnorm.py 2025-08-26T20:45:24.9984123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\channelshuffle.py 2025-08-26T20:45:25.0127466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\container.py 2025-08-26T20:45:25.0130855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\conv.py 2025-08-26T20:45:25.0134879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\distance.py 2025-08-26T20:45:25.0138564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\dropout.py 2025-08-26T20:45:25.0142211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\flatten.py 2025-08-26T20:45:25.0147253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\fold.py 2025-08-26T20:45:25.0151187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\instancenorm.py 2025-08-26T20:45:25.0156003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\lazy.py 2025-08-26T20:45:25.0159872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\linear.py 2025-08-26T20:45:25.0163680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\loss.py 2025-08-26T20:45:25.0167695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\module.py 2025-08-26T20:45:25.0172132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\normalization.py 2025-08-26T20:45:25.0175898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\padding.py 2025-08-26T20:45:25.0179936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\pixelshuffle.py 2025-08-26T20:45:25.0183500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\pooling.py 2025-08-26T20:45:25.0187204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\rnn.py 2025-08-26T20:45:25.0191063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\sparse.py 2025-08-26T20:45:25.0194710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\transformer.py 2025-08-26T20:45:25.0198870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\upsampling.py 2025-08-26T20:45:25.0202747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\utils.py 2025-08-26T20:45:25.0206539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\_functions.py 2025-08-26T20:45:25.0209935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__init__.py 2025-08-26T20:45:25.0218582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\activation.cpython-39.pyc 2025-08-26T20:45:25.0222804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\adaptive.cpython-39.pyc 2025-08-26T20:45:25.0227078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\batchnorm.cpython-39.pyc 2025-08-26T20:45:25.0352521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\channelshuffle.cpython-39.pyc 2025-08-26T20:45:25.0355951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\container.cpython-39.pyc 2025-08-26T20:45:25.0359786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\conv.cpython-39.pyc 2025-08-26T20:45:25.0364176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\distance.cpython-39.pyc 2025-08-26T20:45:25.0367937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\dropout.cpython-39.pyc 2025-08-26T20:45:25.0371663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\flatten.cpython-39.pyc 2025-08-26T20:45:25.0375603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\fold.cpython-39.pyc 2025-08-26T20:45:25.0379511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\instancenorm.cpython-39.pyc 2025-08-26T20:45:25.0384218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\lazy.cpython-39.pyc 2025-08-26T20:45:25.0388804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\linear.cpython-39.pyc 2025-08-26T20:45:25.0393620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\loss.cpython-39.pyc 2025-08-26T20:45:25.0400328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\module.cpython-39.pyc 2025-08-26T20:45:25.0405430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\normalization.cpython-39.pyc 2025-08-26T20:45:25.0409367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\padding.cpython-39.pyc 2025-08-26T20:45:25.5575703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\pixelshuffle.cpython-39.pyc 2025-08-26T20:45:25.5580857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\pooling.cpython-39.pyc 2025-08-26T20:45:25.5584536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\rnn.cpython-39.pyc 2025-08-26T20:45:25.5588406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\sparse.cpython-39.pyc 2025-08-26T20:45:25.5591987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\transformer.cpython-39.pyc 2025-08-26T20:45:25.5595840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\upsampling.cpython-39.pyc 2025-08-26T20:45:25.5599900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:25.5603335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\_functions.cpython-39.pyc 2025-08-26T20:45:25.5606872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:26.0713516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\comm.py 2025-08-26T20:45:26.0716514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\data_parallel.py 2025-08-26T20:45:26.0719954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\distributed.py 2025-08-26T20:45:26.0724136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\parallel_apply.py 2025-08-26T20:45:26.0820910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\replicate.py 2025-08-26T20:45:26.0824486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\scatter_gather.py 2025-08-26T20:45:26.0827925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\_functions.py 2025-08-26T20:45:26.0831515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__init__.py 2025-08-26T20:45:26.0838894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\comm.cpython-39.pyc 2025-08-26T20:45:26.0842601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\data_parallel.cpython-39.pyc 2025-08-26T20:45:26.0846298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\distributed.cpython-39.pyc 2025-08-26T20:45:26.0987315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\parallel_apply.cpython-39.pyc 2025-08-26T20:45:26.0991203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\replicate.cpython-39.pyc 2025-08-26T20:45:26.0994703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\scatter_gather.cpython-39.pyc 2025-08-26T20:45:26.0998333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\_functions.cpython-39.pyc 2025-08-26T20:45:26.1001901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:26.1010854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\__init__.py 2025-08-26T20:45:26.1018425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\dynamic\__init__.py 2025-08-26T20:45:26.1025595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\dynamic\modules\linear.py 2025-08-26T20:45:26.1029117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\dynamic\modules\__init__.py 2025-08-26T20:45:26.1036344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\dynamic\modules\__pycache__\linear.cpython-39.pyc 2025-08-26T20:45:26.1040335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\dynamic\modules\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:26.1049094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\dynamic\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:26.1056431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\conv.py 2025-08-26T20:45:26.1060026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\embedding_ops.py 2025-08-26T20:45:26.1063884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\linear.py 2025-08-26T20:45:26.1067361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\__init__.py 2025-08-26T20:45:26.1176498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\__pycache__\conv.cpython-39.pyc 2025-08-26T20:45:26.1180264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\__pycache__\embedding_ops.cpython-39.pyc 2025-08-26T20:45:26.1184353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\__pycache__\linear.cpython-39.pyc 2025-08-26T20:45:26.1283190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:26.1291344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:26.1300376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\__init__.py 2025-08-26T20:45:26.1307465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\modules\activation.py 2025-08-26T20:45:26.1312257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\modules\rnn.py 2025-08-26T20:45:26.1316972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\modules\__init__.py 2025-08-26T20:45:26.1325668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\modules\__pycache__\activation.cpython-39.pyc 2025-08-26T20:45:26.1329984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\modules\__pycache__\rnn.cpython-39.pyc 2025-08-26T20:45:26.1333957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\modules\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:26.1479721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:26.1488598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\functional.py 2025-08-26T20:45:26.1492409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\__init__.py 2025-08-26T20:45:26.1499676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\__init__.py 2025-08-26T20:45:26.1506949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\conv.py 2025-08-26T20:45:26.3573498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\linear.py 2025-08-26T20:45:26.3576920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\rnn.py 2025-08-26T20:45:26.3581673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\__init__.py 2025-08-26T20:45:26.3590789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\__pycache__\conv.cpython-39.pyc 2025-08-26T20:45:26.3594622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\__pycache__\linear.cpython-39.pyc 2025-08-26T20:45:26.3598789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\__pycache__\rnn.cpython-39.pyc 2025-08-26T20:45:26.3707255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:26.3715463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:26.3846849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\activation.py 2025-08-26T20:45:26.3850319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\batchnorm.py 2025-08-26T20:45:26.3854038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\conv.py 2025-08-26T20:45:26.3858059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\dropout.py 2025-08-26T20:45:26.3862662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\embedding_ops.py 2025-08-26T20:45:26.3952394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\functional_modules.py 2025-08-26T20:45:26.3956469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\linear.py 2025-08-26T20:45:26.3960123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\normalization.py 2025-08-26T20:45:26.3963634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\rnn.py 2025-08-26T20:45:26.3967220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\utils.py 2025-08-26T20:45:26.3971027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__init__.py 2025-08-26T20:45:26.3979745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\activation.cpython-39.pyc 2025-08-26T20:45:26.3985748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\batchnorm.cpython-39.pyc 2025-08-26T20:45:26.3990707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\conv.cpython-39.pyc 2025-08-26T20:45:26.4094178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\dropout.cpython-39.pyc 2025-08-26T20:45:26.4098403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\embedding_ops.cpython-39.pyc 2025-08-26T20:45:26.4102135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\functional_modules.cpython-39.pyc 2025-08-26T20:45:26.4106098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\linear.cpython-39.pyc 2025-08-26T20:45:26.4110178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\normalization.cpython-39.pyc 2025-08-26T20:45:26.4113911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\rnn.cpython-39.pyc 2025-08-26T20:45:26.4118111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:26.4121841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:26.7662012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\__init__.py 2025-08-26T20:45:26.7668653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\conv.py 2025-08-26T20:45:26.7672233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\linear.py 2025-08-26T20:45:26.7676176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\rnn.py 2025-08-26T20:45:26.7679219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\sparse.py 2025-08-26T20:45:26.7682494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\utils.py 2025-08-26T20:45:26.7685982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\__init__.py 2025-08-26T20:45:26.7698124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\__pycache__\conv.cpython-39.pyc 2025-08-26T20:45:26.7701496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\__pycache__\linear.cpython-39.pyc 2025-08-26T20:45:26.7705210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\__pycache__\rnn.cpython-39.pyc 2025-08-26T20:45:26.7713465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\__pycache__\sparse.cpython-39.pyc 2025-08-26T20:45:26.7717039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:26.7720782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:26.7728775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:26.7736865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\__pycache__\functional.cpython-39.pyc 2025-08-26T20:45:26.7740617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:26.7749161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\clip_grad.py 2025-08-26T20:45:26.7752612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\convert_parameters.py 2025-08-26T20:45:26.7761140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\fusion.py 2025-08-26T20:45:26.7761627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\init.py 2025-08-26T20:45:26.7763248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\memory_format.py 2025-08-26T20:45:26.7771388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\parametrizations.py 2025-08-26T20:45:26.7774740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\parametrize.py 2025-08-26T20:45:26.7778374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\prune.py 2025-08-26T20:45:26.7782159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\rnn.py 2025-08-26T20:45:26.7785668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\spectral_norm.py 2025-08-26T20:45:26.7789132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\stateless.py 2025-08-26T20:45:26.7792558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\weight_norm.py 2025-08-26T20:45:26.7796194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_deprecation_utils.py 2025-08-26T20:45:26.7799770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_named_member_accessor.py 2025-08-26T20:45:26.7804960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_per_sample_grad.py 2025-08-26T20:45:26.7808376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__init__.py 2025-08-26T20:45:26.7815955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\conv_expanded_weights.py 2025-08-26T20:45:26.7819540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\conv_utils.py 2025-08-26T20:45:26.7823152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\embedding_expanded_weights.py 2025-08-26T20:45:26.7831736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\expanded_weights_impl.py 2025-08-26T20:45:26.7835326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\expanded_weights_utils.py 2025-08-26T20:45:26.7839150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\group_norm_expanded_weights.py 2025-08-26T20:45:26.7842943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\instance_norm_expanded_weights.py 2025-08-26T20:45:26.7846634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\layer_norm_expanded_weights.py 2025-08-26T20:45:26.7850181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\linear_expanded_weights.py 2025-08-26T20:45:26.7853907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__init__.py 2025-08-26T20:45:26.7861465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\conv_expanded_weights.cpython-39.pyc 2025-08-26T20:45:26.7865523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\conv_utils.cpython-39.pyc 2025-08-26T20:45:26.7869655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\embedding_expanded_weights.cpython-39.pyc 2025-08-26T20:45:26.7877399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\expanded_weights_impl.cpython-39.pyc 2025-08-26T20:45:26.7881458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\expanded_weights_utils.cpython-39.pyc 2025-08-26T20:45:26.7884803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\group_norm_expanded_weights.cpython-39.pyc 2025-08-26T20:45:26.7888800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\instance_norm_expanded_weights.cpython-39.pyc 2025-08-26T20:45:26.7892587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\layer_norm_expanded_weights.cpython-39.pyc 2025-08-26T20:45:26.7896241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\linear_expanded_weights.cpython-39.pyc 2025-08-26T20:45:26.7900265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:26.7909806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\clip_grad.cpython-39.pyc 2025-08-26T20:45:26.7913145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\convert_parameters.cpython-39.pyc 2025-08-26T20:45:26.7917561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\fusion.cpython-39.pyc 2025-08-26T20:45:26.7925476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\init.cpython-39.pyc 2025-08-26T20:45:26.7929199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\memory_format.cpython-39.pyc 2025-08-26T20:45:26.7933071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\parametrizations.cpython-39.pyc 2025-08-26T20:45:26.7936411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\parametrize.cpython-39.pyc 2025-08-26T20:45:26.7940445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\prune.cpython-39.pyc 2025-08-26T20:45:26.7944618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\rnn.cpython-39.pyc 2025-08-26T20:45:26.7948243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\spectral_norm.cpython-39.pyc 2025-08-26T20:45:26.7952145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\stateless.cpython-39.pyc 2025-08-26T20:45:26.7955827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\weight_norm.cpython-39.pyc 2025-08-26T20:45:26.7959373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\_deprecation_utils.cpython-39.pyc 2025-08-26T20:45:26.7963410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\_named_member_accessor.cpython-39.pyc 2025-08-26T20:45:26.7967182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\_per_sample_grad.cpython-39.pyc 2025-08-26T20:45:26.7970961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:26.7979954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\common_types.cpython-39.pyc 2025-08-26T20:45:26.7983832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\cpp.cpython-39.pyc 2025-08-26T20:45:26.7987829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\functional.cpython-39.pyc 2025-08-26T20:45:26.7997297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\grad.cpython-39.pyc 2025-08-26T20:45:26.8000886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\init.cpython-39.pyc 2025-08-26T20:45:26.8004673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\parameter.cpython-39.pyc 2025-08-26T20:45:26.8008523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\_reduction.cpython-39.pyc 2025-08-26T20:45:26.8012464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:26.8021361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\numa\binding.py 2025-08-26T20:45:26.8024847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\numa\__init__.py 2025-08-26T20:45:26.8030961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\numa\__pycache__\binding.cpython-39.pyc 2025-08-26T20:45:26.8034573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\numa\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:26.8043622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\errors.py 2025-08-26T20:45:26.8047113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\operators.py 2025-08-26T20:45:26.8050697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_helper.py 2025-08-26T20:45:26.8054473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset10.py 2025-08-26T20:45:26.8064035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset11.py 2025-08-26T20:45:26.8068327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset12.py 2025-08-26T20:45:26.8072020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset13.py 2025-08-26T20:45:26.8075830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset14.py 2025-08-26T20:45:26.8079602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset15.py 2025-08-26T20:45:26.8083147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset16.py 2025-08-26T20:45:26.8086969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset17.py 2025-08-26T20:45:26.8090480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset18.py 2025-08-26T20:45:26.8094403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset19.py 2025-08-26T20:45:26.8099029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset20.py 2025-08-26T20:45:26.8102964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset7.py 2025-08-26T20:45:26.8106927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset8.py 2025-08-26T20:45:26.8110885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset9.py 2025-08-26T20:45:26.8116110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\utils.py 2025-08-26T20:45:26.8120147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\verification.py 2025-08-26T20:45:26.8124378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_constants.py 2025-08-26T20:45:26.8132917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_experimental.py 2025-08-26T20:45:26.8136457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_flags.py 2025-08-26T20:45:26.8139960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_globals.py 2025-08-26T20:45:26.8143505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_type_utils.py 2025-08-26T20:45:26.8146993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__init__.py 2025-08-26T20:45:26.8154700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\_dtype_mappings.py 2025-08-26T20:45:26.8158130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\_impl.py 2025-08-26T20:45:26.8161485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\_symbolic_impl.py 2025-08-26T20:45:26.8164876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\__init__.py 2025-08-26T20:45:26.8177471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\__pycache__\_dtype_mappings.cpython-39.pyc 2025-08-26T20:45:26.8181839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\__pycache__\_impl.cpython-39.pyc 2025-08-26T20:45:26.8185796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\__pycache__\_symbolic_impl.cpython-39.pyc 2025-08-26T20:45:26.8194121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:26.8202746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\jit_utils.py 2025-08-26T20:45:26.8206250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\onnx_proto_utils.py 2025-08-26T20:45:26.8209607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\registration.py 2025-08-26T20:45:26.8217995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\_lazy_import.py 2025-08-26T20:45:26.8221497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\__init__.py 2025-08-26T20:45:26.8227908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_analysis.py 2025-08-26T20:45:26.8231326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_building.py 2025-08-26T20:45:26.8234830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_capture_strategies.py 2025-08-26T20:45:26.8238263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_compat.py 2025-08-26T20:45:26.8246851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_constants.py 2025-08-26T20:45:26.8250254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_core.py 2025-08-26T20:45:26.8253777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_decomp.py 2025-08-26T20:45:26.8257230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_dispatching.py 2025-08-26T20:45:26.8260706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_dynamic_shapes.py 2025-08-26T20:45:26.8264429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_errors.py 2025-08-26T20:45:26.8268553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_flags.py 2025-08-26T20:45:26.8271936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_fx_passes.py 2025-08-26T20:45:26.8275281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_ir_passes.py 2025-08-26T20:45:26.8278653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_isolated.py 2025-08-26T20:45:26.8282167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_onnx_program.py 2025-08-26T20:45:26.8285583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_registration.py 2025-08-26T20:45:26.8289369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_reporting.py 2025-08-26T20:45:26.8292874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_schemas.py 2025-08-26T20:45:26.8296204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_tensors.py 2025-08-26T20:45:26.8299917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_testing.py 2025-08-26T20:45:26.8303384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_type_casting.py 2025-08-26T20:45:26.8306993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_verification.py 2025-08-26T20:45:26.8310442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__init__.py 2025-08-26T20:45:26.8322959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\_tensor_typing.py 2025-08-26T20:45:26.8326623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\_torchlib_registry.py 2025-08-26T20:45:26.8330066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\__init__.py 2025-08-26T20:45:26.8340754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\core.py 2025-08-26T20:45:26.8344309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\hop.py 2025-08-26T20:45:26.8347616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\nn.py 2025-08-26T20:45:26.8350979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\symbolic.py 2025-08-26T20:45:26.8354310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\symops.py 2025-08-26T20:45:26.8357811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\__init__.py 2025-08-26T20:45:26.8369997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\__pycache__\core.cpython-39.pyc 2025-08-26T20:45:26.8373612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\__pycache__\hop.cpython-39.pyc 2025-08-26T20:45:26.8377184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\__pycache__\nn.cpython-39.pyc 2025-08-26T20:45:26.8387134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\__pycache__\symbolic.cpython-39.pyc 2025-08-26T20:45:26.8390718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\__pycache__\symops.cpython-39.pyc 2025-08-26T20:45:26.8394252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:26.8402596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\__pycache__\_tensor_typing.cpython-39.pyc 2025-08-26T20:45:26.8406168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\__pycache__\_torchlib_registry.cpython-39.pyc 2025-08-26T20:45:26.8409742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:26.8422325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_analysis.cpython-39.pyc 2025-08-26T20:45:26.8425927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_building.cpython-39.pyc 2025-08-26T20:45:26.8429565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_capture_strategies.cpython-39.pyc 2025-08-26T20:45:26.8438042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_compat.cpython-39.pyc 2025-08-26T20:45:26.8441667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_constants.cpython-39.pyc 2025-08-26T20:45:26.8445281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_core.cpython-39.pyc 2025-08-26T20:45:26.8449083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_decomp.cpython-39.pyc 2025-08-26T20:45:26.8453016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_dispatching.cpython-39.pyc 2025-08-26T20:45:26.8456578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_dynamic_shapes.cpython-39.pyc 2025-08-26T20:45:26.8460196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_errors.cpython-39.pyc 2025-08-26T20:45:26.8463909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_flags.cpython-39.pyc 2025-08-26T20:45:26.8467709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_fx_passes.cpython-39.pyc 2025-08-26T20:45:26.8471604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_ir_passes.cpython-39.pyc 2025-08-26T20:45:26.8475205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_isolated.cpython-39.pyc 2025-08-26T20:45:26.8479094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_onnx_program.cpython-39.pyc 2025-08-26T20:45:26.8482780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_registration.cpython-39.pyc 2025-08-26T20:45:26.8486312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_reporting.cpython-39.pyc 2025-08-26T20:45:26.8496076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_schemas.cpython-39.pyc 2025-08-26T20:45:26.8499898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_tensors.cpython-39.pyc 2025-08-26T20:45:26.8504137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_testing.cpython-39.pyc 2025-08-26T20:45:26.8507832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_type_casting.cpython-39.pyc 2025-08-26T20:45:26.8511690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_verification.cpython-39.pyc 2025-08-26T20:45:26.8515334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:26.8524280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\type_utils.py 2025-08-26T20:45:26.8527960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\_pass.py 2025-08-26T20:45:26.8531355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\__init__.py 2025-08-26T20:45:26.8537480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\passes\type_promotion.py 2025-08-26T20:45:26.8541342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\passes\__init__.py 2025-08-26T20:45:26.8548657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\passes\__pycache__\type_promotion.cpython-39.pyc 2025-08-26T20:45:26.8552551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\passes\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:26.8565227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\__pycache__\type_utils.cpython-39.pyc 2025-08-26T20:45:26.8568744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\__pycache__\_pass.cpython-39.pyc 2025-08-26T20:45:26.8572446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:26.8586130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\__pycache__\jit_utils.cpython-39.pyc 2025-08-26T20:45:26.8589964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\__pycache__\onnx_proto_utils.cpython-39.pyc 2025-08-26T20:45:26.8593524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\__pycache__\registration.cpython-39.pyc 2025-08-26T20:45:26.8601822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\__pycache__\_lazy_import.cpython-39.pyc 2025-08-26T20:45:26.8605600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:26.8615920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\errors.cpython-39.pyc 2025-08-26T20:45:26.8620025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\operators.cpython-39.pyc 2025-08-26T20:45:26.8623929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_helper.cpython-39.pyc 2025-08-26T20:45:26.8632288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset10.cpython-39.pyc 2025-08-26T20:45:26.8636061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset11.cpython-39.pyc 2025-08-26T20:45:26.8639807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset12.cpython-39.pyc 2025-08-26T20:45:26.8643532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset13.cpython-39.pyc 2025-08-26T20:45:26.8664559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset14.cpython-39.pyc 2025-08-26T20:45:26.8668225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset15.cpython-39.pyc 2025-08-26T20:45:26.8671927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset16.cpython-39.pyc 2025-08-26T20:45:26.8675676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset17.cpython-39.pyc 2025-08-26T20:45:26.8679773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset18.cpython-39.pyc 2025-08-26T20:45:26.8683422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset19.cpython-39.pyc 2025-08-26T20:45:26.8687081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset20.cpython-39.pyc 2025-08-26T20:45:26.8690877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset7.cpython-39.pyc 2025-08-26T20:45:26.8694658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset8.cpython-39.pyc 2025-08-26T20:45:26.8702386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset9.cpython-39.pyc 2025-08-26T20:45:26.8707437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:26.8711583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\verification.cpython-39.pyc 2025-08-26T20:45:26.8715536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\_constants.cpython-39.pyc 2025-08-26T20:45:26.8719641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\_experimental.cpython-39.pyc 2025-08-26T20:45:26.8723356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\_flags.cpython-39.pyc 2025-08-26T20:45:26.8726998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\_globals.cpython-39.pyc 2025-08-26T20:45:26.8730795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\_type_utils.cpython-39.pyc 2025-08-26T20:45:26.8734342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:26.8744140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\adadelta.py 2025-08-26T20:45:26.8747727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\adagrad.py 2025-08-26T20:45:26.8751112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\adam.py 2025-08-26T20:45:26.8754567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\adamax.py 2025-08-26T20:45:26.8758256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\adamw.py 2025-08-26T20:45:26.8761516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\asgd.py 2025-08-26T20:45:26.8764905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\lbfgs.py 2025-08-26T20:45:26.8772591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\lr_scheduler.py 2025-08-26T20:45:26.8776664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\nadam.py 2025-08-26T20:45:26.8780285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\optimizer.py 2025-08-26T20:45:26.8784131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\radam.py 2025-08-26T20:45:26.8788635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\rmsprop.py 2025-08-26T20:45:26.8791956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\rprop.py 2025-08-26T20:45:26.8795429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\sgd.py 2025-08-26T20:45:26.8798847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\sparse_adam.py 2025-08-26T20:45:26.8802216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\swa_utils.py 2025-08-26T20:45:26.8805801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\_adafactor.py 2025-08-26T20:45:26.8809284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\_functional.py 2025-08-26T20:45:26.8812760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\_muon.py 2025-08-26T20:45:26.8816234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__init__.py 2025-08-26T20:45:26.8823747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\_multi_tensor\__init__.py 2025-08-26T20:45:26.8827164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\_multi_tensor\__init__.pyi 2025-08-26T20:45:26.8834146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\_multi_tensor\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:26.8842156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\adadelta.cpython-39.pyc 2025-08-26T20:45:26.8845764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\adagrad.cpython-39.pyc 2025-08-26T20:45:26.8849219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\adam.cpython-39.pyc 2025-08-26T20:45:26.8857011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\adamax.cpython-39.pyc 2025-08-26T20:45:26.8860526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\adamw.cpython-39.pyc 2025-08-26T20:45:26.8864424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\asgd.cpython-39.pyc 2025-08-26T20:45:26.8867958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\lbfgs.cpython-39.pyc 2025-08-26T20:45:26.8871594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\lr_scheduler.cpython-39.pyc 2025-08-26T20:45:26.8876072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\nadam.cpython-39.pyc 2025-08-26T20:45:26.8879605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\optimizer.cpython-39.pyc 2025-08-26T20:45:26.8883354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\radam.cpython-39.pyc 2025-08-26T20:45:26.8886987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\rmsprop.cpython-39.pyc 2025-08-26T20:45:26.8890506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\rprop.cpython-39.pyc 2025-08-26T20:45:26.8894324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\sgd.cpython-39.pyc 2025-08-26T20:45:26.8897911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\sparse_adam.cpython-39.pyc 2025-08-26T20:45:26.8901458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\swa_utils.cpython-39.pyc 2025-08-26T20:45:26.8905214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\_adafactor.cpython-39.pyc 2025-08-26T20:45:26.8912990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\_functional.cpython-39.pyc 2025-08-26T20:45:26.8916616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\_muon.cpython-39.pyc 2025-08-26T20:45:26.8920261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:26.8929541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\file_structure_representation.py 2025-08-26T20:45:26.8932942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\find_file_dependencies.py 2025-08-26T20:45:26.8936793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\glob_group.py 2025-08-26T20:45:26.8944437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\importer.py 2025-08-26T20:45:26.8948328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\package_exporter.py 2025-08-26T20:45:26.8951987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\package_importer.py 2025-08-26T20:45:26.8955489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_digraph.py 2025-08-26T20:45:26.8959116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_directory_reader.py 2025-08-26T20:45:26.8962566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_importlib.py 2025-08-26T20:45:26.8966047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_mangling.py 2025-08-26T20:45:26.8969492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_mock.py 2025-08-26T20:45:26.8972978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_package_pickler.py 2025-08-26T20:45:26.8976607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_package_unpickler.py 2025-08-26T20:45:26.8980113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_stdlib.py 2025-08-26T20:45:26.8983637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__init__.py 2025-08-26T20:45:26.8991335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\find_first_use_of_broken_modules.py 2025-08-26T20:45:26.8994918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\is_from_package.py 2025-08-26T20:45:26.8998691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\trace_dependencies.py 2025-08-26T20:45:26.9007566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\__init__.py 2025-08-26T20:45:26.9015588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\__pycache__\find_first_use_of_broken_modules.cpython-39.pyc 2025-08-26T20:45:26.9019178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\__pycache__\is_from_package.cpython-39.pyc 2025-08-26T20:45:26.9022910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\__pycache__\trace_dependencies.cpython-39.pyc 2025-08-26T20:45:26.9031425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:26.9040143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\file_structure_representation.cpython-39.pyc 2025-08-26T20:45:26.9043685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\find_file_dependencies.cpython-39.pyc 2025-08-26T20:45:26.9047351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\glob_group.cpython-39.pyc 2025-08-26T20:45:26.9055073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\importer.cpython-39.pyc 2025-08-26T20:45:26.9058858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\package_exporter.cpython-39.pyc 2025-08-26T20:45:26.9062509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\package_importer.cpython-39.pyc 2025-08-26T20:45:26.9066244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_digraph.cpython-39.pyc 2025-08-26T20:45:26.9069880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_directory_reader.cpython-39.pyc 2025-08-26T20:45:26.9073511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_importlib.cpython-39.pyc 2025-08-26T20:45:26.9077120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_mangling.cpython-39.pyc 2025-08-26T20:45:26.9080724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_mock.cpython-39.pyc 2025-08-26T20:45:26.9084658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_package_pickler.cpython-39.pyc 2025-08-26T20:45:26.9088185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_package_unpickler.cpython-39.pyc 2025-08-26T20:45:26.9091769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_stdlib.cpython-39.pyc 2025-08-26T20:45:26.9095789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:26.9105051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\itt.py 2025-08-26T20:45:26.9108697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\profiler.py 2025-08-26T20:45:26.9112577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\python_tracer.py 2025-08-26T20:45:26.9116408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\_memory_profiler.py 2025-08-26T20:45:26.9120191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\_pattern_matcher.py 2025-08-26T20:45:26.9128401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\_utils.py 2025-08-26T20:45:26.9131861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__init__.py 2025-08-26T20:45:26.9139202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__pycache__\itt.cpython-39.pyc 2025-08-26T20:45:26.9142841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__pycache__\profiler.cpython-39.pyc 2025-08-26T20:45:26.9146539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__pycache__\python_tracer.cpython-39.pyc 2025-08-26T20:45:26.9154511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__pycache__\_memory_profiler.cpython-39.pyc 2025-08-26T20:45:26.9159003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__pycache__\_pattern_matcher.cpython-39.pyc 2025-08-26T20:45:26.9162538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__pycache__\_utils.cpython-39.pyc 2025-08-26T20:45:26.9166127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:26.9174268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fake_quantize.py 2025-08-26T20:45:26.9177740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fuser_method_mappings.py 2025-08-26T20:45:26.9181687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fuse_modules.py 2025-08-26T20:45:26.9190337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\observer.py 2025-08-26T20:45:26.9193683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\qconfig.py 2025-08-26T20:45:26.9197075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\quantization_mappings.py 2025-08-26T20:45:26.9200625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\quantize.py 2025-08-26T20:45:26.9203956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\quantize_fx.py 2025-08-26T20:45:26.9207590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\quantize_jit.py 2025-08-26T20:45:26.9211052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\quant_type.py 2025-08-26T20:45:26.9214487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\stubs.py 2025-08-26T20:45:26.9217817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\utils.py 2025-08-26T20:45:26.9221384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\_numeric_suite.py 2025-08-26T20:45:26.9224985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\_numeric_suite_fx.py 2025-08-26T20:45:26.9228526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\_quantized_conversions.py 2025-08-26T20:45:26.9232064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__init__.py 2025-08-26T20:45:26.9239173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\convert.py 2025-08-26T20:45:26.9242505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\fuse.py 2025-08-26T20:45:26.9245828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\fusion_patterns.py 2025-08-26T20:45:26.9249197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\graph_module.py 2025-08-26T20:45:26.9252833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\match_utils.py 2025-08-26T20:45:26.9260618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\pattern_utils.py 2025-08-26T20:45:26.9263775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\prepare.py 2025-08-26T20:45:26.9267152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\quantization_patterns.py 2025-08-26T20:45:26.9270629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\quantization_types.py 2025-08-26T20:45:26.9274003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\utils.py 2025-08-26T20:45:26.9277367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\_equalize.py 2025-08-26T20:45:26.9281101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__init__.py 2025-08-26T20:45:26.9288544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\convert.cpython-39.pyc 2025-08-26T20:45:26.9292051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\fuse.cpython-39.pyc 2025-08-26T20:45:26.9295640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\fusion_patterns.cpython-39.pyc 2025-08-26T20:45:26.9305828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\graph_module.cpython-39.pyc 2025-08-26T20:45:26.9309377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\match_utils.cpython-39.pyc 2025-08-26T20:45:26.9312906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\pattern_utils.cpython-39.pyc 2025-08-26T20:45:26.9316447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\prepare.cpython-39.pyc 2025-08-26T20:45:26.9320728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\quantization_patterns.cpython-39.pyc 2025-08-26T20:45:26.9324401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\quantization_types.cpython-39.pyc 2025-08-26T20:45:26.9328000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:26.9332129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\_equalize.cpython-39.pyc 2025-08-26T20:45:26.9335506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:26.9344141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\fake_quantize.cpython-39.pyc 2025-08-26T20:45:26.9347931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\fuser_method_mappings.cpython-39.pyc 2025-08-26T20:45:26.9352038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\fuse_modules.cpython-39.pyc 2025-08-26T20:45:26.9360829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\observer.cpython-39.pyc 2025-08-26T20:45:26.9364321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\qconfig.cpython-39.pyc 2025-08-26T20:45:26.9367908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\quantization_mappings.cpython-39.pyc 2025-08-26T20:45:26.9371450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\quantize.cpython-39.pyc 2025-08-26T20:45:26.9375449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\quantize_fx.cpython-39.pyc 2025-08-26T20:45:26.9379273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\quantize_jit.cpython-39.pyc 2025-08-26T20:45:26.9382857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\quant_type.cpython-39.pyc 2025-08-26T20:45:26.9386368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\stubs.cpython-39.pyc 2025-08-26T20:45:26.9389901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:26.9393456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\_numeric_suite.cpython-39.pyc 2025-08-26T20:45:26.9397200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\_numeric_suite_fx.cpython-39.pyc 2025-08-26T20:45:26.9400799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\_quantized_conversions.cpython-39.pyc 2025-08-26T20:45:26.9404540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:26.9425306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\ATen\ATenConfig.cmake 2025-08-26T20:45:26.9432346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Caffe2Config.cmake 2025-08-26T20:45:26.9435923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Caffe2Targets-release.cmake 2025-08-26T20:45:26.9439425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Caffe2Targets.cmake 2025-08-26T20:45:26.9448414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\FindCUDAToolkit.cmake 2025-08-26T20:45:26.9452558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\FindCUDSS.cmake 2025-08-26T20:45:26.9456150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\FindCUSPARSELT.cmake 2025-08-26T20:45:26.9459788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\FindSYCLToolkit.cmake 2025-08-26T20:45:26.9467143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\FindCUDA.cmake 2025-08-26T20:45:26.9470654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\FindCUDNN.cmake 2025-08-26T20:45:26.9482157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\CMakeInitializeConfigs.cmake 2025-08-26T20:45:26.9485738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA.cmake 2025-08-26T20:45:26.9490048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindPackageMessage.cmake 2025-08-26T20:45:26.9501447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\make2cmake.cmake 2025-08-26T20:45:26.9505319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\parse_cubin.cmake 2025-08-26T20:45:26.9508917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\run_nvcc.cmake 2025-08-26T20:45:26.9517061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\select_compute_arch.cmake 2025-08-26T20:45:26.9525933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\cuda.cmake 2025-08-26T20:45:26.9529781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\gflags.cmake 2025-08-26T20:45:26.9533591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\glog.cmake 2025-08-26T20:45:26.9537091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\LoadHIP.cmake 2025-08-26T20:45:26.9544982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\mkl.cmake 2025-08-26T20:45:26.9548501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\mkldnn.cmake 2025-08-26T20:45:26.9552190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\protobuf.cmake 2025-08-26T20:45:26.9556089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\utils.cmake 2025-08-26T20:45:26.9559713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\xpu.cmake 2025-08-26T20:45:26.9568111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Torch\TorchConfig.cmake 2025-08-26T20:45:26.9571539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Torch\TorchConfigVersion.cmake 2025-08-26T20:45:26.9581541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\signal\__init__.py 2025-08-26T20:45:26.9588644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\signal\windows\windows.py 2025-08-26T20:45:26.9592136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\signal\windows\__init__.py 2025-08-26T20:45:26.9599420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\signal\windows\__pycache__\windows.cpython-39.pyc 2025-08-26T20:45:26.9603438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\signal\windows\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:26.9611417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\signal\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:26.9627939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\semi_structured.py 2025-08-26T20:45:26.9631642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\_semi_structured_conversions.py 2025-08-26T20:45:26.9635080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\_semi_structured_ops.py 2025-08-26T20:45:26.9643192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\_triton_ops.py 2025-08-26T20:45:26.9647313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\_triton_ops_meta.py 2025-08-26T20:45:26.9653710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\__init__.py 2025-08-26T20:45:26.9661675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\__pycache__\semi_structured.cpython-39.pyc 2025-08-26T20:45:26.9665468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\__pycache__\_semi_structured_conversions.cpython-39.pyc 2025-08-26T20:45:26.9668954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\__pycache__\_semi_structured_ops.cpython-39.pyc 2025-08-26T20:45:26.9676608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\__pycache__\_triton_ops.cpython-39.pyc 2025-08-26T20:45:26.9680518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\__pycache__\_triton_ops_meta.cpython-39.pyc 2025-08-26T20:45:26.9684906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:26.9692482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\special\__init__.py 2025-08-26T20:45:26.9699760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\special\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:26.9709119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\apply_utils_test.exe 2025-08-26T20:45:26.9714674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\atest.exe 2025-08-26T20:45:26.9720095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\backend_fallback_test.exe 2025-08-26T20:45:26.9725286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\basic.exe 2025-08-26T20:45:26.9735028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\broadcast_test.exe 2025-08-26T20:45:26.9740644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_accumulate_test.exe 2025-08-26T20:45:26.9746285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_AllocatorConfig_test.exe 2025-08-26T20:45:26.9766117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_ArrayRef_test.exe 2025-08-26T20:45:26.9771487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_bfloat16_test.exe 2025-08-26T20:45:26.9777241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Bitset_test.exe 2025-08-26T20:45:26.9782415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_bit_cast_test.exe 2025-08-26T20:45:26.9787776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_CompileTimeFunctionPointer_test.exe 2025-08-26T20:45:26.9793146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_complex_math_test.exe 2025-08-26T20:45:26.9798603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_complex_test.exe 2025-08-26T20:45:26.9804044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_ConstexprCrc_test.exe 2025-08-26T20:45:26.9809361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_cow_test.exe 2025-08-26T20:45:26.9814959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_DeadlockDetection_test.exe 2025-08-26T20:45:26.9820646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_DeviceGuard_test.exe 2025-08-26T20:45:26.9830068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Device_test.exe 2025-08-26T20:45:26.9835526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_DispatchKeySet_test.exe 2025-08-26T20:45:26.9841091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Enumerate_test.exe 2025-08-26T20:45:26.9846874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_error_test.exe 2025-08-26T20:45:26.9852252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_exception_test.exe 2025-08-26T20:45:26.9857603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_flags_test.exe 2025-08-26T20:45:26.9863502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_generic_math_test.exe 2025-08-26T20:45:26.9868577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Half_test.exe 2025-08-26T20:45:26.9874051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_InlineDeviceGuard_test.exe 2025-08-26T20:45:26.9884632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_InlineStreamGuard_test.exe 2025-08-26T20:45:26.9890897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_IntrusiveList_test.exe 2025-08-26T20:45:26.9896502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_intrusive_ptr_benchmark.exe 2025-08-26T20:45:26.9901624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_intrusive_ptr_test.exe 2025-08-26T20:45:26.9911679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_irange_test.exe 2025-08-26T20:45:26.9917103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_lazy_test.exe 2025-08-26T20:45:26.9922711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_LeftRight_test.exe 2025-08-26T20:45:26.9927951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_logging_test.exe 2025-08-26T20:45:26.9937315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Metaprogramming_test.exe 2025-08-26T20:45:26.9942927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_NetworkFlow_test.exe 2025-08-26T20:45:26.9948572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_optional_test.exe 2025-08-26T20:45:26.9954797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_ordered_preserving_dict_test.exe 2025-08-26T20:45:26.9960467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_registry_test.exe 2025-08-26T20:45:26.9965758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Scalar_test.exe 2025-08-26T20:45:26.9971158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Semaphore_test.exe 2025-08-26T20:45:26.9976432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_SizesAndStrides_test.exe 2025-08-26T20:45:26.9981846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_small_vector_test.exe 2025-08-26T20:45:26.9994635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_ssize_test.exe 2025-08-26T20:45:26.9999701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_StreamGuard_test.exe 2025-08-26T20:45:27.0004968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_string_util_test.exe 2025-08-26T20:45:27.0010825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_string_view_test.exe 2025-08-26T20:45:27.0016070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_SymInt_test.exe 2025-08-26T20:45:27.0021574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Synchronized_test.exe 2025-08-26T20:45:27.0026873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_tempfile_test.exe 2025-08-26T20:45:27.0032219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_ThreadLocal_test.exe 2025-08-26T20:45:27.0045339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_typeid_test.exe 2025-08-26T20:45:27.0051145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_TypeIndex_test.exe 2025-08-26T20:45:27.0056725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_TypeList_test.exe 2025-08-26T20:45:27.0061887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_TypeTraits_test.exe 2025-08-26T20:45:27.0067552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\CppSignature_test.exe 2025-08-26T20:45:27.0073114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\cpu_allocator_test.exe 2025-08-26T20:45:27.0078554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\cpu_generator_test.exe 2025-08-26T20:45:27.0085226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\cpu_profiling_allocator_test.exe 2025-08-26T20:45:27.0090491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\cpu_rng_test.exe 2025-08-26T20:45:27.0102558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\Dict_test.exe 2025-08-26T20:45:27.0108759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\Dimname_test.exe 2025-08-26T20:45:27.0113821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\dlconvertor_test.exe 2025-08-26T20:45:27.0119225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\extension_backend_test.exe 2025-08-26T20:45:27.0125176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\half_test.exe 2025-08-26T20:45:27.0130613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\IListRef_test.exe 2025-08-26T20:45:27.0136527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\inline_container_test.exe 2025-08-26T20:45:27.0142038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\ivalue_test.exe 2025-08-26T20:45:27.0149524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\KernelFunction_test.exe 2025-08-26T20:45:27.0159662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\kernel_function_legacy_test.exe 2025-08-26T20:45:27.0167852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\kernel_function_test.exe 2025-08-26T20:45:27.0175363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\kernel_lambda_legacy_test.exe 2025-08-26T20:45:27.0182646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\kernel_lambda_test.exe 2025-08-26T20:45:27.0189655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\kernel_stackbased_test.exe 2025-08-26T20:45:27.0195560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\lazy_tensor_test.exe 2025-08-26T20:45:27.0201435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\legacy_vmap_test.exe 2025-08-26T20:45:27.0208795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\List_test.exe 2025-08-26T20:45:27.0246226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\make_boxed_from_unboxed_functor_test.exe 2025-08-26T20:45:27.0246848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\math_kernel_test.exe 2025-08-26T20:45:27.0247359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\MaybeOwned_test.exe 2025-08-26T20:45:27.0247872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\memory_format_test.exe 2025-08-26T20:45:27.0248395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\memory_overlapping_test.exe 2025-08-26T20:45:27.0248953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\mobile_memory_cleanup.exe 2025-08-26T20:45:27.0263376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\NamedTensor_test.exe 2025-08-26T20:45:27.0263885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\native_test.exe 2025-08-26T20:45:27.0271932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\operators_test.exe 2025-08-26T20:45:27.0277661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\operator_name_test.exe 2025-08-26T20:45:27.0282762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\op_allowlist_test.exe 2025-08-26T20:45:27.0288917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\op_registration_test.exe 2025-08-26T20:45:27.0305001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\packedtensoraccessor_test.exe 2025-08-26T20:45:27.0310907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\pow_test.exe 2025-08-26T20:45:27.0318022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\quantized_test.exe 2025-08-26T20:45:27.0324123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\reduce_ops_test.exe 2025-08-26T20:45:27.0329788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\reportMemoryUsage_test.exe 2025-08-26T20:45:27.0335108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\scalar_tensor_test.exe 2025-08-26T20:45:27.0341027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\scalar_test.exe 2025-08-26T20:45:27.0347100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\StorageUtils_test.exe 2025-08-26T20:45:27.0353069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\stride_properties_test.exe 2025-08-26T20:45:27.0358646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\tensor_iterator_test.exe 2025-08-26T20:45:27.0365610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\test_parallel.exe 2025-08-26T20:45:27.0371467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\thread_init_test.exe 2025-08-26T20:45:27.0377163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\type_ptr_test.exe 2025-08-26T20:45:27.0382500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\type_test.exe 2025-08-26T20:45:27.0393665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\undefined_tensor_test.exe 2025-08-26T20:45:27.0399190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\verify_api_visibility.exe 2025-08-26T20:45:27.0404545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\weakref_test.exe 2025-08-26T20:45:27.0410004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\wrapdim_test.exe 2025-08-26T20:45:27.0415813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\xla_tensor_test.exe 2025-08-26T20:45:27.0429663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_comparison.py 2025-08-26T20:45:27.0433409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_creation.py 2025-08-26T20:45:27.0437354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_utils.py 2025-08-26T20:45:27.0441055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\__init__.py 2025-08-26T20:45:27.0453249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\autocast_test_lists.py 2025-08-26T20:45:27.0457304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\autograd_function_db.py 2025-08-26T20:45:27.0460769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\check_kernel_launches.py 2025-08-26T20:45:27.0467999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_cuda.py 2025-08-26T20:45:27.0471510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_device_type.py 2025-08-26T20:45:27.0475439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_distributed.py 2025-08-26T20:45:27.0479499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_dist_composable.py 2025-08-26T20:45:27.0483047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_dtype.py 2025-08-26T20:45:27.0486995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_fsdp.py 2025-08-26T20:45:27.0490777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_jit.py 2025-08-26T20:45:27.0494411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_methods_invocations.py 2025-08-26T20:45:27.0504178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_mkldnn.py 2025-08-26T20:45:27.0508269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_modules.py 2025-08-26T20:45:27.0513176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_mps.py 2025-08-26T20:45:27.0516994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_nn.py 2025-08-26T20:45:27.0521798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_optimizers.py 2025-08-26T20:45:27.0526367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_pruning.py 2025-08-26T20:45:27.0530247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_quantization.py 2025-08-26T20:45:27.0538442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_quantized.py 2025-08-26T20:45:27.0541996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_subclass.py 2025-08-26T20:45:27.0545831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_utils.py 2025-08-26T20:45:27.0550510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\composite_compliance.py 2025-08-26T20:45:27.0554210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\custom_op_db.py 2025-08-26T20:45:27.0558634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\custom_tensor.py 2025-08-26T20:45:27.0561723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\dist_utils.py 2025-08-26T20:45:27.0565706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\dynamo_test_failures.py 2025-08-26T20:45:27.0569432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\fake_config_module.py 2025-08-26T20:45:27.0573284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\fake_config_module2.py 2025-08-26T20:45:27.0577195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\fake_config_module3.py 2025-08-26T20:45:27.0586295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\hop_db.py 2025-08-26T20:45:27.0589792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\hypothesis_utils.py 2025-08-26T20:45:27.0593627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\inductor_utils.py 2025-08-26T20:45:27.0597277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\jit_metaprogramming_utils.py 2025-08-26T20:45:27.0601294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\jit_utils.py 2025-08-26T20:45:27.0604903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\logging_tensor.py 2025-08-26T20:45:27.0609080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\logging_utils.py 2025-08-26T20:45:27.0613016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\quantization_torch_package_models.py 2025-08-26T20:45:27.0616682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\static_module.py 2025-08-26T20:45:27.0620365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\subclasses.py 2025-08-26T20:45:27.0628523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\torchbind_impls.py 2025-08-26T20:45:27.0631961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\triton_utils.py 2025-08-26T20:45:27.0635757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\two_tensor.py 2025-08-26T20:45:27.0639537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__init__.py 2025-08-26T20:45:27.0646873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\codegen\__init__.py 2025-08-26T20:45:27.0654447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\codegen\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.0662467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\data\network1.py 2025-08-26T20:45:27.0665898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\data\network2.py 2025-08-26T20:45:27.0669462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\data\__init__.py 2025-08-26T20:45:27.0677182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\data\__pycache__\network1.cpython-39.pyc 2025-08-26T20:45:27.0680795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\data\__pycache__\network2.cpython-39.pyc 2025-08-26T20:45:27.0684258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\data\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.0698733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\checkpoint_utils.py 2025-08-26T20:45:27.0702742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\common_state_dict.py 2025-08-26T20:45:27.0706338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\ddp_under_dist_autograd_test.py 2025-08-26T20:45:27.0714806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\distributed_test.py 2025-08-26T20:45:27.0720809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\distributed_utils.py 2025-08-26T20:45:27.0724419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\fake_pg.py 2025-08-26T20:45:27.0728453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\multi_threaded_pg.py 2025-08-26T20:45:27.0732234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc_utils.py 2025-08-26T20:45:27.0735773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__init__.py 2025-08-26T20:45:27.0742579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\nn\__init__.py 2025-08-26T20:45:27.0748891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\nn\api\remote_module_test.py 2025-08-26T20:45:27.0752403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\nn\api\__init__.py 2025-08-26T20:45:27.0758584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\nn\api\__pycache__\remote_module_test.cpython-39.pyc 2025-08-26T20:45:27.0762273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\nn\api\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.0770041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\nn\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.0777945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\dist_autograd_test.py 2025-08-26T20:45:27.0782021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\dist_optimizer_test.py 2025-08-26T20:45:27.0785639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\faulty_agent_rpc_test.py 2025-08-26T20:45:27.0793760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\faulty_rpc_agent_test_fixture.py 2025-08-26T20:45:27.0797337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\rpc_agent_test_fixture.py 2025-08-26T20:45:27.0800800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\rpc_test.py 2025-08-26T20:45:27.0805363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\tensorpipe_rpc_agent_test_fixture.py 2025-08-26T20:45:27.0808869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__init__.py 2025-08-26T20:45:27.0815918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\examples\parameter_server_test.py 2025-08-26T20:45:27.0819514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\examples\reinforcement_learning_rpc_test.py 2025-08-26T20:45:27.0823078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\examples\__init__.py 2025-08-26T20:45:27.0833565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\examples\__pycache__\parameter_server_test.cpython-39.pyc 2025-08-26T20:45:27.0837341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\examples\__pycache__\reinforcement_learning_rpc_test.cpython-39.pyc 2025-08-26T20:45:27.0840856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\examples\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.0853341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\dist_autograd_test.py 2025-08-26T20:45:27.0856690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\rpc_test.py 2025-08-26T20:45:27.0860367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\rpc_test_faulty.py 2025-08-26T20:45:27.0863856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\__init__.py 2025-08-26T20:45:27.0874459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\__pycache__\dist_autograd_test.cpython-39.pyc 2025-08-26T20:45:27.0878059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\__pycache__\rpc_test.cpython-39.pyc 2025-08-26T20:45:27.0881776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\__pycache__\rpc_test_faulty.cpython-39.pyc 2025-08-26T20:45:27.0890162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.0898016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\dist_autograd_test.cpython-39.pyc 2025-08-26T20:45:27.0901960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\dist_optimizer_test.cpython-39.pyc 2025-08-26T20:45:27.0905887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\faulty_agent_rpc_test.cpython-39.pyc 2025-08-26T20:45:27.0914011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\faulty_rpc_agent_test_fixture.cpython-39.pyc 2025-08-26T20:45:27.0917509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\rpc_agent_test_fixture.cpython-39.pyc 2025-08-26T20:45:27.0921562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\rpc_test.cpython-39.pyc 2025-08-26T20:45:27.0926437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\tensorpipe_rpc_agent_test_fixture.cpython-39.pyc 2025-08-26T20:45:27.0930171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.0938582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\test_common.py 2025-08-26T20:45:27.0942012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\__init__.py 2025-08-26T20:45:27.0949761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\sharded_tensor\_test_ops_common.py 2025-08-26T20:45:27.0953263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\sharded_tensor\_test_st_common.py 2025-08-26T20:45:27.0957607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\sharded_tensor\__init__.py 2025-08-26T20:45:27.0969798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\sharded_tensor\__pycache__\_test_ops_common.cpython-39.pyc 2025-08-26T20:45:27.0973997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\sharded_tensor\__pycache__\_test_st_common.cpython-39.pyc 2025-08-26T20:45:27.0978100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\sharded_tensor\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.0995400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\__pycache__\test_common.cpython-39.pyc 2025-08-26T20:45:27.0998724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.1006888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_tensor\common_dtensor.py 2025-08-26T20:45:27.1010714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_tensor\__init__.py 2025-08-26T20:45:27.1018440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_tensor\__pycache__\common_dtensor.cpython-39.pyc 2025-08-26T20:45:27.1021200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_tensor\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.1029994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\checkpoint_utils.cpython-39.pyc 2025-08-26T20:45:27.1033803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\common_state_dict.cpython-39.pyc 2025-08-26T20:45:27.1037810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\ddp_under_dist_autograd_test.cpython-39.pyc 2025-08-26T20:45:27.1045665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\distributed_test.cpython-39.pyc 2025-08-26T20:45:27.1051345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\distributed_utils.cpython-39.pyc 2025-08-26T20:45:27.1055177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\fake_pg.cpython-39.pyc 2025-08-26T20:45:27.1059235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\multi_threaded_pg.cpython-39.pyc 2025-08-26T20:45:27.1063215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\rpc_utils.cpython-39.pyc 2025-08-26T20:45:27.1066814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.1075257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\generated\annotated_fn_args.py 2025-08-26T20:45:27.1082059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\generated\__init__.py 2025-08-26T20:45:27.1089246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\generated\__pycache__\annotated_fn_args.cpython-39.pyc 2025-08-26T20:45:27.1094190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\generated\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.1118507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\core.py 2025-08-26T20:45:27.1122914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\refs.py 2025-08-26T20:45:27.1126367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\utils.py 2025-08-26T20:45:27.1129861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\__init__.py 2025-08-26T20:45:27.1137092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\fft.py 2025-08-26T20:45:27.1140499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\linalg.py 2025-08-26T20:45:27.1144631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\nested.py 2025-08-26T20:45:27.1148642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\signal.py 2025-08-26T20:45:27.1152076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\sparse.py 2025-08-26T20:45:27.1155487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\special.py 2025-08-26T20:45:27.1163529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\_masked.py 2025-08-26T20:45:27.1167259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__init__.py 2025-08-26T20:45:27.1175666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\fft.cpython-39.pyc 2025-08-26T20:45:27.1178318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\linalg.cpython-39.pyc 2025-08-26T20:45:27.1182140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\nested.cpython-39.pyc 2025-08-26T20:45:27.1191074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\signal.cpython-39.pyc 2025-08-26T20:45:27.1194594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\sparse.cpython-39.pyc 2025-08-26T20:45:27.1198458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\special.cpython-39.pyc 2025-08-26T20:45:27.1202138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\_masked.cpython-39.pyc 2025-08-26T20:45:27.1206398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.1218665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\__pycache__\core.cpython-39.pyc 2025-08-26T20:45:27.1222837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\__pycache__\refs.cpython-39.pyc 2025-08-26T20:45:27.1226585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:27.1234058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.1241733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\aot_autograd.py 2025-08-26T20:45:27.1245165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\autograd_registration.py 2025-08-26T20:45:27.1248612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\fake_tensor.py 2025-08-26T20:45:27.1252033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\generate_tests.py 2025-08-26T20:45:27.1260686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\make_fx.py 2025-08-26T20:45:27.1264304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\__init__.py 2025-08-26T20:45:27.1271522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\__pycache__\aot_autograd.cpython-39.pyc 2025-08-26T20:45:27.1275305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\__pycache__\autograd_registration.cpython-39.pyc 2025-08-26T20:45:27.1278821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\__pycache__\fake_tensor.cpython-39.pyc 2025-08-26T20:45:27.1286634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\__pycache__\generate_tests.cpython-39.pyc 2025-08-26T20:45:27.1290237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\__pycache__\make_fx.cpython-39.pyc 2025-08-26T20:45:27.1294116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.1302064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\test_module\future_div.py 2025-08-26T20:45:27.1305651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\test_module\no_future_div.py 2025-08-26T20:45:27.1309077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\test_module\__init__.py 2025-08-26T20:45:27.1319407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\test_module\__pycache__\future_div.cpython-39.pyc 2025-08-26T20:45:27.1323053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\test_module\__pycache__\no_future_div.cpython-39.pyc 2025-08-26T20:45:27.1326559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\test_module\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.1339645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\autocast_test_lists.cpython-39.pyc 2025-08-26T20:45:27.1343348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\autograd_function_db.cpython-39.pyc 2025-08-26T20:45:27.1346908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\check_kernel_launches.cpython-39.pyc 2025-08-26T20:45:27.1354575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_cuda.cpython-39.pyc 2025-08-26T20:45:27.1358094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_device_type.cpython-39.pyc 2025-08-26T20:45:27.1362132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_distributed.cpython-39.pyc 2025-08-26T20:45:27.1366312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_dist_composable.cpython-39.pyc 2025-08-26T20:45:27.1369908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_dtype.cpython-39.pyc 2025-08-26T20:45:27.1373470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_fsdp.cpython-39.pyc 2025-08-26T20:45:27.1377406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_jit.cpython-39.pyc 2025-08-26T20:45:27.1381186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_methods_invocations.cpython-39.pyc 2025-08-26T20:45:27.1388251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_mkldnn.cpython-39.pyc 2025-08-26T20:45:27.1392538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_modules.cpython-39.pyc 2025-08-26T20:45:27.1397267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_mps.cpython-39.pyc 2025-08-26T20:45:27.1400948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_nn.cpython-39.pyc 2025-08-26T20:45:27.1405265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_optimizers.cpython-39.pyc 2025-08-26T20:45:27.1413774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_pruning.cpython-39.pyc 2025-08-26T20:45:27.1417537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_quantization.cpython-39.pyc 2025-08-26T20:45:27.1421657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_quantized.cpython-39.pyc 2025-08-26T20:45:27.1425724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_subclass.cpython-39.pyc 2025-08-26T20:45:27.1429368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_utils.cpython-39.pyc 2025-08-26T20:45:27.1433818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\composite_compliance.cpython-39.pyc 2025-08-26T20:45:27.1437491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\custom_op_db.cpython-39.pyc 2025-08-26T20:45:27.1441458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\custom_tensor.cpython-39.pyc 2025-08-26T20:45:27.1444718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\dist_utils.cpython-39.pyc 2025-08-26T20:45:27.1448717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\dynamo_test_failures.cpython-39.pyc 2025-08-26T20:45:27.1452343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\fake_config_module.cpython-39.pyc 2025-08-26T20:45:27.1460456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\fake_config_module2.cpython-39.pyc 2025-08-26T20:45:27.1464537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\fake_config_module3.cpython-39.pyc 2025-08-26T20:45:27.1468240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\hop_db.cpython-39.pyc 2025-08-26T20:45:27.1471858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\hypothesis_utils.cpython-39.pyc 2025-08-26T20:45:27.1475429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\inductor_utils.cpython-39.pyc 2025-08-26T20:45:27.1479227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\jit_metaprogramming_utils.cpython-39.pyc 2025-08-26T20:45:27.1482814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\jit_utils.cpython-39.pyc 2025-08-26T20:45:27.1486490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\logging_tensor.cpython-39.pyc 2025-08-26T20:45:27.1497395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\logging_utils.cpython-39.pyc 2025-08-26T20:45:27.1501114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\quantization_torch_package_models.cpython-39.pyc 2025-08-26T20:45:27.1504802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\static_module.cpython-39.pyc 2025-08-26T20:45:27.1508630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\subclasses.cpython-39.pyc 2025-08-26T20:45:27.1512456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\torchbind_impls.cpython-39.pyc 2025-08-26T20:45:27.1516239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\triton_utils.cpython-39.pyc 2025-08-26T20:45:27.1519727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\two_tensor.cpython-39.pyc 2025-08-26T20:45:27.1523574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.1538812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\__pycache__\_comparison.cpython-39.pyc 2025-08-26T20:45:27.1542790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\__pycache__\_creation.cpython-39.pyc 2025-08-26T20:45:27.1546328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\__pycache__\_utils.cpython-39.pyc 2025-08-26T20:45:27.1553917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.1563324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\backend_registration.py 2025-08-26T20:45:27.1567446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\bundled_inputs.py 2025-08-26T20:45:27.1571036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\checkpoint.py 2025-08-26T20:45:27.1574746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\collect_env.py 2025-08-26T20:45:27.1583115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\cpp_backtrace.py 2025-08-26T20:45:27.1588013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\cpp_extension.py 2025-08-26T20:45:27.1592160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\deterministic.py 2025-08-26T20:45:27.1595858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\dlpack.py 2025-08-26T20:45:27.1599387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\file_baton.py 2025-08-26T20:45:27.1602907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\flop_counter.py 2025-08-26T20:45:27.1606645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hooks.py 2025-08-26T20:45:27.1610181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\mkldnn.py 2025-08-26T20:45:27.1614018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\mobile_optimizer.py 2025-08-26T20:45:27.1617853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_zoo.py 2025-08-26T20:45:27.1621571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\module_tracker.py 2025-08-26T20:45:27.1625159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\show_pickle.py 2025-08-26T20:45:27.1628847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\throughput_benchmark.py 2025-08-26T20:45:27.1632333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\weak.py 2025-08-26T20:45:27.1636111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_appending_byte_serializer.py 2025-08-26T20:45:27.1639760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_backport_slots.py 2025-08-26T20:45:27.1643401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_config_module.py 2025-08-26T20:45:27.1650839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_config_typing.pyi 2025-08-26T20:45:27.1654763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_content_store.py 2025-08-26T20:45:27.1658319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_contextlib.py 2025-08-26T20:45:27.1661988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_cpp_embed_headers.py 2025-08-26T20:45:27.1665683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_cpp_extension_versioner.py 2025-08-26T20:45:27.1669317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_cxx_pytree.py 2025-08-26T20:45:27.1673031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_device.py 2025-08-26T20:45:27.1676436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_dtype_abbrs.py 2025-08-26T20:45:27.1679969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_exposed_in.py 2025-08-26T20:45:27.1683680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_filelock.py 2025-08-26T20:45:27.1691106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_foreach_utils.py 2025-08-26T20:45:27.1694976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_functools.py 2025-08-26T20:45:27.1698678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_get_clean_triton.py 2025-08-26T20:45:27.1701923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_helion.py 2025-08-26T20:45:27.1705329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_import_utils.py 2025-08-26T20:45:27.1708857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_mode_utils.py 2025-08-26T20:45:27.1712305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_ordered_set.py 2025-08-26T20:45:27.1715703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_python_dispatch.py 2025-08-26T20:45:27.1719585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_pytree.py 2025-08-26T20:45:27.1723283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_stats.py 2025-08-26T20:45:27.1731185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_thunk.py 2025-08-26T20:45:27.1734531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_traceback.py 2025-08-26T20:45:27.1737984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_triton.py 2025-08-26T20:45:27.1741235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_typing_utils.py 2025-08-26T20:45:27.1744746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_zip.py 2025-08-26T20:45:27.1748707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__init__.py 2025-08-26T20:45:27.1755746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\backcompat\__init__.py 2025-08-26T20:45:27.1762602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\backcompat\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.1770976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\__init__.py 2025-08-26T20:45:27.1777668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\compare.py 2025-08-26T20:45:27.1781009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\fuzzer.py 2025-08-26T20:45:27.1784786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\op_benchmark.py 2025-08-26T20:45:27.1788236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\simple_timeit.py 2025-08-26T20:45:27.1791987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\spectral_ops_fuzz_test.py 2025-08-26T20:45:27.1799907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\__init__.py 2025-08-26T20:45:27.1806441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\__pycache__\compare.cpython-39.pyc 2025-08-26T20:45:27.1810062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\__pycache__\fuzzer.cpython-39.pyc 2025-08-26T20:45:27.1813809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\__pycache__\op_benchmark.cpython-39.pyc 2025-08-26T20:45:27.1821835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\__pycache__\simple_timeit.cpython-39.pyc 2025-08-26T20:45:27.1825749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\__pycache__\spectral_ops_fuzz_test.cpython-39.pyc 2025-08-26T20:45:27.1829505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.1838123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\binary.py 2025-08-26T20:45:27.1841749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\sparse_binary.py 2025-08-26T20:45:27.1845143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\sparse_unary.py 2025-08-26T20:45:27.1848813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\spectral.py 2025-08-26T20:45:27.1856450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\unary.py 2025-08-26T20:45:27.1859972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\__init__.py 2025-08-26T20:45:27.1866772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\__pycache__\binary.cpython-39.pyc 2025-08-26T20:45:27.1870502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\__pycache__\sparse_binary.cpython-39.pyc 2025-08-26T20:45:27.1873954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\__pycache__\sparse_unary.cpython-39.pyc 2025-08-26T20:45:27.1881764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\__pycache__\spectral.cpython-39.pyc 2025-08-26T20:45:27.1885287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\__pycache__\unary.cpython-39.pyc 2025-08-26T20:45:27.1888924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.1897749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\common.py 2025-08-26T20:45:27.1901214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\compare.py 2025-08-26T20:45:27.1904737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\compile.py 2025-08-26T20:45:27.1908062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\cpp_jit.py 2025-08-26T20:45:27.1911455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\fuzzer.py 2025-08-26T20:45:27.1914760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\sparse_fuzzer.py 2025-08-26T20:45:27.1922960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\timeit_template.cpp 2025-08-26T20:45:27.1926438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\timer.py 2025-08-26T20:45:27.1929921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\_stubs.py 2025-08-26T20:45:27.1933335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__init__.py 2025-08-26T20:45:27.1940385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\callgrind.h 2025-08-26T20:45:27.1944010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\compat_bindings.cpp 2025-08-26T20:45:27.1947659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\timer_callgrind_template.cpp 2025-08-26T20:45:27.1956112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\timer_interface.py 2025-08-26T20:45:27.1959830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\valgrind.h 2025-08-26T20:45:27.1966529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\__init__.py 2025-08-26T20:45:27.1973106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\__pycache__\timer_interface.cpython-39.pyc 2025-08-26T20:45:27.1977130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.1985155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\common.cpython-39.pyc 2025-08-26T20:45:27.1988908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\compare.cpython-39.pyc 2025-08-26T20:45:27.1992484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\compile.cpython-39.pyc 2025-08-26T20:45:27.2000659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\cpp_jit.cpython-39.pyc 2025-08-26T20:45:27.2004130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\fuzzer.cpython-39.pyc 2025-08-26T20:45:27.2007823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\sparse_fuzzer.cpython-39.pyc 2025-08-26T20:45:27.2011640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\timer.cpython-39.pyc 2025-08-26T20:45:27.2015383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\_stubs.cpython-39.pyc 2025-08-26T20:45:27.2019477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.2032525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.2040515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\bottleneck\__init__.py 2025-08-26T20:45:27.2043106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\bottleneck\__main__.py 2025-08-26T20:45:27.2050591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\bottleneck\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.2054171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\bottleneck\__pycache__\__main__.cpython-39.pyc 2025-08-26T20:45:27.2061797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\backward_compatibility.py 2025-08-26T20:45:27.2065861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\dataloader.py 2025-08-26T20:45:27.2069688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\dataset.py 2025-08-26T20:45:27.2073134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\distributed.py 2025-08-26T20:45:27.2080626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\graph.py 2025-08-26T20:45:27.2084377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\graph_settings.py 2025-08-26T20:45:27.2087805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\sampler.py 2025-08-26T20:45:27.2091137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__init__.py 2025-08-26T20:45:27.2098744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\datapipe.py 2025-08-26T20:45:27.2102226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\datapipe.pyi 2025-08-26T20:45:27.2105786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\gen_pyi.py 2025-08-26T20:45:27.2109213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\_decorator.py 2025-08-26T20:45:27.2112725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\_hook_iterator.py 2025-08-26T20:45:27.2137718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\_typing.py 2025-08-26T20:45:27.2138513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\__init__.py 2025-08-26T20:45:27.2139185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\dataframes.py 2025-08-26T20:45:27.2139953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\dataframe_wrapper.py 2025-08-26T20:45:27.2140714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\datapipes.py 2025-08-26T20:45:27.2148015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\structures.py 2025-08-26T20:45:27.2151820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\__init__.py 2025-08-26T20:45:27.2159388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\__pycache__\dataframes.cpython-39.pyc 2025-08-26T20:45:27.2164291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\__pycache__\dataframe_wrapper.cpython-39.pyc 2025-08-26T20:45:27.2168040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\__pycache__\datapipes.cpython-39.pyc 2025-08-26T20:45:27.2175916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\__pycache__\structures.cpython-39.pyc 2025-08-26T20:45:27.2179475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.2187359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\callable.py 2025-08-26T20:45:27.2190785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\combinatorics.py 2025-08-26T20:45:27.2194383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\combining.py 2025-08-26T20:45:27.2198110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\filelister.py 2025-08-26T20:45:27.2205733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\fileopener.py 2025-08-26T20:45:27.2209360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\grouping.py 2025-08-26T20:45:27.2212594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\routeddecoder.py 2025-08-26T20:45:27.2231789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\selecting.py 2025-08-26T20:45:27.2235256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\sharding.py 2025-08-26T20:45:27.2238610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\streamreader.py 2025-08-26T20:45:27.2242001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\utils.py 2025-08-26T20:45:27.2245549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__init__.py 2025-08-26T20:45:27.2253844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\callable.cpython-39.pyc 2025-08-26T20:45:27.2257496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\combinatorics.cpython-39.pyc 2025-08-26T20:45:27.2261043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\combining.cpython-39.pyc 2025-08-26T20:45:27.2269627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\filelister.cpython-39.pyc 2025-08-26T20:45:27.2273286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\fileopener.cpython-39.pyc 2025-08-26T20:45:27.2276831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\grouping.cpython-39.pyc 2025-08-26T20:45:27.2280967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\routeddecoder.cpython-39.pyc 2025-08-26T20:45:27.2284574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\selecting.cpython-39.pyc 2025-08-26T20:45:27.2288220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\sharding.cpython-39.pyc 2025-08-26T20:45:27.2291863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\streamreader.cpython-39.pyc 2025-08-26T20:45:27.2295752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:27.2299343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.2307489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\callable.py 2025-08-26T20:45:27.2310885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\combinatorics.py 2025-08-26T20:45:27.2314231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\combining.py 2025-08-26T20:45:27.2317657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\grouping.py 2025-08-26T20:45:27.2320947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\utils.py 2025-08-26T20:45:27.2328993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\__init__.py 2025-08-26T20:45:27.2336081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\__pycache__\callable.cpython-39.pyc 2025-08-26T20:45:27.2339660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\__pycache__\combinatorics.cpython-39.pyc 2025-08-26T20:45:27.2343447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\__pycache__\combining.cpython-39.pyc 2025-08-26T20:45:27.2351693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\__pycache__\grouping.cpython-39.pyc 2025-08-26T20:45:27.2355091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:27.2358686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.2366247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\common.py 2025-08-26T20:45:27.2369685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\decoder.py 2025-08-26T20:45:27.2372892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\snapshot.py 2025-08-26T20:45:27.2376694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\__init__.py 2025-08-26T20:45:27.2383201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\__pycache__\common.cpython-39.pyc 2025-08-26T20:45:27.2386934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\__pycache__\decoder.cpython-39.pyc 2025-08-26T20:45:27.2391513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\__pycache__\snapshot.cpython-39.pyc 2025-08-26T20:45:27.2401204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.2408302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\__pycache__\datapipe.cpython-39.pyc 2025-08-26T20:45:27.2412644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\__pycache__\gen_pyi.cpython-39.pyc 2025-08-26T20:45:27.2415746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\__pycache__\_decorator.cpython-39.pyc 2025-08-26T20:45:27.2424091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\__pycache__\_hook_iterator.cpython-39.pyc 2025-08-26T20:45:27.2426812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\__pycache__\_typing.cpython-39.pyc 2025-08-26T20:45:27.2430530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.2438720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\collate.py 2025-08-26T20:45:27.2442098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\fetch.py 2025-08-26T20:45:27.2446236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\pin_memory.py 2025-08-26T20:45:27.2451394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\signal_handling.py 2025-08-26T20:45:27.2455994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\worker.py 2025-08-26T20:45:27.2465240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\__init__.py 2025-08-26T20:45:27.2472102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\__pycache__\collate.cpython-39.pyc 2025-08-26T20:45:27.2475649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\__pycache__\fetch.cpython-39.pyc 2025-08-26T20:45:27.2479287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\__pycache__\pin_memory.cpython-39.pyc 2025-08-26T20:45:27.2488493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\__pycache__\signal_handling.cpython-39.pyc 2025-08-26T20:45:27.2492221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\__pycache__\worker.cpython-39.pyc 2025-08-26T20:45:27.2496231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.2504357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\backward_compatibility.cpython-39.pyc 2025-08-26T20:45:27.2507915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\dataloader.cpython-39.pyc 2025-08-26T20:45:27.2511579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\dataset.cpython-39.pyc 2025-08-26T20:45:27.2520188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\distributed.cpython-39.pyc 2025-08-26T20:45:27.2523834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\graph.cpython-39.pyc 2025-08-26T20:45:27.2528056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\graph_settings.cpython-39.pyc 2025-08-26T20:45:27.2531823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\sampler.cpython-39.pyc 2025-08-26T20:45:27.2535377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.2543536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\constants.py 2025-08-26T20:45:27.2547001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\cuda_to_hip_mappings.py 2025-08-26T20:45:27.2552980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\hipify_python.py 2025-08-26T20:45:27.2556607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\version.py 2025-08-26T20:45:27.2565544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\__init__.py 2025-08-26T20:45:27.2572754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\__pycache__\constants.cpython-39.pyc 2025-08-26T20:45:27.2576407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\__pycache__\cuda_to_hip_mappings.cpython-39.pyc 2025-08-26T20:45:27.2581672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\__pycache__\hipify_python.cpython-39.pyc 2025-08-26T20:45:27.2590227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\__pycache__\version.cpython-39.pyc 2025-08-26T20:45:27.2593859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.2601860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\jit\log_extract.py 2025-08-26T20:45:27.2605507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\jit\__init__.py 2025-08-26T20:45:27.2611921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\jit\__pycache__\log_extract.cpython-39.pyc 2025-08-26T20:45:27.2615843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\jit\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.2624195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\code.js 2025-08-26T20:45:27.2627922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\htm.mjs 2025-08-26T20:45:27.2631433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\preact.mjs 2025-08-26T20:45:27.2635204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\skeleton.html 2025-08-26T20:45:27.2638945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\__init__.py 2025-08-26T20:45:27.2646882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\__main__.py 2025-08-26T20:45:27.2654027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.2657725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\__pycache__\__main__.cpython-39.pyc 2025-08-26T20:45:27.2665422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\serialization\config.py 2025-08-26T20:45:27.2668791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\serialization\__init__.py 2025-08-26T20:45:27.2675972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\serialization\__pycache__\config.cpython-39.pyc 2025-08-26T20:45:27.2679581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\serialization\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.2687132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\summary.py 2025-08-26T20:45:27.2690717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\writer.py 2025-08-26T20:45:27.2694209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\_convert_np.py 2025-08-26T20:45:27.2697672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\_embedding.py 2025-08-26T20:45:27.2705544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\_onnx_graph.py 2025-08-26T20:45:27.2709359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\_proto_graph.py 2025-08-26T20:45:27.2713263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\_pytorch_graph.py 2025-08-26T20:45:27.2716688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\_utils.py 2025-08-26T20:45:27.2720079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__init__.py 2025-08-26T20:45:27.2727287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\summary.cpython-39.pyc 2025-08-26T20:45:27.2731029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\writer.cpython-39.pyc 2025-08-26T20:45:27.2734847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\_convert_np.cpython-39.pyc 2025-08-26T20:45:27.2743549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\_embedding.cpython-39.pyc 2025-08-26T20:45:27.2747113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\_onnx_graph.cpython-39.pyc 2025-08-26T20:45:27.2750664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\_proto_graph.cpython-39.pyc 2025-08-26T20:45:27.2754806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\_pytorch_graph.cpython-39.pyc 2025-08-26T20:45:27.2758356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\_utils.cpython-39.pyc 2025-08-26T20:45:27.2761803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.2769560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\viz\_cycles.py 2025-08-26T20:45:27.2773211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\viz\__init__.py 2025-08-26T20:45:27.2779336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\viz\__pycache__\_cycles.cpython-39.pyc 2025-08-26T20:45:27.2783013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\viz\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.2791313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_strobelight\cli_function_profiler.py 2025-08-26T20:45:27.2794785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_strobelight\__init__.py 2025-08-26T20:45:27.2801242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_strobelight\__pycache__\cli_function_profiler.cpython-39.pyc 2025-08-26T20:45:27.2804897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_strobelight\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.2812299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\functions.py 2025-08-26T20:45:27.2816019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\interp.py 2025-08-26T20:45:27.2819324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\numbers.py 2025-08-26T20:45:27.2822757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\printers.py 2025-08-26T20:45:27.2826236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\reference.py 2025-08-26T20:45:27.2834649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\singleton_int.py 2025-08-26T20:45:27.2838115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\solve.py 2025-08-26T20:45:27.2841603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\symbol.py 2025-08-26T20:45:27.2845423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\value_ranges.py 2025-08-26T20:45:27.2849000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__init__.py 2025-08-26T20:45:27.2855288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\functions.cpython-39.pyc 2025-08-26T20:45:27.2859001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\interp.cpython-39.pyc 2025-08-26T20:45:27.2862548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\numbers.cpython-39.pyc 2025-08-26T20:45:27.2870842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\printers.cpython-39.pyc 2025-08-26T20:45:27.2874310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\reference.cpython-39.pyc 2025-08-26T20:45:27.2878161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\singleton_int.cpython-39.pyc 2025-08-26T20:45:27.2881797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\solve.cpython-39.pyc 2025-08-26T20:45:27.2885319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\symbol.cpython-39.pyc 2025-08-26T20:45:27.2889023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\value_ranges.cpython-39.pyc 2025-08-26T20:45:27.2893467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.2901548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\backend_registration.cpython-39.pyc 2025-08-26T20:45:27.2905353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\bundled_inputs.cpython-39.pyc 2025-08-26T20:45:27.2908866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\checkpoint.cpython-39.pyc 2025-08-26T20:45:27.2916861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\collect_env.cpython-39.pyc 2025-08-26T20:45:27.2920505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\cpp_backtrace.cpython-39.pyc 2025-08-26T20:45:27.2924637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\cpp_extension.cpython-39.pyc 2025-08-26T20:45:27.2928814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\deterministic.cpython-39.pyc 2025-08-26T20:45:27.2932521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\dlpack.cpython-39.pyc 2025-08-26T20:45:27.2936657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\file_baton.cpython-39.pyc 2025-08-26T20:45:27.2940553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\flop_counter.cpython-39.pyc 2025-08-26T20:45:27.2944181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\hooks.cpython-39.pyc 2025-08-26T20:45:27.2947937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\mkldnn.cpython-39.pyc 2025-08-26T20:45:27.2951634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\mobile_optimizer.cpython-39.pyc 2025-08-26T20:45:27.2955071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\model_zoo.cpython-39.pyc 2025-08-26T20:45:27.2958984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\module_tracker.cpython-39.pyc 2025-08-26T20:45:27.2962883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\show_pickle.cpython-39.pyc 2025-08-26T20:45:27.2966551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\throughput_benchmark.cpython-39.pyc 2025-08-26T20:45:27.2975079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\weak.cpython-39.pyc 2025-08-26T20:45:27.2978677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_appending_byte_serializer.cpython-39.pyc 2025-08-26T20:45:27.2982398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_backport_slots.cpython-39.pyc 2025-08-26T20:45:27.2986959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_config_module.cpython-39.pyc 2025-08-26T20:45:27.2990660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_content_store.cpython-39.pyc 2025-08-26T20:45:27.2994380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_contextlib.cpython-39.pyc 2025-08-26T20:45:27.2998088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_cpp_embed_headers.cpython-39.pyc 2025-08-26T20:45:27.3006586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_cpp_extension_versioner.cpython-39.pyc 2025-08-26T20:45:27.3010576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_cxx_pytree.cpython-39.pyc 2025-08-26T20:45:27.3014533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_device.cpython-39.pyc 2025-08-26T20:45:27.3018192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_dtype_abbrs.cpython-39.pyc 2025-08-26T20:45:27.3021858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_exposed_in.cpython-39.pyc 2025-08-26T20:45:27.3026809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_filelock.cpython-39.pyc 2025-08-26T20:45:27.3030504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_foreach_utils.cpython-39.pyc 2025-08-26T20:45:27.3034226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_functools.cpython-39.pyc 2025-08-26T20:45:27.3038033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_get_clean_triton.cpython-39.pyc 2025-08-26T20:45:27.3046073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_helion.cpython-39.pyc 2025-08-26T20:45:27.3049714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_import_utils.cpython-39.pyc 2025-08-26T20:45:27.3053299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_mode_utils.cpython-39.pyc 2025-08-26T20:45:27.3057236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_ordered_set.cpython-39.pyc 2025-08-26T20:45:27.3060818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_python_dispatch.cpython-39.pyc 2025-08-26T20:45:27.3064490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_pytree.cpython-39.pyc 2025-08-26T20:45:27.3068446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_stats.cpython-39.pyc 2025-08-26T20:45:27.3072026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_thunk.cpython-39.pyc 2025-08-26T20:45:27.3084435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_traceback.cpython-39.pyc 2025-08-26T20:45:27.3088290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_triton.cpython-39.pyc 2025-08-26T20:45:27.3091812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_typing_utils.cpython-39.pyc 2025-08-26T20:45:27.3096245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_zip.cpython-39.pyc 2025-08-26T20:45:27.3099106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.3109365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\memory.py 2025-08-26T20:45:27.3112965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\random.py 2025-08-26T20:45:27.3116175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\streams.py 2025-08-26T20:45:27.3119516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\_gpu_trace.py 2025-08-26T20:45:27.3123292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\_utils.py 2025-08-26T20:45:27.3127056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\__init__.py 2025-08-26T20:45:27.3140092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\__pycache__\memory.cpython-39.pyc 2025-08-26T20:45:27.3143792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\__pycache__\random.cpython-39.pyc 2025-08-26T20:45:27.3147317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\__pycache__\streams.cpython-39.pyc 2025-08-26T20:45:27.3155479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\__pycache__\_gpu_trace.cpython-39.pyc 2025-08-26T20:45:27.3159129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\__pycache__\_utils.cpython-39.pyc 2025-08-26T20:45:27.3162702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.3170533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_awaits\__init__.py 2025-08-26T20:45:27.3177395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_awaits\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.3186452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_aoti.pyi 2025-08-26T20:45:27.3189872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_autograd.pyi 2025-08-26T20:45:27.3193277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_cpu.pyi 2025-08-26T20:45:27.3196611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_cudnn.pyi 2025-08-26T20:45:27.3200117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_cusparselt.pyi 2025-08-26T20:45:27.3208200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_distributed_autograd.pyi 2025-08-26T20:45:27.3211812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_distributed_c10d.pyi 2025-08-26T20:45:27.3215582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_distributed_rpc.pyi 2025-08-26T20:45:27.3219161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_distributed_rpc_testing.pyi 2025-08-26T20:45:27.3222757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_functions.pyi 2025-08-26T20:45:27.3226282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_functorch.pyi 2025-08-26T20:45:27.3229969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_instruction_counter.pyi 2025-08-26T20:45:27.3233331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_itt.pyi 2025-08-26T20:45:27.3237346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_jit_tree_views.pyi 2025-08-26T20:45:27.3240948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_lazy.pyi 2025-08-26T20:45:27.3244356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_lazy_ts_backend.pyi 2025-08-26T20:45:27.3247771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_monitor.pyi 2025-08-26T20:45:27.3251204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_nn.pyi 2025-08-26T20:45:27.3254580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_nvtx.pyi 2025-08-26T20:45:27.3257923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_onnx.pyi 2025-08-26T20:45:27.3261271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_profiler.pyi 2025-08-26T20:45:27.3265147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_VariableFunctions.pyi 2025-08-26T20:45:27.3275793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_verbose.pyi 2025-08-26T20:45:27.3283658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\__init__.pyi 2025-08-26T20:45:27.3293385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_dynamo\compiled_autograd.pyi 2025-08-26T20:45:27.3296843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_dynamo\eval_frame.pyi 2025-08-26T20:45:27.3300283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_dynamo\guards.pyi 2025-08-26T20:45:27.3303753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_dynamo\__init__.pyi 2025-08-26T20:45:27.3327681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_export\pt2_archive_constants.pyi 2025-08-26T20:45:27.3331273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_export\__init__.pyi 2025-08-26T20:45:27.3339800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_custom_op\autograd.py 2025-08-26T20:45:27.3343109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_custom_op\impl.py 2025-08-26T20:45:27.3346638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_custom_op\__init__.py 2025-08-26T20:45:27.3352811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_custom_op\__pycache__\autograd.cpython-39.pyc 2025-08-26T20:45:27.3356313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_custom_op\__pycache__\impl.cpython-39.pyc 2025-08-26T20:45:27.3359764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_custom_op\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.3372776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C_flatbuffer\__init__.pyi 2025-08-26T20:45:27.3379687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\decompositions.py 2025-08-26T20:45:27.3384337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\decompositions_for_jvp.py 2025-08-26T20:45:27.3387756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\decompositions_for_rng.py 2025-08-26T20:45:27.3395475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\__init__.py 2025-08-26T20:45:27.3402902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\__pycache__\decompositions.cpython-39.pyc 2025-08-26T20:45:27.3406945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\__pycache__\decompositions_for_jvp.cpython-39.pyc 2025-08-26T20:45:27.3410470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\__pycache__\decompositions_for_rng.cpython-39.pyc 2025-08-26T20:45:27.3418446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.3426141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dispatch\python.py 2025-08-26T20:45:27.3429505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dispatch\__init__.py 2025-08-26T20:45:27.3438339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dispatch\__pycache__\python.cpython-39.pyc 2025-08-26T20:45:27.3441768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dispatch\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.3450032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\bytecode_analysis.py 2025-08-26T20:45:27.3453612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\bytecode_transformation.py 2025-08-26T20:45:27.3457201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\cache_size.py 2025-08-26T20:45:27.3465617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\callback.py 2025-08-26T20:45:27.3468880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\codegen.py 2025-08-26T20:45:27.3472528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\code_context.py 2025-08-26T20:45:27.3476094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\compiled_autograd.py 2025-08-26T20:45:27.3479915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\comptime.py 2025-08-26T20:45:27.3483351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\config.py 2025-08-26T20:45:27.3486880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\convert_frame.py 2025-08-26T20:45:27.3490596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\create_parameter_op.py 2025-08-26T20:45:27.3494111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\current_scope_id.py 2025-08-26T20:45:27.3497551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\debug_utils.py 2025-08-26T20:45:27.3501118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\decorators.py 2025-08-26T20:45:27.3504957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\device_interface.py 2025-08-26T20:45:27.3508434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\distributed.py 2025-08-26T20:45:27.3511957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\eval_frame.py 2025-08-26T20:45:27.3515952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\exc.py 2025-08-26T20:45:27.3519381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\external_utils.py 2025-08-26T20:45:27.3522815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\funcname_cache.py 2025-08-26T20:45:27.3526303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\graph_break_hints.py 2025-08-26T20:45:27.3534841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\graph_break_registry.json 2025-08-26T20:45:27.3539894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\graph_deduplication.py 2025-08-26T20:45:27.3544497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\graph_region_tracker.py 2025-08-26T20:45:27.3547628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\graph_utils.py 2025-08-26T20:45:27.3551697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\guards.py 2025-08-26T20:45:27.3556510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\hooks.py 2025-08-26T20:45:27.3559983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\logging.py 2025-08-26T20:45:27.3563942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\metrics_context.py 2025-08-26T20:45:27.3567601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\mutation_guard.py 2025-08-26T20:45:27.3571147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\output_graph.py 2025-08-26T20:45:27.3576161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\package.py 2025-08-26T20:45:27.3585059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\pgo.py 2025-08-26T20:45:27.3588653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\precompile_context.py 2025-08-26T20:45:27.3592186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\profiler.py 2025-08-26T20:45:27.3596197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\replay_record.py 2025-08-26T20:45:27.3599156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\resume_execution.py 2025-08-26T20:45:27.3602735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\side_effects.py 2025-08-26T20:45:27.3606350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\source.py 2025-08-26T20:45:27.3610046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\symbolic_convert.py 2025-08-26T20:45:27.3614870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\tensor_version_op.py 2025-08-26T20:45:27.3619192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\testing.py 2025-08-26T20:45:27.3621930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\test_case.py 2025-08-26T20:45:27.3626016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\test_dont_skip_tracing_functions.py 2025-08-26T20:45:27.3633391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\test_minifier_common.py 2025-08-26T20:45:27.3637230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\trace_rules.py 2025-08-26T20:45:27.3641937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\types.py 2025-08-26T20:45:27.3645575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\utils.py 2025-08-26T20:45:27.3650588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\_trace_wrapped_higher_order_op.py 2025-08-26T20:45:27.3654835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__init__.py 2025-08-26T20:45:27.3661701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\common.py 2025-08-26T20:45:27.3665717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\cudagraphs.py 2025-08-26T20:45:27.3669234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\debugging.py 2025-08-26T20:45:27.3672830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\distributed.py 2025-08-26T20:45:27.3681512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\inductor.py 2025-08-26T20:45:27.3685017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\onnxrt.py 2025-08-26T20:45:27.3688374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\registry.py 2025-08-26T20:45:27.3691936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\tensorrt.py 2025-08-26T20:45:27.3695270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\torchxla.py 2025-08-26T20:45:27.3698614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\tvm.py 2025-08-26T20:45:27.3701997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__init__.py 2025-08-26T20:45:27.3708919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\common.cpython-39.pyc 2025-08-26T20:45:27.3712494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\cudagraphs.cpython-39.pyc 2025-08-26T20:45:27.3716566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\debugging.cpython-39.pyc 2025-08-26T20:45:27.3725527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\distributed.cpython-39.pyc 2025-08-26T20:45:27.3729399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\inductor.cpython-39.pyc 2025-08-26T20:45:27.3732907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\onnxrt.cpython-39.pyc 2025-08-26T20:45:27.3736434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\registry.cpython-39.pyc 2025-08-26T20:45:27.3740190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\tensorrt.cpython-39.pyc 2025-08-26T20:45:27.3743980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\torchxla.cpython-39.pyc 2025-08-26T20:45:27.3747644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\tvm.cpython-39.pyc 2025-08-26T20:45:27.3751207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.3760154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\builtins.py 2025-08-26T20:45:27.3763544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\functools.py 2025-08-26T20:45:27.3767000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\fx.py 2025-08-26T20:45:27.3770399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\itertools.py 2025-08-26T20:45:27.3778838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\loader.py 2025-08-26T20:45:27.3782377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\operator.py 2025-08-26T20:45:27.3785805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\os.py 2025-08-26T20:45:27.3789301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\pytree.py 2025-08-26T20:45:27.3792519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\struct.py 2025-08-26T20:45:27.3795976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\sys.py 2025-08-26T20:45:27.3799328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\tensor.py 2025-08-26T20:45:27.3802739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\_collections.py 2025-08-26T20:45:27.3814580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__init__.py 2025-08-26T20:45:27.3815654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\builtins.cpython-39.pyc 2025-08-26T20:45:27.3819419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\functools.cpython-39.pyc 2025-08-26T20:45:27.3823276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\fx.cpython-39.pyc 2025-08-26T20:45:27.3830977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\itertools.cpython-39.pyc 2025-08-26T20:45:27.3834692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\loader.cpython-39.pyc 2025-08-26T20:45:27.3838284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\operator.cpython-39.pyc 2025-08-26T20:45:27.3841762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\os.cpython-39.pyc 2025-08-26T20:45:27.3845495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\pytree.cpython-39.pyc 2025-08-26T20:45:27.3849465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\struct.cpython-39.pyc 2025-08-26T20:45:27.3853016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\sys.cpython-39.pyc 2025-08-26T20:45:27.3856665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\tensor.cpython-39.pyc 2025-08-26T20:45:27.3860444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\_collections.cpython-39.pyc 2025-08-26T20:45:27.3864073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.3872092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\after_aot.py 2025-08-26T20:45:27.3875794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\after_dynamo.py 2025-08-26T20:45:27.3879281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\aoti.py 2025-08-26T20:45:27.3882665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\__init__.py 2025-08-26T20:45:27.3893958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\__pycache__\after_aot.cpython-39.pyc 2025-08-26T20:45:27.3897921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\__pycache__\after_dynamo.cpython-39.pyc 2025-08-26T20:45:27.3901476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\__pycache__\aoti.cpython-39.pyc 2025-08-26T20:45:27.3908938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.3916956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\base.py 2025-08-26T20:45:27.3920739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\builder.py 2025-08-26T20:45:27.3926060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\builtin.py 2025-08-26T20:45:27.3929958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\constant.py 2025-08-26T20:45:27.3933501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\ctx_manager.py 2025-08-26T20:45:27.3942816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\dicts.py 2025-08-26T20:45:27.3946538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\distributed.py 2025-08-26T20:45:27.3950317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\functions.py 2025-08-26T20:45:27.3954402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\higher_order_ops.py 2025-08-26T20:45:27.3958393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\iter.py 2025-08-26T20:45:27.3961861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\lazy.py 2025-08-26T20:45:27.3965196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\lists.py 2025-08-26T20:45:27.3968650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\misc.py 2025-08-26T20:45:27.3972810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\nn_module.py 2025-08-26T20:45:27.3976818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\optimizer.py 2025-08-26T20:45:27.3980521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\script_object.py 2025-08-26T20:45:27.3984066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\sdpa.py 2025-08-26T20:45:27.3987444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\tensor.py 2025-08-26T20:45:27.3991119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\torch.py 2025-08-26T20:45:27.3994919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\torch_function.py 2025-08-26T20:45:27.3998595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\user_defined.py 2025-08-26T20:45:27.4003238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__init__.py 2025-08-26T20:45:27.4011003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\base.cpython-39.pyc 2025-08-26T20:45:27.4014865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\builder.cpython-39.pyc 2025-08-26T20:45:27.4018855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\builtin.cpython-39.pyc 2025-08-26T20:45:27.4027958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\constant.cpython-39.pyc 2025-08-26T20:45:27.4031571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\ctx_manager.cpython-39.pyc 2025-08-26T20:45:27.4035592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\dicts.cpython-39.pyc 2025-08-26T20:45:27.4039866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\distributed.cpython-39.pyc 2025-08-26T20:45:27.4043063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\functions.cpython-39.pyc 2025-08-26T20:45:27.4047539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\higher_order_ops.cpython-39.pyc 2025-08-26T20:45:27.4051909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\iter.cpython-39.pyc 2025-08-26T20:45:27.4055518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\lazy.cpython-39.pyc 2025-08-26T20:45:27.4059237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\lists.cpython-39.pyc 2025-08-26T20:45:27.4063169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\misc.cpython-39.pyc 2025-08-26T20:45:27.4066844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\nn_module.cpython-39.pyc 2025-08-26T20:45:27.4071336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\optimizer.cpython-39.pyc 2025-08-26T20:45:27.4075062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\script_object.cpython-39.pyc 2025-08-26T20:45:27.4079971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\sdpa.cpython-39.pyc 2025-08-26T20:45:27.4087833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\tensor.cpython-39.pyc 2025-08-26T20:45:27.4091904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\torch.cpython-39.pyc 2025-08-26T20:45:27.4095980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\torch_function.cpython-39.pyc 2025-08-26T20:45:27.4100013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\user_defined.cpython-39.pyc 2025-08-26T20:45:27.4104233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.4114556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\bytecode_analysis.cpython-39.pyc 2025-08-26T20:45:27.4117282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\bytecode_transformation.cpython-39.pyc 2025-08-26T20:45:27.4121146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\cache_size.cpython-39.pyc 2025-08-26T20:45:27.4130839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\callback.cpython-39.pyc 2025-08-26T20:45:27.4134661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\codegen.cpython-39.pyc 2025-08-26T20:45:27.4138418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\code_context.cpython-39.pyc 2025-08-26T20:45:27.4142327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\compiled_autograd.cpython-39.pyc 2025-08-26T20:45:27.4146488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\comptime.cpython-39.pyc 2025-08-26T20:45:27.4150342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\config.cpython-39.pyc 2025-08-26T20:45:27.4154104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\convert_frame.cpython-39.pyc 2025-08-26T20:45:27.4157936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\create_parameter_op.cpython-39.pyc 2025-08-26T20:45:27.4162052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\current_scope_id.cpython-39.pyc 2025-08-26T20:45:27.4165782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\debug_utils.cpython-39.pyc 2025-08-26T20:45:27.4172057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\decorators.cpython-39.pyc 2025-08-26T20:45:27.4175988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\device_interface.cpython-39.pyc 2025-08-26T20:45:27.4181822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\distributed.cpython-39.pyc 2025-08-26T20:45:27.4191547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\eval_frame.cpython-39.pyc 2025-08-26T20:45:27.4195466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\exc.cpython-39.pyc 2025-08-26T20:45:27.4199133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\external_utils.cpython-39.pyc 2025-08-26T20:45:27.4202661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\funcname_cache.cpython-39.pyc 2025-08-26T20:45:27.4206281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\graph_break_hints.cpython-39.pyc 2025-08-26T20:45:27.4210259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\graph_deduplication.cpython-39.pyc 2025-08-26T20:45:27.4214080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\graph_region_tracker.cpython-39.pyc 2025-08-26T20:45:27.4217638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\graph_utils.cpython-39.pyc 2025-08-26T20:45:27.4225598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\guards.cpython-39.pyc 2025-08-26T20:45:27.4229659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\hooks.cpython-39.pyc 2025-08-26T20:45:27.4233480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\logging.cpython-39.pyc 2025-08-26T20:45:27.4237265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\metrics_context.cpython-39.pyc 2025-08-26T20:45:27.4241747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\mutation_guard.cpython-39.pyc 2025-08-26T20:45:27.4244787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\output_graph.cpython-39.pyc 2025-08-26T20:45:27.4248587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\package.cpython-39.pyc 2025-08-26T20:45:27.4252368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\pgo.cpython-39.pyc 2025-08-26T20:45:27.4256439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\precompile_context.cpython-39.pyc 2025-08-26T20:45:27.4264888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\profiler.cpython-39.pyc 2025-08-26T20:45:27.4268398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\replay_record.cpython-39.pyc 2025-08-26T20:45:27.4272064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\resume_execution.cpython-39.pyc 2025-08-26T20:45:27.4275648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\side_effects.cpython-39.pyc 2025-08-26T20:45:27.4279387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\source.cpython-39.pyc 2025-08-26T20:45:27.4283282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\symbolic_convert.cpython-39.pyc 2025-08-26T20:45:27.4287538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\tensor_version_op.cpython-39.pyc 2025-08-26T20:45:27.4291836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\testing.cpython-39.pyc 2025-08-26T20:45:27.4303436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\test_case.cpython-39.pyc 2025-08-26T20:45:27.4307348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\test_dont_skip_tracing_functions.cpython-39.pyc 2025-08-26T20:45:27.4311032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\test_minifier_common.cpython-39.pyc 2025-08-26T20:45:27.4314599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\trace_rules.cpython-39.pyc 2025-08-26T20:45:27.4318600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\types.cpython-39.pyc 2025-08-26T20:45:27.4322109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:27.4326580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\_trace_wrapped_higher_order_op.cpython-39.pyc 2025-08-26T20:45:27.4330275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.4345153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\converter.py 2025-08-26T20:45:27.4348849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\error.py 2025-08-26T20:45:27.4352342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\non_strict_utils.py 2025-08-26T20:45:27.4355932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\pass_base.py 2025-08-26T20:45:27.4364135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\tools.py 2025-08-26T20:45:27.4367427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\utils.py 2025-08-26T20:45:27.4371003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\verifier.py 2025-08-26T20:45:27.4375425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\wrappers.py 2025-08-26T20:45:27.4379022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__init__.py 2025-08-26T20:45:27.4385700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\case.py 2025-08-26T20:45:27.4389059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\gen_example.py 2025-08-26T20:45:27.4392443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\logging.py 2025-08-26T20:45:27.4395806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\__init__.py 2025-08-26T20:45:27.4404476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\assume_constant_result.py 2025-08-26T20:45:27.4407241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\autograd_function.py 2025-08-26T20:45:27.4410852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\class_method.py 2025-08-26T20:45:27.4433460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\cond_branch_class_method.py 2025-08-26T20:45:27.4437007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\cond_branch_nested_function.py 2025-08-26T20:45:27.4441397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\cond_branch_nonlocal_variables.py 2025-08-26T20:45:27.4444997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\cond_closed_over_variable.py 2025-08-26T20:45:27.4448335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\cond_operands.py 2025-08-26T20:45:27.4452187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\cond_predicate.py 2025-08-26T20:45:27.4456470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\constrain_as_size_example.py 2025-08-26T20:45:27.4459648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\constrain_as_value_example.py 2025-08-26T20:45:27.4463783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\decorator.py 2025-08-26T20:45:27.4467959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dictionary.py 2025-08-26T20:45:27.4471222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dynamic_shape_assert.py 2025-08-26T20:45:27.4475343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dynamic_shape_constructor.py 2025-08-26T20:45:27.4479574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dynamic_shape_if_guard.py 2025-08-26T20:45:27.4482819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dynamic_shape_map.py 2025-08-26T20:45:27.4486876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dynamic_shape_round.py 2025-08-26T20:45:27.4495008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dynamic_shape_slicing.py 2025-08-26T20:45:27.4498726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dynamic_shape_view.py 2025-08-26T20:45:27.4502588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\fn_with_kwargs.py 2025-08-26T20:45:27.4505935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\list_contains.py 2025-08-26T20:45:27.4509919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\list_unpack.py 2025-08-26T20:45:27.4514087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\model_attr_mutation.py 2025-08-26T20:45:27.4517335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\nested_function.py 2025-08-26T20:45:27.4521465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\null_context_manager.py 2025-08-26T20:45:27.4529396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\optional_input.py 2025-08-26T20:45:27.4533258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\pytree_flatten.py 2025-08-26T20:45:27.4537147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\scalar_output.py 2025-08-26T20:45:27.4540498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\specialized_attribute.py 2025-08-26T20:45:27.4544571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\static_for_loop.py 2025-08-26T20:45:27.4548676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\static_if.py 2025-08-26T20:45:27.4552218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\tensor_setattr.py 2025-08-26T20:45:27.4556369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\type_reflection_method.py 2025-08-26T20:45:27.4560210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\unsupported_operator.py 2025-08-26T20:45:27.4568374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\user_input_mutation.py 2025-08-26T20:45:27.4571965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__init__.py 2025-08-26T20:45:27.4581145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\assume_constant_result.cpython-39.pyc 2025-08-26T20:45:27.4584991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\autograd_function.cpython-39.pyc 2025-08-26T20:45:27.4589156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\class_method.cpython-39.pyc 2025-08-26T20:45:27.4597720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\cond_branch_class_method.cpython-39.pyc 2025-08-26T20:45:27.4601599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\cond_branch_nested_function.cpython-39.pyc 2025-08-26T20:45:27.4605305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\cond_branch_nonlocal_variables.cpython-39.pyc 2025-08-26T20:45:27.4608948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\cond_closed_over_variable.cpython-39.pyc 2025-08-26T20:45:27.4612663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\cond_operands.cpython-39.pyc 2025-08-26T20:45:27.4616468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\cond_predicate.cpython-39.pyc 2025-08-26T20:45:27.4620214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\constrain_as_size_example.cpython-39.pyc 2025-08-26T20:45:27.4624414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\constrain_as_value_example.cpython-39.pyc 2025-08-26T20:45:27.4628303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\decorator.cpython-39.pyc 2025-08-26T20:45:27.4632095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dictionary.cpython-39.pyc 2025-08-26T20:45:27.4635939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dynamic_shape_assert.cpython-39.pyc 2025-08-26T20:45:27.4640037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dynamic_shape_constructor.cpython-39.pyc 2025-08-26T20:45:27.4643784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dynamic_shape_if_guard.cpython-39.pyc 2025-08-26T20:45:27.4651365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dynamic_shape_map.cpython-39.pyc 2025-08-26T20:45:27.4655211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dynamic_shape_round.cpython-39.pyc 2025-08-26T20:45:27.4658993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dynamic_shape_slicing.cpython-39.pyc 2025-08-26T20:45:27.4662763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dynamic_shape_view.cpython-39.pyc 2025-08-26T20:45:27.4666884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\fn_with_kwargs.cpython-39.pyc 2025-08-26T20:45:27.4670732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\list_contains.cpython-39.pyc 2025-08-26T20:45:27.4674391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\list_unpack.cpython-39.pyc 2025-08-26T20:45:27.4682676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\model_attr_mutation.cpython-39.pyc 2025-08-26T20:45:27.4686352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\nested_function.cpython-39.pyc 2025-08-26T20:45:27.4690025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\null_context_manager.cpython-39.pyc 2025-08-26T20:45:27.4693757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\optional_input.cpython-39.pyc 2025-08-26T20:45:27.4697710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\pytree_flatten.cpython-39.pyc 2025-08-26T20:45:27.4701388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\scalar_output.cpython-39.pyc 2025-08-26T20:45:27.4705220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\specialized_attribute.cpython-39.pyc 2025-08-26T20:45:27.4708744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\static_for_loop.cpython-39.pyc 2025-08-26T20:45:27.4720486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\static_if.cpython-39.pyc 2025-08-26T20:45:27.4724098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\tensor_setattr.cpython-39.pyc 2025-08-26T20:45:27.4728025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\type_reflection_method.cpython-39.pyc 2025-08-26T20:45:27.4731644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\unsupported_operator.cpython-39.pyc 2025-08-26T20:45:27.4735363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\user_input_mutation.cpython-39.pyc 2025-08-26T20:45:27.4738972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.4753267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\__pycache__\case.cpython-39.pyc 2025-08-26T20:45:27.4756651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\__pycache__\gen_example.cpython-39.pyc 2025-08-26T20:45:27.4760346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\__pycache__\logging.cpython-39.pyc 2025-08-26T20:45:27.4769047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.4777224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\add_runtime_assertions_for_constraints_pass.py 2025-08-26T20:45:27.4781053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\collect_tracepoints_pass.py 2025-08-26T20:45:27.4784685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\constant_folding.py 2025-08-26T20:45:27.4792248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\functionalize_side_effectful_ops_pass.py 2025-08-26T20:45:27.4795902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\insert_custom_op_guards.py 2025-08-26T20:45:27.4799550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\lift_constants_pass.py 2025-08-26T20:45:27.4803087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\remove_runtime_assertions.py 2025-08-26T20:45:27.4806661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\replace_autocast_with_hop_pass.py 2025-08-26T20:45:27.4810635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\replace_quantized_ops_with_standard_ops_pass.py 2025-08-26T20:45:27.4814150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\replace_set_grad_with_hop_pass.py 2025-08-26T20:45:27.4817675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\replace_view_ops_with_view_copy_ops_pass.py 2025-08-26T20:45:27.4821329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\replace_with_hop_pass_util.py 2025-08-26T20:45:27.4825114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\_node_metadata_hook.py 2025-08-26T20:45:27.4828557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__init__.py 2025-08-26T20:45:27.4836201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\add_runtime_assertions_for_constraints_pass.cpython-39.pyc 2025-08-26T20:45:27.4839697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\collect_tracepoints_pass.cpython-39.pyc 2025-08-26T20:45:27.4848720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\constant_folding.cpython-39.pyc 2025-08-26T20:45:27.4852412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\functionalize_side_effectful_ops_pass.cpython-39.pyc 2025-08-26T20:45:27.4855955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\insert_custom_op_guards.cpython-39.pyc 2025-08-26T20:45:27.4859537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\lift_constants_pass.cpython-39.pyc 2025-08-26T20:45:27.4863164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\remove_runtime_assertions.cpython-39.pyc 2025-08-26T20:45:27.4867339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\replace_autocast_with_hop_pass.cpython-39.pyc 2025-08-26T20:45:27.4871103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\replace_quantized_ops_with_standard_ops_pass.cpython-39.pyc 2025-08-26T20:45:27.4874771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\replace_set_grad_with_hop_pass.cpython-39.pyc 2025-08-26T20:45:27.4878388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\replace_view_ops_with_view_copy_ops_pass.cpython-39.pyc 2025-08-26T20:45:27.4882175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\replace_with_hop_pass_util.cpython-39.pyc 2025-08-26T20:45:27.4885773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\_node_metadata_hook.cpython-39.pyc 2025-08-26T20:45:27.4889981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.4899065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\pass_infra\node_metadata.py 2025-08-26T20:45:27.4901910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\pass_infra\proxy_value.py 2025-08-26T20:45:27.4905497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\pass_infra\__init__.py 2025-08-26T20:45:27.4917146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\pass_infra\__pycache__\node_metadata.cpython-39.pyc 2025-08-26T20:45:27.4921720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\pass_infra\__pycache__\proxy_value.cpython-39.pyc 2025-08-26T20:45:27.4925746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\pass_infra\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.4939823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\dynamic_shapes.py 2025-08-26T20:45:27.4943328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\export_schema.thrift 2025-08-26T20:45:27.4947340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\schema.py 2025-08-26T20:45:27.4951141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\schema.yaml 2025-08-26T20:45:27.4959654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\schema_check.py 2025-08-26T20:45:27.4963269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\serialize.py 2025-08-26T20:45:27.4967740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\union.py 2025-08-26T20:45:27.4971332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\__init__.py 2025-08-26T20:45:27.4977818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\__pycache__\dynamic_shapes.cpython-39.pyc 2025-08-26T20:45:27.4981728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\__pycache__\schema.cpython-39.pyc 2025-08-26T20:45:27.4985490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\__pycache__\schema_check.cpython-39.pyc 2025-08-26T20:45:27.4993966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\__pycache__\serialize.cpython-39.pyc 2025-08-26T20:45:27.4997868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\__pycache__\union.cpython-39.pyc 2025-08-26T20:45:27.5001514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.5010156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\converter.cpython-39.pyc 2025-08-26T20:45:27.5013857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\error.cpython-39.pyc 2025-08-26T20:45:27.5017460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\non_strict_utils.cpython-39.pyc 2025-08-26T20:45:27.5025919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\pass_base.cpython-39.pyc 2025-08-26T20:45:27.5029446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\tools.cpython-39.pyc 2025-08-26T20:45:27.5033259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:27.5037135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\verifier.cpython-39.pyc 2025-08-26T20:45:27.5040638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\wrappers.cpython-39.pyc 2025-08-26T20:45:27.5044140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.5052801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\aot_autograd.py 2025-08-26T20:45:27.5057017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\apis.py 2025-08-26T20:45:27.5060790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\autograd_function.py 2025-08-26T20:45:27.5064479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\batch_norm_replacement.py 2025-08-26T20:45:27.5072852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\benchmark_utils.py 2025-08-26T20:45:27.5076495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\compilers.py 2025-08-26T20:45:27.5080140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\compile_utils.py 2025-08-26T20:45:27.5083601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\config.py 2025-08-26T20:45:27.5086984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\deprecated.py 2025-08-26T20:45:27.5090753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\eager_transforms.py 2025-08-26T20:45:27.5094908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\functional_call.py 2025-08-26T20:45:27.5098376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\fx_minifier.py 2025-08-26T20:45:27.5102173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\make_functional.py 2025-08-26T20:45:27.5105948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\partitioners.py 2025-08-26T20:45:27.5110451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\predispatch.py 2025-08-26T20:45:27.5114003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\pyfunctorch.py 2025-08-26T20:45:27.5117613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\python_key.py 2025-08-26T20:45:27.5121154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\pytree_hacks.py 2025-08-26T20:45:27.5124943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\top_operators_github_usage.py 2025-08-26T20:45:27.5128758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\utils.py 2025-08-26T20:45:27.5136483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\vmap.py 2025-08-26T20:45:27.5141050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__init__.py 2025-08-26T20:45:27.5149455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\ac_logging_utils.py 2025-08-26T20:45:27.5153134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\graph_info_provider.py 2025-08-26T20:45:27.5156610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\knapsack.py 2025-08-26T20:45:27.5164986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\knapsack_evaluator.py 2025-08-26T20:45:27.5168773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\__init__.py 2025-08-26T20:45:27.5176054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\__pycache__\ac_logging_utils.cpython-39.pyc 2025-08-26T20:45:27.5179997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\__pycache__\graph_info_provider.cpython-39.pyc 2025-08-26T20:45:27.5183579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\__pycache__\knapsack.cpython-39.pyc 2025-08-26T20:45:27.5191803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\__pycache__\knapsack_evaluator.cpython-39.pyc 2025-08-26T20:45:27.5195423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.5203402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\autograd_cache.py 2025-08-26T20:45:27.5207288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\collect_metadata_analysis.py 2025-08-26T20:45:27.5210814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\descriptors.py 2025-08-26T20:45:27.5219557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\frontend_utils.py 2025-08-26T20:45:27.5223317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\functional_utils.py 2025-08-26T20:45:27.5226821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\fx_utils.py 2025-08-26T20:45:27.5230220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\graph_capture.py 2025-08-26T20:45:27.5233962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\graph_capture_wrappers.py 2025-08-26T20:45:27.5237805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\graph_compile.py 2025-08-26T20:45:27.5242138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\input_output_analysis.py 2025-08-26T20:45:27.5245629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\logging_utils.py 2025-08-26T20:45:27.5249203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\runtime_wrappers.py 2025-08-26T20:45:27.5253080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\schemas.py 2025-08-26T20:45:27.5256590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\subclass_parametrization.py 2025-08-26T20:45:27.5259894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\subclass_utils.py 2025-08-26T20:45:27.5263451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\utils.py 2025-08-26T20:45:27.5266685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__init__.py 2025-08-26T20:45:27.5274248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\autograd_cache.cpython-39.pyc 2025-08-26T20:45:27.5278135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\collect_metadata_analysis.cpython-39.pyc 2025-08-26T20:45:27.5281560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\descriptors.cpython-39.pyc 2025-08-26T20:45:27.5289019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\frontend_utils.cpython-39.pyc 2025-08-26T20:45:27.5292417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\functional_utils.cpython-39.pyc 2025-08-26T20:45:27.5295891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\fx_utils.cpython-39.pyc 2025-08-26T20:45:27.5299282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\graph_capture.cpython-39.pyc 2025-08-26T20:45:27.5302662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\graph_capture_wrappers.cpython-39.pyc 2025-08-26T20:45:27.5306429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\graph_compile.cpython-39.pyc 2025-08-26T20:45:27.5309952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\input_output_analysis.cpython-39.pyc 2025-08-26T20:45:27.5313332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\logging_utils.cpython-39.pyc 2025-08-26T20:45:27.5316664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\runtime_wrappers.cpython-39.pyc 2025-08-26T20:45:27.5320217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\schemas.cpython-39.pyc 2025-08-26T20:45:27.5323788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\subclass_parametrization.cpython-39.pyc 2025-08-26T20:45:27.5327406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\subclass_utils.cpython-39.pyc 2025-08-26T20:45:27.5330924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:27.5339120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.5347355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\aot_autograd.cpython-39.pyc 2025-08-26T20:45:27.5350755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\apis.cpython-39.pyc 2025-08-26T20:45:27.5354177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\autograd_function.cpython-39.pyc 2025-08-26T20:45:27.5362498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\batch_norm_replacement.cpython-39.pyc 2025-08-26T20:45:27.5365885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\benchmark_utils.cpython-39.pyc 2025-08-26T20:45:27.5369191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\compilers.cpython-39.pyc 2025-08-26T20:45:27.5372525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\compile_utils.cpython-39.pyc 2025-08-26T20:45:27.5375838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\config.cpython-39.pyc 2025-08-26T20:45:27.5379246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\deprecated.cpython-39.pyc 2025-08-26T20:45:27.5382575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\eager_transforms.cpython-39.pyc 2025-08-26T20:45:27.5386922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\functional_call.cpython-39.pyc 2025-08-26T20:45:27.5390339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\fx_minifier.cpython-39.pyc 2025-08-26T20:45:27.5393787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\make_functional.cpython-39.pyc 2025-08-26T20:45:27.5397278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\partitioners.cpython-39.pyc 2025-08-26T20:45:27.5400936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\predispatch.cpython-39.pyc 2025-08-26T20:45:27.5404393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\pyfunctorch.cpython-39.pyc 2025-08-26T20:45:27.5411821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\python_key.cpython-39.pyc 2025-08-26T20:45:27.5415377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\pytree_hacks.cpython-39.pyc 2025-08-26T20:45:27.5418957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\top_operators_github_usage.cpython-39.pyc 2025-08-26T20:45:27.5422529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:27.5426127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\vmap.cpython-39.pyc 2025-08-26T20:45:27.5429513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.5437714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\aoti_call_delegate.py 2025-08-26T20:45:27.5441306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\associative_scan.py 2025-08-26T20:45:27.5444667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\auto_functionalize.py 2025-08-26T20:45:27.5452477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\base_hop.py 2025-08-26T20:45:27.5455675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\cond.py 2025-08-26T20:45:27.5458961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\effects.py 2025-08-26T20:45:27.5462256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\executorch_call_delegate.py 2025-08-26T20:45:27.5465596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\flat_apply.py 2025-08-26T20:45:27.5469260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\flex_attention.py 2025-08-26T20:45:27.5473362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\foreach_map.py 2025-08-26T20:45:27.5477714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\hints_wrap.py 2025-08-26T20:45:27.5482354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\invoke_subgraph.py 2025-08-26T20:45:27.5487064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\map.py 2025-08-26T20:45:27.5490401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\out_dtype.py 2025-08-26T20:45:27.5495121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\run_const_graph.py 2025-08-26T20:45:27.5499895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\scan.py 2025-08-26T20:45:27.5505441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\schema.py 2025-08-26T20:45:27.5510044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\strict_mode.py 2025-08-26T20:45:27.5513590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\torchbind.py 2025-08-26T20:45:27.5518500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\triton_kernel_wrap.py 2025-08-26T20:45:27.5540666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\utils.py 2025-08-26T20:45:27.5544412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\while_loop.py 2025-08-26T20:45:27.5552409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\wrap.py 2025-08-26T20:45:27.5555824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\_invoke_quant.py 2025-08-26T20:45:27.5559297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__init__.py 2025-08-26T20:45:27.5567585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\aoti_call_delegate.cpython-39.pyc 2025-08-26T20:45:27.5570985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\associative_scan.cpython-39.pyc 2025-08-26T20:45:27.5575031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\auto_functionalize.cpython-39.pyc 2025-08-26T20:45:27.5583306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\base_hop.cpython-39.pyc 2025-08-26T20:45:27.5586738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\cond.cpython-39.pyc 2025-08-26T20:45:27.5590239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\effects.cpython-39.pyc 2025-08-26T20:45:27.5593679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\executorch_call_delegate.cpython-39.pyc 2025-08-26T20:45:27.5597465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\flat_apply.cpython-39.pyc 2025-08-26T20:45:27.5600884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\flex_attention.cpython-39.pyc 2025-08-26T20:45:27.5604695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\foreach_map.cpython-39.pyc 2025-08-26T20:45:27.5608179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\hints_wrap.cpython-39.pyc 2025-08-26T20:45:27.5611574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\invoke_subgraph.cpython-39.pyc 2025-08-26T20:45:27.5615458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\map.cpython-39.pyc 2025-08-26T20:45:27.5618986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\out_dtype.cpython-39.pyc 2025-08-26T20:45:27.5622410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\run_const_graph.cpython-39.pyc 2025-08-26T20:45:27.5626482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\scan.cpython-39.pyc 2025-08-26T20:45:27.5630316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\schema.cpython-39.pyc 2025-08-26T20:45:27.5638353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\strict_mode.cpython-39.pyc 2025-08-26T20:45:27.5642031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\torchbind.cpython-39.pyc 2025-08-26T20:45:27.5645935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\triton_kernel_wrap.cpython-39.pyc 2025-08-26T20:45:27.5649493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:27.5653221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\while_loop.cpython-39.pyc 2025-08-26T20:45:27.5656663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\wrap.cpython-39.pyc 2025-08-26T20:45:27.5660391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\_invoke_quant.cpython-39.pyc 2025-08-26T20:45:27.5663976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.5677149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\analyze_preserves_zero_mask.py 2025-08-26T20:45:27.5680551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\aoti_eager.py 2025-08-26T20:45:27.5683987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\async_compile.py 2025-08-26T20:45:27.5692012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autotune_process.py 2025-08-26T20:45:27.5695530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\await_utils.py 2025-08-26T20:45:27.5699140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\bounds.py 2025-08-26T20:45:27.5702969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\choices.py 2025-08-26T20:45:27.5706547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codecache.py 2025-08-26T20:45:27.5711151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\comms.py 2025-08-26T20:45:27.5714918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\comms_debug.py 2025-08-26T20:45:27.5718415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\comm_analysis.py 2025-08-26T20:45:27.5721898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\comm_lowering.py 2025-08-26T20:45:27.5725469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compiler_bisector.py 2025-08-26T20:45:27.5729514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_fx.py 2025-08-26T20:45:27.5734205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_fx_async.py 2025-08-26T20:45:27.5737999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_fx_ext.py 2025-08-26T20:45:27.5742816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_fx_subproc.py 2025-08-26T20:45:27.5746429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\config.py 2025-08-26T20:45:27.5750230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\constant_folding.py 2025-08-26T20:45:27.5753619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\cpp_builder.py 2025-08-26T20:45:27.5757440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\cpu_vec_isa.py 2025-08-26T20:45:27.5766348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\cudagraph_trees.py 2025-08-26T20:45:27.5770640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\cudagraph_utils.py 2025-08-26T20:45:27.5774479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\custom_graph_pass.py 2025-08-26T20:45:27.5778073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\debug.py 2025-08-26T20:45:27.5781717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\decomposition.py 2025-08-26T20:45:27.5785649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\dependencies.py 2025-08-26T20:45:27.5789542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\dtype_propagation.py 2025-08-26T20:45:27.5793546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\exc.py 2025-08-26T20:45:27.5797412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\extern_node_serializer.py 2025-08-26T20:45:27.5801220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\freezing.py 2025-08-26T20:45:27.5804775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\freezing_utils.py 2025-08-26T20:45:27.5812689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fuzzer.py 2025-08-26T20:45:27.5816312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_utils.py 2025-08-26T20:45:27.5819650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\graph.py 2025-08-26T20:45:27.5823595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\hooks.py 2025-08-26T20:45:27.5827165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\index_propagation.py 2025-08-26T20:45:27.5830647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\inductor_prims.py 2025-08-26T20:45:27.5834098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\ir.py 2025-08-26T20:45:27.5839245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\jagged_lowerings.py 2025-08-26T20:45:27.5842851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel_inputs.py 2025-08-26T20:45:27.5847557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\loop_body.py 2025-08-26T20:45:27.5850187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\lowering.py 2025-08-26T20:45:27.5854849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\memory.py 2025-08-26T20:45:27.5862858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\metrics.py 2025-08-26T20:45:27.5866234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\mkldnn_ir.py 2025-08-26T20:45:27.5869978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\mkldnn_lowerings.py 2025-08-26T20:45:27.5873763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\mock_cache.py 2025-08-26T20:45:27.5877332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\ops_handler.py 2025-08-26T20:45:27.5881010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\optimize_indexing.py 2025-08-26T20:45:27.5885153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\output_code.py 2025-08-26T20:45:27.5888804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\pattern_matcher.py 2025-08-26T20:45:27.5892848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\quantized_lowerings.py 2025-08-26T20:45:27.5896308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\remote_cache.py 2025-08-26T20:45:27.5908051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\remote_gemm_autotune_cache.py 2025-08-26T20:45:27.5911727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\scheduler.py 2025-08-26T20:45:27.5917095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\script.ld 2025-08-26T20:45:27.5920648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\select_algorithm.py 2025-08-26T20:45:27.5925075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\shape_propagation.py 2025-08-26T20:45:27.5928685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\sizevars.py 2025-08-26T20:45:27.5932249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\standalone_compile.py 2025-08-26T20:45:27.5935855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\subgraph_lowering.py 2025-08-26T20:45:27.5939340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\template_heuristics.py 2025-08-26T20:45:27.5943252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\template_registry.py 2025-08-26T20:45:27.5951350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\test_case.py 2025-08-26T20:45:27.5955123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\test_operators.py 2025-08-26T20:45:27.5959290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\tiling_utils.py 2025-08-26T20:45:27.5962529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\triton_bundler.py 2025-08-26T20:45:27.5966119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\utils.py 2025-08-26T20:45:27.5970115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\virtualized.py 2025-08-26T20:45:27.5973953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\wrapper_benchmark.py 2025-08-26T20:45:27.5977928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__autotune_main__.py 2025-08-26T20:45:27.5981242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__init__.py 2025-08-26T20:45:27.5989347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\analysis\device_info.py 2025-08-26T20:45:27.5992926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\analysis\profile_analysis.py 2025-08-26T20:45:27.5996955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\analysis\__init__.py 2025-08-26T20:45:27.6008775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\analysis\__pycache__\device_info.cpython-39.pyc 2025-08-26T20:45:27.6012493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\analysis\__pycache__\profile_analysis.cpython-39.pyc 2025-08-26T20:45:27.6016085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\analysis\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.6029561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\autoheuristic.py 2025-08-26T20:45:27.6032224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\autoheuristic_utils.py 2025-08-26T20:45:27.6036093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\learnedheuristic_interface.py 2025-08-26T20:45:27.6043905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\learned_heuristic_controller.py 2025-08-26T20:45:27.6047405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\__init__.py 2025-08-26T20:45:27.6053683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\_MixedMMA100.py 2025-08-26T20:45:27.6058149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\_MixedMMH100.py 2025-08-26T20:45:27.6060836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\_MMRankingA100.py 2025-08-26T20:45:27.6068345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\_MMRankingH100.py 2025-08-26T20:45:27.6072287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\_PadMMA100.py 2025-08-26T20:45:27.6090570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\__init__.py 2025-08-26T20:45:27.6091359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\__pycache__\_MixedMMA100.cpython-39.pyc 2025-08-26T20:45:27.6093377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\__pycache__\_MixedMMH100.cpython-39.pyc 2025-08-26T20:45:27.6094252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\__pycache__\_MMRankingA100.cpython-39.pyc 2025-08-26T20:45:27.6099298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\__pycache__\_MMRankingH100.cpython-39.pyc 2025-08-26T20:45:27.6102384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\__pycache__\_PadMMA100.cpython-39.pyc 2025-08-26T20:45:27.6106615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.6115621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\__pycache__\autoheuristic.cpython-39.pyc 2025-08-26T20:45:27.6118789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\__pycache__\autoheuristic_utils.cpython-39.pyc 2025-08-26T20:45:27.6122540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\__pycache__\learnedheuristic_interface.cpython-39.pyc 2025-08-26T20:45:27.6130801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\__pycache__\learned_heuristic_controller.cpython-39.pyc 2025-08-26T20:45:27.6134886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.6144543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\aoti_hipify_utils.py 2025-08-26T20:45:27.6147935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\block_analysis.py 2025-08-26T20:45:27.6151399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\common.py 2025-08-26T20:45:27.6155202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp.py 2025-08-26T20:45:27.6159694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_bmm_template.py 2025-08-26T20:45:27.6167682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_flex_attention_template.py 2025-08-26T20:45:27.6171284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_gemm_template.py 2025-08-26T20:45:27.6175539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_grouped_gemm_template.py 2025-08-26T20:45:27.6179187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_micro_gemm.py 2025-08-26T20:45:27.6182972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_template.py 2025-08-26T20:45:27.6186472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_template_kernel.py 2025-08-26T20:45:27.6190226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_utils.py 2025-08-26T20:45:27.6193750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_wrapper_cpu.py 2025-08-26T20:45:27.6197803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_wrapper_cpu_array_ref.py 2025-08-26T20:45:27.6201522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_wrapper_gpu.py 2025-08-26T20:45:27.6206743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_wrapper_mps.py 2025-08-26T20:45:27.6209116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpu_device_op_overrides.py 2025-08-26T20:45:27.6212699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda_combined_scheduling.py 2025-08-26T20:45:27.6216181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\debug_utils.py 2025-08-26T20:45:27.6223876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\halide.py 2025-08-26T20:45:27.6227623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\memory_planning.py 2025-08-26T20:45:27.6231215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\mps.py 2025-08-26T20:45:27.6234912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\mps_device_op_overrides.py 2025-08-26T20:45:27.6238680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\multi_kernel.py 2025-08-26T20:45:27.6242196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\python_wrapper_mtia.py 2025-08-26T20:45:27.6245831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\segmented_tree.py 2025-08-26T20:45:27.6249204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\simd.py 2025-08-26T20:45:27.6253222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\simd_kernel_features.py 2025-08-26T20:45:27.6257035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\subgraph.py 2025-08-26T20:45:27.6260448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\triton.py 2025-08-26T20:45:27.6265591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\triton_combo_kernel.py 2025-08-26T20:45:27.6273479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\triton_split_scan.py 2025-08-26T20:45:27.6277141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\triton_utils.py 2025-08-26T20:45:27.6280599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\wrapper.py 2025-08-26T20:45:27.6284612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\wrapper_fxir.py 2025-08-26T20:45:27.6288363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__init__.py 2025-08-26T20:45:27.6295587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\aoti_runtime\interface.cpp 2025-08-26T20:45:27.6303194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cuda_cpp_scheduling.py 2025-08-26T20:45:27.6306766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cuda_env.py 2025-08-26T20:45:27.6310627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cuda_kernel.py 2025-08-26T20:45:27.6314044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cuda_template.py 2025-08-26T20:45:27.6322289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_cache.py 2025-08-26T20:45:27.6325842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_presets.py 2025-08-26T20:45:27.6329425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_python_evt.py 2025-08-26T20:45:27.6332916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_utils.py 2025-08-26T20:45:27.6336434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\device_op_overrides.py 2025-08-26T20:45:27.6339924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\gemm_template.py 2025-08-26T20:45:27.6343982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\serialization.py 2025-08-26T20:45:27.6347503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__init__.py 2025-08-26T20:45:27.6355235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\evt_extensions.py 2025-08-26T20:45:27.6358764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\gemm_operation_extensions.py 2025-08-26T20:45:27.6362216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\__init__.py 2025-08-26T20:45:27.6373197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\__init__.py 2025-08-26T20:45:27.6379185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda\cuda.py 2025-08-26T20:45:27.6382833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda\cudart.py 2025-08-26T20:45:27.6386311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda\__init__.py 2025-08-26T20:45:27.6393364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda\__pycache__\cuda.cpython-39.pyc 2025-08-26T20:45:27.6397021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda\__pycache__\cudart.cpython-39.pyc 2025-08-26T20:45:27.6400740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.6412546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\pydot\__init__.py 2025-08-26T20:45:27.6419874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\pydot\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.6428567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\scipy\special.py 2025-08-26T20:45:27.6431103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\scipy\__init__.py 2025-08-26T20:45:27.6438550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\scipy\__pycache__\special.cpython-39.pyc 2025-08-26T20:45:27.6442596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\scipy\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.6454454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.6463690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\__pycache__\evt_extensions.cpython-39.pyc 2025-08-26T20:45:27.6466889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\__pycache__\gemm_operation_extensions.cpython-39.pyc 2025-08-26T20:45:27.6470992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.6483811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cuda_cpp_scheduling.cpython-39.pyc 2025-08-26T20:45:27.6487482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cuda_env.cpython-39.pyc 2025-08-26T20:45:27.6492198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cuda_kernel.cpython-39.pyc 2025-08-26T20:45:27.6499908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cuda_template.cpython-39.pyc 2025-08-26T20:45:27.6503822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cutlass_cache.cpython-39.pyc 2025-08-26T20:45:27.6507422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cutlass_presets.cpython-39.pyc 2025-08-26T20:45:27.6511503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cutlass_python_evt.cpython-39.pyc 2025-08-26T20:45:27.6515580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cutlass_utils.cpython-39.pyc 2025-08-26T20:45:27.6519009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\device_op_overrides.cpython-39.pyc 2025-08-26T20:45:27.6522945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\gemm_template.cpython-39.pyc 2025-08-26T20:45:27.6527122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\serialization.cpython-39.pyc 2025-08-26T20:45:27.6530451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.6538888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cutedsl\cutedsl_kernel.py 2025-08-26T20:45:27.6542351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cutedsl\cutedsl_scheduling.py 2025-08-26T20:45:27.6546479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cutedsl\cutedsl_template.py 2025-08-26T20:45:27.6550225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cutedsl\__init__.py 2025-08-26T20:45:27.6562319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cutedsl\__pycache__\cutedsl_kernel.cpython-39.pyc 2025-08-26T20:45:27.6566879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cutedsl\__pycache__\cutedsl_scheduling.cpython-39.pyc 2025-08-26T20:45:27.6569511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cutedsl\__pycache__\cutedsl_template.cpython-39.pyc 2025-08-26T20:45:27.6577159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cutedsl\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.6585191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\mtia\device_op_overrides.py 2025-08-26T20:45:27.6589329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\mtia\__init__.py 2025-08-26T20:45:27.6595927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\mtia\__pycache__\device_op_overrides.cpython-39.pyc 2025-08-26T20:45:27.6598658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\mtia\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.6606713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\ck_conv_template.py 2025-08-26T20:45:27.6610221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\ck_template.py 2025-08-26T20:45:27.6613776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\ck_tile_template.py 2025-08-26T20:45:27.6617470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\ck_tile_universal_gemm_template.py 2025-08-26T20:45:27.6625457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\ck_universal_gemm_template.py 2025-08-26T20:45:27.6643917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\compile_command.py 2025-08-26T20:45:27.6647411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\rocm_benchmark_request.py 2025-08-26T20:45:27.6650944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\rocm_cpp_scheduling.py 2025-08-26T20:45:27.6654490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\rocm_kernel.py 2025-08-26T20:45:27.6658146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\rocm_template.py 2025-08-26T20:45:27.6661785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\rocm_template_buffer.py 2025-08-26T20:45:27.6665858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\rocm_utils.py 2025-08-26T20:45:27.6669265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__init__.py 2025-08-26T20:45:27.6675926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\ck_conv_template.cpython-39.pyc 2025-08-26T20:45:27.6679732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\ck_template.cpython-39.pyc 2025-08-26T20:45:27.6683263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\ck_tile_template.cpython-39.pyc 2025-08-26T20:45:27.6691826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\ck_tile_universal_gemm_template.cpython-39.pyc 2025-08-26T20:45:27.6695760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\ck_universal_gemm_template.cpython-39.pyc 2025-08-26T20:45:27.6699608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\compile_command.cpython-39.pyc 2025-08-26T20:45:27.6703898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\rocm_benchmark_request.cpython-39.pyc 2025-08-26T20:45:27.6707487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\rocm_cpp_scheduling.cpython-39.pyc 2025-08-26T20:45:27.6711105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\rocm_kernel.cpython-39.pyc 2025-08-26T20:45:27.6714656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\rocm_template.cpython-39.pyc 2025-08-26T20:45:27.6718225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\rocm_template_buffer.cpython-39.pyc 2025-08-26T20:45:27.6722108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\rocm_utils.cpython-39.pyc 2025-08-26T20:45:27.6726760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.6734153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\xpu\device_op_overrides.py 2025-08-26T20:45:27.6737640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\xpu\__init__.py 2025-08-26T20:45:27.6743875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\xpu\__pycache__\device_op_overrides.cpython-39.pyc 2025-08-26T20:45:27.6747468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\xpu\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.6755888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\aoti_hipify_utils.cpython-39.pyc 2025-08-26T20:45:27.6759487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\block_analysis.cpython-39.pyc 2025-08-26T20:45:27.6762988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\common.cpython-39.pyc 2025-08-26T20:45:27.6770989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp.cpython-39.pyc 2025-08-26T20:45:27.6775562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_bmm_template.cpython-39.pyc 2025-08-26T20:45:27.6779222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_flex_attention_template.cpython-39.pyc 2025-08-26T20:45:27.6783342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_gemm_template.cpython-39.pyc 2025-08-26T20:45:27.6787271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_grouped_gemm_template.cpython-39.pyc 2025-08-26T20:45:27.6790877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_micro_gemm.cpython-39.pyc 2025-08-26T20:45:27.6795033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_template.cpython-39.pyc 2025-08-26T20:45:27.6798584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_template_kernel.cpython-39.pyc 2025-08-26T20:45:27.6802204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_utils.cpython-39.pyc 2025-08-26T20:45:27.6805848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_wrapper_cpu.cpython-39.pyc 2025-08-26T20:45:27.6809994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_wrapper_cpu_array_ref.cpython-39.pyc 2025-08-26T20:45:27.6813629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_wrapper_gpu.cpython-39.pyc 2025-08-26T20:45:27.6817360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_wrapper_mps.cpython-39.pyc 2025-08-26T20:45:27.6825318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpu_device_op_overrides.cpython-39.pyc 2025-08-26T20:45:27.6828951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cuda_combined_scheduling.cpython-39.pyc 2025-08-26T20:45:27.6832470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\debug_utils.cpython-39.pyc 2025-08-26T20:45:27.6836246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\halide.cpython-39.pyc 2025-08-26T20:45:27.6840210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\memory_planning.cpython-39.pyc 2025-08-26T20:45:27.6843960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\mps.cpython-39.pyc 2025-08-26T20:45:27.6847739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\mps_device_op_overrides.cpython-39.pyc 2025-08-26T20:45:27.6851425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\multi_kernel.cpython-39.pyc 2025-08-26T20:45:27.6858670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\python_wrapper_mtia.cpython-39.pyc 2025-08-26T20:45:27.6862354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\segmented_tree.cpython-39.pyc 2025-08-26T20:45:27.6866177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\simd.cpython-39.pyc 2025-08-26T20:45:27.6870388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\simd_kernel_features.cpython-39.pyc 2025-08-26T20:45:27.6874022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\subgraph.cpython-39.pyc 2025-08-26T20:45:27.6877542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\triton.cpython-39.pyc 2025-08-26T20:45:27.6882483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\triton_combo_kernel.cpython-39.pyc 2025-08-26T20:45:27.6886488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\triton_split_scan.cpython-39.pyc 2025-08-26T20:45:27.6894007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\triton_utils.cpython-39.pyc 2025-08-26T20:45:27.6898368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\wrapper.cpython-39.pyc 2025-08-26T20:45:27.6902781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\wrapper_fxir.cpython-39.pyc 2025-08-26T20:45:27.6907337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.6916619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\subproc_pool.py 2025-08-26T20:45:27.6920340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\tracked_process_pool.py 2025-08-26T20:45:27.6924512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\utils.py 2025-08-26T20:45:27.6927264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\__init__.py 2025-08-26T20:45:27.6933963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\__main__.py 2025-08-26T20:45:27.6942036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\__pycache__\subproc_pool.cpython-39.pyc 2025-08-26T20:45:27.6945639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\__pycache__\tracked_process_pool.cpython-39.pyc 2025-08-26T20:45:27.6949750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:27.6958977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.6961731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\__pycache__\__main__.cpython-39.pyc 2025-08-26T20:45:27.6970753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\b2b_gemm.py 2025-08-26T20:45:27.6974179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\binary_folding.py 2025-08-26T20:45:27.6978250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\bucketing.py 2025-08-26T20:45:27.6982129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\ddp_fusion.py 2025-08-26T20:45:27.6989888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\decompose_mem_bound_mm.py 2025-08-26T20:45:27.6993641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\dedupe_symint_uses.py 2025-08-26T20:45:27.6997030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\efficient_conv_bn_eval.py 2025-08-26T20:45:27.7000933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\freezing_patterns.py 2025-08-26T20:45:27.7005078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\fsdp.py 2025-08-26T20:45:27.7008103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\fuse_attention.py 2025-08-26T20:45:27.7012149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\group_batch_fusion.py 2025-08-26T20:45:27.7016542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\joint_graph.py 2025-08-26T20:45:27.7019771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\micro_pipeline_tp.py 2025-08-26T20:45:27.7024068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\misc_patterns.py 2025-08-26T20:45:27.7028103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\mkldnn_fusion.py 2025-08-26T20:45:27.7031481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\numeric_utils.py 2025-08-26T20:45:27.7035514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\pad_mm.py 2025-08-26T20:45:27.7039491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\post_grad.py 2025-08-26T20:45:27.7043020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\pre_grad.py 2025-08-26T20:45:27.7046941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\quantization.py 2025-08-26T20:45:27.7051594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\reinplace.py 2025-08-26T20:45:27.7059901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\replace_random.py 2025-08-26T20:45:27.7064319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\split_cat.py 2025-08-26T20:45:27.7068814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__init__.py 2025-08-26T20:45:27.7077960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\addmm_pattern.py 2025-08-26T20:45:27.7081910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\bmm_pattern.py 2025-08-26T20:45:27.7085672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\mm_pattern.py 2025-08-26T20:45:27.7093218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_1.py 2025-08-26T20:45:27.7096722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_10.py 2025-08-26T20:45:27.7100335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_11.py 2025-08-26T20:45:27.7104040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_12.py 2025-08-26T20:45:27.7107707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_13.py 2025-08-26T20:45:27.7111477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_14.py 2025-08-26T20:45:27.7115293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_15.py 2025-08-26T20:45:27.7118978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_16.py 2025-08-26T20:45:27.7122973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_17.py 2025-08-26T20:45:27.7126690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_18.py 2025-08-26T20:45:27.7131379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_19.py 2025-08-26T20:45:27.7134107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_2.py 2025-08-26T20:45:27.7137887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_20.py 2025-08-26T20:45:27.7181668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_21.py 2025-08-26T20:45:27.7181998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_22.py 2025-08-26T20:45:27.7182325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_23.py 2025-08-26T20:45:27.7182729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_24.py 2025-08-26T20:45:27.7183044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_3.py 2025-08-26T20:45:27.7183369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_4.py 2025-08-26T20:45:27.7183678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_5.py 2025-08-26T20:45:27.7183991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_6.py 2025-08-26T20:45:27.7184309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_7.py 2025-08-26T20:45:27.7185051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_8.py 2025-08-26T20:45:27.7188962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_9.py 2025-08-26T20:45:27.7193921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__init__.py 2025-08-26T20:45:27.7202868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\addmm_pattern.cpython-39.pyc 2025-08-26T20:45:27.7206855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\bmm_pattern.cpython-39.pyc 2025-08-26T20:45:27.7210369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\mm_pattern.cpython-39.pyc 2025-08-26T20:45:27.7218467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_1.cpython-39.pyc 2025-08-26T20:45:27.7222251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_10.cpython-39.pyc 2025-08-26T20:45:27.7225952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_11.cpython-39.pyc 2025-08-26T20:45:27.7229527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_12.cpython-39.pyc 2025-08-26T20:45:27.7233363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_13.cpython-39.pyc 2025-08-26T20:45:27.7237167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_14.cpython-39.pyc 2025-08-26T20:45:27.7240784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_15.cpython-39.pyc 2025-08-26T20:45:27.7244400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_16.cpython-39.pyc 2025-08-26T20:45:27.7248313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_17.cpython-39.pyc 2025-08-26T20:45:27.7252051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_18.cpython-39.pyc 2025-08-26T20:45:27.7256124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_19.cpython-39.pyc 2025-08-26T20:45:27.7259847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_2.cpython-39.pyc 2025-08-26T20:45:27.7264551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_20.cpython-39.pyc 2025-08-26T20:45:27.7272289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_21.cpython-39.pyc 2025-08-26T20:45:27.7276122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_22.cpython-39.pyc 2025-08-26T20:45:27.7279836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_23.cpython-39.pyc 2025-08-26T20:45:27.7283502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_24.cpython-39.pyc 2025-08-26T20:45:27.7287319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_3.cpython-39.pyc 2025-08-26T20:45:27.7290977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_4.cpython-39.pyc 2025-08-26T20:45:27.7294876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_5.cpython-39.pyc 2025-08-26T20:45:27.7298742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_6.cpython-39.pyc 2025-08-26T20:45:27.7302816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_7.cpython-39.pyc 2025-08-26T20:45:27.7306778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_8.cpython-39.pyc 2025-08-26T20:45:27.7310613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_9.cpython-39.pyc 2025-08-26T20:45:27.7314291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.7325503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\b2b_gemm.cpython-39.pyc 2025-08-26T20:45:27.7329257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\binary_folding.cpython-39.pyc 2025-08-26T20:45:27.7333911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\bucketing.cpython-39.pyc 2025-08-26T20:45:27.7342465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\ddp_fusion.cpython-39.pyc 2025-08-26T20:45:27.7346053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\decompose_mem_bound_mm.cpython-39.pyc 2025-08-26T20:45:27.7349553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\dedupe_symint_uses.cpython-39.pyc 2025-08-26T20:45:27.7353158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\efficient_conv_bn_eval.cpython-39.pyc 2025-08-26T20:45:27.7356682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\freezing_patterns.cpython-39.pyc 2025-08-26T20:45:27.7360769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\fsdp.cpython-39.pyc 2025-08-26T20:45:27.7364357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\fuse_attention.cpython-39.pyc 2025-08-26T20:45:27.7367971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\group_batch_fusion.cpython-39.pyc 2025-08-26T20:45:27.7371657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\joint_graph.cpython-39.pyc 2025-08-26T20:45:27.7375271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\micro_pipeline_tp.cpython-39.pyc 2025-08-26T20:45:27.7378901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\misc_patterns.cpython-39.pyc 2025-08-26T20:45:27.7382580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\mkldnn_fusion.cpython-39.pyc 2025-08-26T20:45:27.7386538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\numeric_utils.cpython-39.pyc 2025-08-26T20:45:27.7395006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\pad_mm.cpython-39.pyc 2025-08-26T20:45:27.7398583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\post_grad.cpython-39.pyc 2025-08-26T20:45:27.7402966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\pre_grad.cpython-39.pyc 2025-08-26T20:45:27.7406880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\quantization.cpython-39.pyc 2025-08-26T20:45:27.7410932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\reinplace.cpython-39.pyc 2025-08-26T20:45:27.7414617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\replace_random.cpython-39.pyc 2025-08-26T20:45:27.7418378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\split_cat.cpython-39.pyc 2025-08-26T20:45:27.7422470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.7431228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\bmm.py 2025-08-26T20:45:27.7435120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\conv.py 2025-08-26T20:45:27.7438576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\mm.py 2025-08-26T20:45:27.7442384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\mm_common.py 2025-08-26T20:45:27.7445858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\mm_grouped.py 2025-08-26T20:45:27.7454073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\mm_plus_mm.py 2025-08-26T20:45:27.7457716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__init__.py 2025-08-26T20:45:27.7464677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\common.py 2025-08-26T20:45:27.7468078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\flex_attention.py 2025-08-26T20:45:27.7471548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\flex_cpu.py 2025-08-26T20:45:27.7474817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\flex_decoding.py 2025-08-26T20:45:27.7478186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\__init__.py 2025-08-26T20:45:27.7489620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\templates\common.py.jinja 2025-08-26T20:45:27.7493402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\templates\flex_attention.py.jinja 2025-08-26T20:45:27.7496789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\templates\flex_backwards.py.jinja 2025-08-26T20:45:27.7505691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\templates\flex_decode.py.jinja 2025-08-26T20:45:27.7509203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\templates\utilities.py.jinja 2025-08-26T20:45:27.7516700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\__pycache__\common.cpython-39.pyc 2025-08-26T20:45:27.7520268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\__pycache__\flex_attention.cpython-39.pyc 2025-08-26T20:45:27.7523823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\__pycache__\flex_cpu.cpython-39.pyc 2025-08-26T20:45:27.7531200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\__pycache__\flex_decoding.cpython-39.pyc 2025-08-26T20:45:27.7534664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.7542503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__pycache__\bmm.cpython-39.pyc 2025-08-26T20:45:27.7546084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__pycache__\conv.cpython-39.pyc 2025-08-26T20:45:27.7549597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__pycache__\mm.cpython-39.pyc 2025-08-26T20:45:27.7558015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__pycache__\mm_common.cpython-39.pyc 2025-08-26T20:45:27.7561512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__pycache__\mm_grouped.cpython-39.pyc 2025-08-26T20:45:27.7565359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__pycache__\mm_plus_mm.cpython-39.pyc 2025-08-26T20:45:27.7568795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.7576784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\package\build_package.py 2025-08-26T20:45:27.7580230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\package\package.py 2025-08-26T20:45:27.7583592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\package\__init__.py 2025-08-26T20:45:27.7590717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\package\__pycache__\build_package.cpython-39.pyc 2025-08-26T20:45:27.7594380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\package\__pycache__\package.cpython-39.pyc 2025-08-26T20:45:27.7598017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\package\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.7610368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\autotune_cache.py 2025-08-26T20:45:27.7613779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\benchmarking.py 2025-08-26T20:45:27.7617153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\cache_dir_utils.py 2025-08-26T20:45:27.7620581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\compile_tasks.py 2025-08-26T20:45:27.7628823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\coordinate_descent_tuner.py 2025-08-26T20:45:27.7632283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\debug_utils.py 2025-08-26T20:45:27.7635674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\halide_helpers.py 2025-08-26T20:45:27.7639118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\hints.py 2025-08-26T20:45:27.7642444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\runtime_utils.py 2025-08-26T20:45:27.7645868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\static_cuda_launcher.py 2025-08-26T20:45:27.7649253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\triton_compat.py 2025-08-26T20:45:27.7657140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\triton_helpers.py 2025-08-26T20:45:27.7657404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\triton_heuristics.py 2025-08-26T20:45:27.7661143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__init__.py 2025-08-26T20:45:27.7668762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\autotune_cache.cpython-39.pyc 2025-08-26T20:45:27.7672420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\benchmarking.cpython-39.pyc 2025-08-26T20:45:27.7676953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\cache_dir_utils.cpython-39.pyc 2025-08-26T20:45:27.7685599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\compile_tasks.cpython-39.pyc 2025-08-26T20:45:27.7689425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\coordinate_descent_tuner.cpython-39.pyc 2025-08-26T20:45:27.7693492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\debug_utils.cpython-39.pyc 2025-08-26T20:45:27.7702131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\halide_helpers.cpython-39.pyc 2025-08-26T20:45:27.7702733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\hints.cpython-39.pyc 2025-08-26T20:45:27.7706607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\runtime_utils.cpython-39.pyc 2025-08-26T20:45:27.7710826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\static_cuda_launcher.cpython-39.pyc 2025-08-26T20:45:27.7750182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\triton_compat.cpython-39.pyc 2025-08-26T20:45:27.7750522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\triton_helpers.cpython-39.pyc 2025-08-26T20:45:27.7750858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\triton_heuristics.cpython-39.pyc 2025-08-26T20:45:27.7751168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.7762654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\analyze_preserves_zero_mask.cpython-39.pyc 2025-08-26T20:45:27.7768650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\aoti_eager.cpython-39.pyc 2025-08-26T20:45:27.7772005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\async_compile.cpython-39.pyc 2025-08-26T20:45:27.8131220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\autotune_process.cpython-39.pyc 2025-08-26T20:45:27.8134669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\await_utils.cpython-39.pyc 2025-08-26T20:45:27.8138504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\bounds.cpython-39.pyc 2025-08-26T20:45:27.8142106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\choices.cpython-39.pyc 2025-08-26T20:45:27.8145780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\codecache.cpython-39.pyc 2025-08-26T20:45:27.8149772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\comms.cpython-39.pyc 2025-08-26T20:45:27.8153648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\comms_debug.cpython-39.pyc 2025-08-26T20:45:27.8157149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\comm_analysis.cpython-39.pyc 2025-08-26T20:45:27.8160606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\comm_lowering.cpython-39.pyc 2025-08-26T20:45:27.8164284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\compiler_bisector.cpython-39.pyc 2025-08-26T20:45:27.8167845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\compile_fx.cpython-39.pyc 2025-08-26T20:45:27.8171804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\compile_fx_async.cpython-39.pyc 2025-08-26T20:45:27.8175538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\compile_fx_ext.cpython-39.pyc 2025-08-26T20:45:27.8888111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\compile_fx_subproc.cpython-39.pyc 2025-08-26T20:45:27.8891571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\config.cpython-39.pyc 2025-08-26T20:45:27.8895320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\constant_folding.cpython-39.pyc 2025-08-26T20:45:27.8899089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\cpp_builder.cpython-39.pyc 2025-08-26T20:45:27.8902909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\cpu_vec_isa.cpython-39.pyc 2025-08-26T20:45:27.8906581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\cudagraph_trees.cpython-39.pyc 2025-08-26T20:45:27.8910353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\cudagraph_utils.cpython-39.pyc 2025-08-26T20:45:27.8913937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\custom_graph_pass.cpython-39.pyc 2025-08-26T20:45:27.9474195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\debug.cpython-39.pyc 2025-08-26T20:45:27.9477669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\decomposition.cpython-39.pyc 2025-08-26T20:45:27.9481836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\dependencies.cpython-39.pyc 2025-08-26T20:45:27.9485898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\dtype_propagation.cpython-39.pyc 2025-08-26T20:45:27.9489186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\exc.cpython-39.pyc 2025-08-26T20:45:27.9492800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\extern_node_serializer.cpython-39.pyc 2025-08-26T20:45:27.9496427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\freezing.cpython-39.pyc 2025-08-26T20:45:27.9500199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\freezing_utils.cpython-39.pyc 2025-08-26T20:45:27.9504178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\fuzzer.cpython-39.pyc 2025-08-26T20:45:27.9512183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\fx_utils.cpython-39.pyc 2025-08-26T20:45:27.9515770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\graph.cpython-39.pyc 2025-08-26T20:45:27.9519572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\hooks.cpython-39.pyc 2025-08-26T20:45:27.9523244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\index_propagation.cpython-39.pyc 2025-08-26T20:45:27.9526816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\inductor_prims.cpython-39.pyc 2025-08-26T20:45:27.9530337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\ir.cpython-39.pyc 2025-08-26T20:45:27.9535454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\jagged_lowerings.cpython-39.pyc 2025-08-26T20:45:27.9539320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\kernel_inputs.cpython-39.pyc 2025-08-26T20:45:27.9551125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\loop_body.cpython-39.pyc 2025-08-26T20:45:27.9554192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\lowering.cpython-39.pyc 2025-08-26T20:45:27.9558891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\memory.cpython-39.pyc 2025-08-26T20:45:27.9562577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\metrics.cpython-39.pyc 2025-08-26T20:45:27.9566204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\mkldnn_ir.cpython-39.pyc 2025-08-26T20:45:27.9570091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\mkldnn_lowerings.cpython-39.pyc 2025-08-26T20:45:27.9574082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\mock_cache.cpython-39.pyc 2025-08-26T20:45:27.9577789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\ops_handler.cpython-39.pyc 2025-08-26T20:45:27.9587327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\optimize_indexing.cpython-39.pyc 2025-08-26T20:45:27.9591112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\output_code.cpython-39.pyc 2025-08-26T20:45:27.9594955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\pattern_matcher.cpython-39.pyc 2025-08-26T20:45:27.9599330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\quantized_lowerings.cpython-39.pyc 2025-08-26T20:45:27.9603241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\remote_cache.cpython-39.pyc 2025-08-26T20:45:27.9607311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\remote_gemm_autotune_cache.cpython-39.pyc 2025-08-26T20:45:27.9612072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\scheduler.cpython-39.pyc 2025-08-26T20:45:27.9616540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\select_algorithm.cpython-39.pyc 2025-08-26T20:45:27.9625390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\shape_propagation.cpython-39.pyc 2025-08-26T20:45:27.9628986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\sizevars.cpython-39.pyc 2025-08-26T20:45:27.9633891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\standalone_compile.cpython-39.pyc 2025-08-26T20:45:27.9637540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\subgraph_lowering.cpython-39.pyc 2025-08-26T20:45:27.9641079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\template_heuristics.cpython-39.pyc 2025-08-26T20:45:27.9645044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\template_registry.cpython-39.pyc 2025-08-26T20:45:27.9648810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\test_case.cpython-39.pyc 2025-08-26T20:45:27.9652492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\test_operators.cpython-39.pyc 2025-08-26T20:45:27.9656261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\tiling_utils.cpython-39.pyc 2025-08-26T20:45:27.9665056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\triton_bundler.cpython-39.pyc 2025-08-26T20:45:27.9669162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:27.9673994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\virtualized.cpython-39.pyc 2025-08-26T20:45:27.9678011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\wrapper_benchmark.cpython-39.pyc 2025-08-26T20:45:27.9681960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\__autotune_main__.cpython-39.pyc 2025-08-26T20:45:27.9685918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.9697082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\closure.py 2025-08-26T20:45:27.9700755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\computation.py 2025-08-26T20:45:27.9704546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\config.py 2025-08-26T20:45:27.9707776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\debug.py 2025-08-26T20:45:27.9711157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\device_context.py 2025-08-26T20:45:27.9719492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\extract_compiled_graph.py 2025-08-26T20:45:27.9722925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\ir_cache.py 2025-08-26T20:45:27.9726396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\metrics.py 2025-08-26T20:45:27.9729827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\tensor_factory_functions.py 2025-08-26T20:45:27.9733246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\ts_backend.py 2025-08-26T20:45:27.9737191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__init__.py 2025-08-26T20:45:27.9744748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\closure.cpython-39.pyc 2025-08-26T20:45:27.9748261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\computation.cpython-39.pyc 2025-08-26T20:45:27.9751792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\config.cpython-39.pyc 2025-08-26T20:45:27.9759066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\debug.cpython-39.pyc 2025-08-26T20:45:27.9762667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\device_context.cpython-39.pyc 2025-08-26T20:45:27.9766289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\extract_compiled_graph.cpython-39.pyc 2025-08-26T20:45:27.9769897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\ir_cache.cpython-39.pyc 2025-08-26T20:45:27.9773615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\metrics.cpython-39.pyc 2025-08-26T20:45:27.9777232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\tensor_factory_functions.cpython-39.pyc 2025-08-26T20:45:27.9780798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\ts_backend.cpython-39.pyc 2025-08-26T20:45:27.9784478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.9796764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\autograd.py 2025-08-26T20:45:27.9800354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\custom_ops.py 2025-08-26T20:45:27.9803909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\fake_class_registry.py 2025-08-26T20:45:27.9807250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\fake_impl.py 2025-08-26T20:45:27.9814908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\fake_profile.py 2025-08-26T20:45:27.9818294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\infer_schema.py 2025-08-26T20:45:27.9821697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\simple_registry.py 2025-08-26T20:45:27.9825214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\triton.py 2025-08-26T20:45:27.9828533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\utils.py 2025-08-26T20:45:27.9831861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__init__.py 2025-08-26T20:45:27.9839204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\autograd.cpython-39.pyc 2025-08-26T20:45:27.9842787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\custom_ops.cpython-39.pyc 2025-08-26T20:45:27.9846485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\fake_class_registry.cpython-39.pyc 2025-08-26T20:45:27.9855436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\fake_impl.cpython-39.pyc 2025-08-26T20:45:27.9858956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\fake_profile.cpython-39.pyc 2025-08-26T20:45:27.9862430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\infer_schema.cpython-39.pyc 2025-08-26T20:45:27.9866014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\simple_registry.cpython-39.pyc 2025-08-26T20:45:27.9869832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\triton.cpython-39.pyc 2025-08-26T20:45:27.9873375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:27.9876901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.9884611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\scribe.py 2025-08-26T20:45:27.9887940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\structured.py 2025-08-26T20:45:27.9891306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\_internal.py 2025-08-26T20:45:27.9894925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\_registrations.py 2025-08-26T20:45:27.9903231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\__init__.py 2025-08-26T20:45:27.9910291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\__pycache__\scribe.cpython-39.pyc 2025-08-26T20:45:27.9913940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\__pycache__\structured.cpython-39.pyc 2025-08-26T20:45:27.9917758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\__pycache__\_internal.cpython-39.pyc 2025-08-26T20:45:27.9926238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\__pycache__\_registrations.cpython-39.pyc 2025-08-26T20:45:27.9929673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:27.9937579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\fft.py 2025-08-26T20:45:27.9940937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\linalg.py 2025-08-26T20:45:27.9944325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\random.py 2025-08-26T20:45:27.9947680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_binary_ufuncs_impl.py 2025-08-26T20:45:27.9951085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_casting_dicts.py 2025-08-26T20:45:27.9958941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_dtypes.py 2025-08-26T20:45:27.9962228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_dtypes_impl.py 2025-08-26T20:45:27.9965545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_funcs.py 2025-08-26T20:45:27.9968896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_funcs_impl.py 2025-08-26T20:45:27.9972829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_getlimits.py 2025-08-26T20:45:27.9976243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_ndarray.py 2025-08-26T20:45:27.9979817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_normalizations.py 2025-08-26T20:45:27.9983475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_reductions_impl.py 2025-08-26T20:45:27.9986993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_ufuncs.py 2025-08-26T20:45:27.9990342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_unary_ufuncs_impl.py 2025-08-26T20:45:27.9993816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_util.py 2025-08-26T20:45:27.9997048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__init__.py 2025-08-26T20:45:28.0003784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\testing\utils.py 2025-08-26T20:45:28.0007561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\testing\__init__.py 2025-08-26T20:45:28.0014916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\testing\__pycache__\utils.cpython-39.pyc 2025-08-26T20:45:28.0018706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\testing\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:28.0026678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\fft.cpython-39.pyc 2025-08-26T20:45:28.0030187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\linalg.cpython-39.pyc 2025-08-26T20:45:28.0033673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\random.cpython-39.pyc 2025-08-26T20:45:28.0042053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_binary_ufuncs_impl.cpython-39.pyc 2025-08-26T20:45:28.0045611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_casting_dicts.cpython-39.pyc 2025-08-26T20:45:28.0049325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_dtypes.cpython-39.pyc 2025-08-26T20:45:28.0052778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_dtypes_impl.cpython-39.pyc 2025-08-26T20:45:28.0056662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_funcs.cpython-39.pyc 2025-08-26T20:45:28.0059970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_funcs_impl.cpython-39.pyc 2025-08-26T20:45:28.0063920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_getlimits.cpython-39.pyc 2025-08-26T20:45:28.0067572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_ndarray.cpython-39.pyc 2025-08-26T20:45:28.0071617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_normalizations.cpython-39.pyc 2025-08-26T20:45:28.0075946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_reductions_impl.cpython-39.pyc 2025-08-26T20:45:28.0080857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_ufuncs.cpython-39.pyc 2025-08-26T20:45:28.0085893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_unary_ufuncs_impl.cpython-39.pyc 2025-08-26T20:45:28.0091235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_util.cpython-39.pyc 2025-08-26T20:45:28.0096168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:28.0110159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\context.py 2025-08-26T20:45:28.0113467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\debug_prims.py 2025-08-26T20:45:28.0116869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\executor.py 2025-08-26T20:45:28.0120692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\rng_prims.py 2025-08-26T20:45:28.0124722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\__init__.py 2025-08-26T20:45:28.0136208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\__pycache__\context.cpython-39.pyc 2025-08-26T20:45:28.0139760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\__pycache__\debug_prims.cpython-39.pyc 2025-08-26T20:45:28.0144149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\__pycache__\executor.cpython-39.pyc 2025-08-26T20:45:28.0151888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\__pycache__\rng_prims.cpython-39.pyc 2025-08-26T20:45:28.0155852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:28.0164618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims_common\wrappers.py 2025-08-26T20:45:28.0167974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims_common\__init__.py 2025-08-26T20:45:28.0175679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims_common\__pycache__\wrappers.cpython-39.pyc 2025-08-26T20:45:28.0179446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims_common\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:28.0187637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\fft.py 2025-08-26T20:45:28.0191128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\_conversions.py 2025-08-26T20:45:28.0194547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\__init__.py 2025-08-26T20:45:28.0202688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\linalg\__init__.py 2025-08-26T20:45:28.0209824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\linalg\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:28.0217964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\nn\__init__.py 2025-08-26T20:45:28.0224821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\nn\functional\__init__.py 2025-08-26T20:45:28.0231858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\nn\functional\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:28.0239607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\nn\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:28.0251226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\special\__init__.py 2025-08-26T20:45:28.0258206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\special\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:28.0265716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\__pycache__\fft.cpython-39.pyc 2025-08-26T20:45:28.0269285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\__pycache__\_conversions.cpython-39.pyc 2025-08-26T20:45:28.0272858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:28.0286662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_strobelight\cli_function_profiler.py 2025-08-26T20:45:28.0290213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_strobelight\compile_time_profiler.py 2025-08-26T20:45:28.0300361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_strobelight\__init__.py 2025-08-26T20:45:28.0307135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_strobelight\__pycache__\cli_function_profiler.cpython-39.pyc 2025-08-26T20:45:28.0310608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_strobelight\__pycache__\compile_time_profiler.cpython-39.pyc 2025-08-26T20:45:28.0314159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_strobelight\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:28.0326901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\fake_impls.py 2025-08-26T20:45:28.0330563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\fake_tensor.py 2025-08-26T20:45:28.0335280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\fake_utils.py 2025-08-26T20:45:28.0343571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\functional_tensor.py 2025-08-26T20:45:28.0347268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\meta_utils.py 2025-08-26T20:45:28.0352117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\schema_check_mode.py 2025-08-26T20:45:28.0355764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\_fake_tensor_utils.py 2025-08-26T20:45:28.0359421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__init__.py 2025-08-26T20:45:28.0366959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\fake_impls.cpython-39.pyc 2025-08-26T20:45:28.0370628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\fake_tensor.cpython-39.pyc 2025-08-26T20:45:28.0374641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\fake_utils.cpython-39.pyc 2025-08-26T20:45:28.0382888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\functional_tensor.cpython-39.pyc 2025-08-26T20:45:28.0386671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\meta_utils.cpython-39.pyc 2025-08-26T20:45:28.0390447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\schema_check_mode.cpython-39.pyc 2025-08-26T20:45:28.0394052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\_fake_tensor_utils.cpython-39.pyc 2025-08-26T20:45:28.0397728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:28.0406210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\__init__.py 2025-08-26T20:45:28.0412145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\packaging\version.py 2025-08-26T20:45:28.0415568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\packaging\_structures.py 2025-08-26T20:45:28.0419008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\packaging\__init__.py 2025-08-26T20:45:28.0430111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\packaging\__pycache__\version.cpython-39.pyc 2025-08-26T20:45:28.0434483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\packaging\__pycache__\_structures.cpython-39.pyc 2025-08-26T20:45:28.0438047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\packaging\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:28.0449833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:28.0458444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\functional.cpython-39.pyc 2025-08-26T20:45:28.0477652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\hub.cpython-39.pyc 2025-08-26T20:45:28.0480996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\library.cpython-39.pyc 2025-08-26T20:45:28.0489202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\overrides.cpython-39.pyc 2025-08-26T20:45:28.0493667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\quasirandom.cpython-39.pyc 2025-08-26T20:45:28.0497242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\random.cpython-39.pyc 2025-08-26T20:45:28.0500769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\return_types.cpython-39.pyc 2025-08-26T20:45:28.0504502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\serialization.cpython-39.pyc 2025-08-26T20:45:28.0508385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\storage.cpython-39.pyc 2025-08-26T20:45:28.0512370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\torch_version.cpython-39.pyc 2025-08-26T20:45:28.0516193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\types.cpython-39.pyc 2025-08-26T20:45:28.0519820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\version.cpython-39.pyc 2025-08-26T20:45:28.0523408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_appdirs.cpython-39.pyc 2025-08-26T20:45:28.0527049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_classes.cpython-39.pyc 2025-08-26T20:45:28.0530666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_compile.cpython-39.pyc 2025-08-26T20:45:28.0534280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_custom_ops.cpython-39.pyc 2025-08-26T20:45:28.0538101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_environment.cpython-39.pyc 2025-08-26T20:45:28.0545823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_guards.cpython-39.pyc 2025-08-26T20:45:28.0550256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_jit_internal.cpython-39.pyc 2025-08-26T20:45:28.0554399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_linalg_utils.cpython-39.pyc 2025-08-26T20:45:28.0558031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_lobpcg.cpython-39.pyc 2025-08-26T20:45:28.0561645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_lowrank.cpython-39.pyc 2025-08-26T20:45:28.0565360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_meta_registrations.cpython-39.pyc 2025-08-26T20:45:28.0570206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_namedtensor_internals.cpython-39.pyc 2025-08-26T20:45:28.0573948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_ops.cpython-39.pyc 2025-08-26T20:45:28.0582363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_python_dispatcher.cpython-39.pyc 2025-08-26T20:45:28.0586156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_size_docs.cpython-39.pyc 2025-08-26T20:45:28.0590284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_sources.cpython-39.pyc 2025-08-26T20:45:28.0594033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_storage_docs.cpython-39.pyc 2025-08-26T20:45:28.0597834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_streambase.cpython-39.pyc 2025-08-26T20:45:28.0601660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_tensor.cpython-39.pyc 2025-08-26T20:45:28.0605835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_tensor_docs.cpython-39.pyc 2025-08-26T20:45:28.0610369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_tensor_str.cpython-39.pyc 2025-08-26T20:45:28.0614343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_thread_safe_fork.cpython-39.pyc 2025-08-26T20:45:28.0621737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_torch_docs.cpython-39.pyc 2025-08-26T20:45:28.0628103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_utils.cpython-39.pyc 2025-08-26T20:45:28.0631945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_utils_internal.cpython-39.pyc 2025-08-26T20:45:28.0635681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_VF.cpython-39.pyc 2025-08-26T20:45:28.0639440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_vmap_internals.cpython-39.pyc 2025-08-26T20:45:28.0643313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_weights_only_unpickler.cpython-39.pyc 2025-08-26T20:45:28.0646953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\__config__.cpython-39.pyc 2025-08-26T20:45:28.0650725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\__future__.cpython-39.pyc 2025-08-26T20:45:28.0661537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\__init__.cpython-39.pyc 2025-08-26T20:45:28.0669740Z 13457 File(s) copied 2025-08-26T20:45:28.3328716Z ********************************************************************** 2025-08-26T20:45:28.3329189Z ** Visual Studio 2022 Developer Command Prompt v17.12.10 2025-08-26T20:45:28.3329559Z ** Copyright (c) 2022 Microsoft Corporation 2025-08-26T20:45:28.3329875Z ********************************************************************** 2025-08-26T20:45:28.7927566Z [vcvarsall.bat] Environment initialized for: 'x64' 2025-08-26T20:45:28.7962115Z 2025-08-26T20:45:28.7962594Z (base) C:\actions-runner\_work\pytorch\pytorch>popd 2025-08-26T20:45:28.7966430Z 2025-08-26T20:45:28.7966969Z (base) C:\actions-runner\_work\pytorch\pytorch>set DISTUTILS_USE_SDK=1 2025-08-26T20:45:28.7969558Z 2025-08-26T20:45:28.7969959Z (base) C:\actions-runner\_work\pytorch\pytorch>if not "0" == "1" goto cuda_build_end 2025-08-26T20:45:28.7972345Z 2025-08-26T20:45:28.7972868Z (base) C:\actions-runner\_work\pytorch\pytorch>set PYTHONPATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build; 2025-08-26T20:45:28.7975423Z 2025-08-26T20:45:28.7975818Z (base) C:\actions-runner\_work\pytorch\pytorch>set 2025-08-26T20:45:28.8144291Z ACTIONS_ID_TOKEN_REQUEST_TOKEN=*** 2025-08-26T20:45:28.8145446Z ACTIONS_ID_TOKEN_REQUEST_URL=https://run-actions-1-azure-eastus.actions.githubusercontent.com/119//idtoken/403c8e96-de86-4002-bfa2-f61cede70191/bf3acfbe-1a7d-550c-ab40-3a4de6923adc?api-version=2.0 2025-08-26T20:45:28.8146515Z ACTIONS_RUNNER_HOOK_JOB_COMPLETED=C:\actions-runner\jobcompleted.ps1 2025-08-26T20:45:28.8146913Z ALLUSERSPROFILE=C:\ProgramData 2025-08-26T20:45:28.8147282Z ALPINE_IMAGE=308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2025-08-26T20:45:28.8147700Z APPDATA=C:\Users\runneruser\AppData\Roaming 2025-08-26T20:45:28.8148052Z AWS_DEFAULT_REGION=us-east-1 2025-08-26T20:45:28.8148329Z AWS_EXECUTION_ENV=EC2 2025-08-26T20:45:28.8148569Z BUILD_ENVIRONMENT=win-vs2022-cpu-py3 2025-08-26T20:45:28.8148828Z CI=true 2025-08-26T20:45:28.8149029Z CommandPromptType=Native 2025-08-26T20:45:28.8149309Z COMMONPROGRAMFILES=C:\Program Files\Common Files 2025-08-26T20:45:28.8149637Z COMPUTERNAME=EC2AMAZ-TE6SPGV 2025-08-26T20:45:28.8149905Z COMSPEC=C:\Windows\system32\cmd.exe 2025-08-26T20:45:28.8150262Z CONDA_BUILD=C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T20:45:28.8150648Z CONDA_DEFAULT_ENV=base 2025-08-26T20:45:28.8150901Z CONDA_EXE=C:\Jenkins\Miniconda3\Scripts\conda.exe 2025-08-26T20:45:28.8151307Z CONDA_INSTALL=C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T20:45:28.8151663Z CONDA_PARENT_DIR=C:\Jenkins 2025-08-26T20:45:28.8151917Z CONDA_PREFIX=C:\Jenkins\Miniconda3 2025-08-26T20:45:28.8152179Z CONDA_PROMPT_MODIFIER=(base) 2025-08-26T20:45:28.8152469Z CONDA_PYTHON_EXE=C:\Jenkins\Miniconda3\python.exe 2025-08-26T20:45:28.8152909Z CONDA_RUN=C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T20:45:28.8153295Z CONDA_SHLVL=1 2025-08-26T20:45:28.8153496Z CONTINUE_THROUGH_ERROR=True 2025-08-26T20:45:28.8153874Z CUDA_PATH=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.9 2025-08-26T20:45:28.8154389Z CUDA_PATH_V12_6=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-08-26T20:45:28.8154870Z CUDA_PATH_V12_8=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.8 2025-08-26T20:45:28.8155550Z CUDA_PATH_V12_9=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.9 2025-08-26T20:45:28.8155927Z CUDA_VERSION=cpu 2025-08-26T20:45:28.8156171Z ChocolateyInstall=C:\ProgramData\chocolatey 2025-08-26T20:45:28.8156556Z CommonProgramFiles(x86)=C:\Program Files (x86)\Common Files 2025-08-26T20:45:28.8156953Z CommonProgramW6432=C:\Program Files\Common Files 2025-08-26T20:45:28.8157419Z DevEnvDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\ 2025-08-26T20:45:28.8157836Z DISTUTILS_USE_SDK=1 2025-08-26T20:45:28.8158154Z DriverData=C:\Windows\System32\Drivers\DriverData 2025-08-26T20:45:28.8158457Z EC2LAUNCH_TELEMETRY=1 2025-08-26T20:45:28.8158901Z ExtensionSdkDir=C:\Program Files (x86)\Microsoft SDKs\Windows Kits\10\ExtensionSDKs 2025-08-26T20:45:28.8161163Z EXTERNAL_INCLUDE=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um 2025-08-26T20:45:28.8163252Z Framework40Version=v4.0 2025-08-26T20:45:28.8163531Z FrameworkDir=C:\Windows\Microsoft.NET\Framework64\ 2025-08-26T20:45:28.8163915Z FrameworkDir64=C:\Windows\Microsoft.NET\Framework64\ 2025-08-26T20:45:28.8164277Z FrameworkVersion=v4.0.30319 2025-08-26T20:45:28.8164541Z FrameworkVersion64=v4.0.30319 2025-08-26T20:45:28.8164785Z GITHUB_ACTION=test 2025-08-26T20:45:28.8164981Z GITHUB_ACTIONS=true 2025-08-26T20:45:28.8165184Z GITHUB_ACTION_REF= 2025-08-26T20:45:28.8165514Z GITHUB_ACTION_REPOSITORY= 2025-08-26T20:45:28.8165769Z GITHUB_ACTOR=pytorchmergebot 2025-08-26T20:45:28.8166063Z GITHUB_ACTOR_ID=97764156 2025-08-26T20:45:28.8166319Z GITHUB_API_URL=https://api.github.com 2025-08-26T20:45:28.8166589Z GITHUB_BASE_REF= 2025-08-26T20:45:28.8167036Z GITHUB_ENV=C:\actions-runner\_work\_temp\_runner_file_commands\set_env_9e80edba-99c0-4986-a90e-23cf49ba9f81 2025-08-26T20:45:28.8167536Z GITHUB_EVENT_NAME=push 2025-08-26T20:45:28.8167893Z GITHUB_EVENT_PATH=C:\actions-runner\_work\_temp\_github_workflow\event.json 2025-08-26T20:45:28.8168350Z GITHUB_GRAPHQL_URL=https://api.github.com/graphql 2025-08-26T20:45:28.8168656Z GITHUB_HEAD_REF= 2025-08-26T20:45:28.8168855Z GITHUB_JOB=test 2025-08-26T20:45:28.8169301Z GITHUB_OUTPUT=C:\actions-runner\_work\_temp\_runner_file_commands\set_output_9e80edba-99c0-4986-a90e-23cf49ba9f81 2025-08-26T20:45:28.8170068Z GITHUB_PATH=C:\actions-runner\_work\_temp\_runner_file_commands\add_path_9e80edba-99c0-4986-a90e-23cf49ba9f81 2025-08-26T20:45:28.8170578Z GITHUB_REF=refs/heads/main 2025-08-26T20:45:28.8170812Z GITHUB_REF_NAME=main 2025-08-26T20:45:28.8171026Z GITHUB_REF_PROTECTED=true 2025-08-26T20:45:28.8171306Z GITHUB_REF_TYPE=branch 2025-08-26T20:45:28.8171557Z GITHUB_REPOSITORY=pytorch/pytorch 2025-08-26T20:45:28.8171866Z GITHUB_REPOSITORY_ID=65600975 2025-08-26T20:45:28.8172123Z GITHUB_REPOSITORY_OWNER=pytorch 2025-08-26T20:45:28.8172382Z GITHUB_REPOSITORY_OWNER_ID=21003710 2025-08-26T20:45:28.8172651Z GITHUB_RETENTION_DAYS=90 2025-08-26T20:45:28.8172871Z GITHUB_RUN_ATTEMPT=1 2025-08-26T20:45:28.8173080Z GITHUB_RUN_ID=17248463647 2025-08-26T20:45:28.8173304Z GITHUB_RUN_NUMBER=141812 2025-08-26T20:45:28.8173550Z GITHUB_SERVER_URL=https://github.com 2025-08-26T20:45:28.8173853Z GITHUB_SHA=262640fd220236042fbf4443cc163c8838c84c3d 2025-08-26T20:45:28.8174412Z GITHUB_STATE=C:\actions-runner\_work\_temp\_runner_file_commands\save_state_9e80edba-99c0-4986-a90e-23cf49ba9f81 2025-08-26T20:45:28.8175246Z GITHUB_STEP_SUMMARY=C:\actions-runner\_work\_temp\_runner_file_commands\step_summary_9e80edba-99c0-4986-a90e-23cf49ba9f81 2025-08-26T20:45:28.8175956Z GITHUB_TRIGGERING_ACTOR=pytorchmergebot 2025-08-26T20:45:28.8176236Z GITHUB_WORKFLOW=trunk 2025-08-26T20:45:28.8176622Z GITHUB_WORKFLOW_REF=pytorch/pytorch/.github/workflows/trunk.yml@refs/heads/main 2025-08-26T20:45:28.8177162Z GITHUB_WORKFLOW_SHA=262640fd220236042fbf4443cc163c8838c84c3d 2025-08-26T20:45:28.8177626Z GITHUB_WORKSPACE=C:\actions-runner\_work\pytorch\pytorch 2025-08-26T20:45:28.8177959Z GIT_DEFAULT_BRANCH=main 2025-08-26T20:45:28.8178185Z HOME=C:\Users\runneruser 2025-08-26T20:45:28.8180093Z INCLUDE=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um 2025-08-26T20:45:28.8182331Z INSTALLER_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers 2025-08-26T20:45:28.8182969Z INSTALL_WINDOWS_SDK=1 2025-08-26T20:45:28.8183197Z is_x64_arch=true 2025-08-26T20:45:28.8183386Z JOB_ID=48947911970 2025-08-26T20:45:28.8183782Z JOB_NAME=win-vs2022-cpu-py3 / test (default, 2, 3, windows.4xlarge.nonephemeral) 2025-08-26T20:45:28.8184960Z LIB=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\lib\x64;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64;C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\ucrt\x64;C:\Program Files (x86)\Windows Kits\10\\lib\10.0.19041.0\\um\x64 2025-08-26T20:45:28.8187144Z LIBPATH=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\lib\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\lib\x86\store\references;C:\Program Files (x86)\Windows Kits\10\UnionMetadata\10.0.19041.0;C:\Program Files (x86)\Windows Kits\10\References\10.0.19041.0;C:\Windows\Microsoft.NET\Framework64\v4.0.30319 2025-08-26T20:45:28.8188634Z LOCALAPPDATA=C:\Users\runneruser\AppData\Local 2025-08-26T20:45:28.8189083Z NETFXSDKDir=C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\ 2025-08-26T20:45:28.8189466Z NO_TD=False 2025-08-26T20:45:28.8189654Z NO_TEST_TIMEOUT=False 2025-08-26T20:45:28.8189860Z NUMBER_OF_PROCESSORS=16 2025-08-26T20:45:28.8190078Z NUM_TEST_SHARDS=3 2025-08-26T20:45:28.8190280Z OLDPWD=C:/17248463647/build-results 2025-08-26T20:45:28.8190528Z OS=Windows_NT 2025-08-26T20:45:28.8197874Z PATH=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\bin\HostX64\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\VCPackages;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\MSBuild\Current\bin\Roslyn;C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\Extensions\Microsoft\CodeCoverage.Console;C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\\x64;C:\Program Files (x86)\Windows Kits\10\bin\\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\\MSBuild\Current\Bin\amd64;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\;C:\Jenkins\Miniconda3;C:\Jenkins\Miniconda3\Library\mingw-w64\bin;C:\Jenkins\Miniconda3\Library\usr\bin;C:\Jenkins\Miniconda3\Library\bin;C:\Jenkins\Miniconda3\Scripts;C:\Jenkins\Miniconda3\bin;C:\Jenkins\Miniconda3\condabin;C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\Llvm\x64\bin;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\Linux\bin\ConnectionManagerExe 2025-08-26T20:45:28.8205309Z PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC 2025-08-26T20:45:28.8205662Z Platform=x64 2025-08-26T20:45:28.8205866Z PROCESSOR_ARCHITECTURE=AMD64 2025-08-26T20:45:28.8206242Z PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 85 Stepping 7, GenuineIntel 2025-08-26T20:45:28.8206678Z PROCESSOR_LEVEL=6 2025-08-26T20:45:28.8206891Z PROCESSOR_REVISION=5507 2025-08-26T20:45:28.8207165Z PROGRAMFILES=C:\Program Files 2025-08-26T20:45:28.8207457Z PROJECT_DIR=C:/actions-runner/_work/pytorch/pytorch 2025-08-26T20:45:28.8207830Z PROJECT_DIR_WIN=C:\actions-runner\_work\pytorch\pytorch 2025-08-26T20:45:28.8208150Z PROMPT=(base) $P$G 2025-08-26T20:45:28.8208354Z PR_NUMBER= 2025-08-26T20:45:28.8208805Z PSModulePath=C:\Windows\system32\WindowsPowerShell\v1.0\Modules;C:\Program Files\WindowsPowerShell\Modules 2025-08-26T20:45:28.8209342Z PUBLIC=C:\Users\Public 2025-08-26T20:45:28.8209811Z *** 2025-08-26T20:45:28.8210112Z PYTHONPATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build; 2025-08-26T20:45:28.8210512Z PYTHON_VERSION=3.9 2025-08-26T20:45:28.8210774Z PYTORCH_FINAL_PACKAGE_DIR=C:/17248463647/build-results/ 2025-08-26T20:45:28.8211244Z PYTORCH_FINAL_PACKAGE_DIR_WIN=C:\17248463647\build-results\ 2025-08-26T20:45:28.8211593Z PYTORCH_TEST_CUDA_MEM_LEAK_CHECK=0 2025-08-26T20:45:28.8211891Z PYTORCH_TEST_RERUN_DISABLED_TESTS=0 2025-08-26T20:45:28.8212172Z ProgramData=C:\ProgramData 2025-08-26T20:45:28.8212431Z ProgramFiles(x86)=C:\Program Files (x86) 2025-08-26T20:45:28.8212765Z ProgramW6432=C:\Program Files 2025-08-26T20:45:28.8213047Z REENABLED_ISSUES= 2025-08-26T20:45:28.8213253Z RUNNER_ARCH=X64 2025-08-26T20:45:28.8213456Z RUNNER_ENVIRONMENT=self-hosted 2025-08-26T20:45:28.8213708Z RUNNER_NAME=i-07498329a9125d143 2025-08-26T20:45:28.8213936Z RUNNER_OS=Windows 2025-08-26T20:45:28.8214171Z RUNNER_TEMP=C:\actions-runner\_work\_temp 2025-08-26T20:45:28.8214481Z RUNNER_TOOL_CACHE=C:\actions-runner\_work\_tool 2025-08-26T20:45:28.8214881Z RUNNER_TRACKING_ID=github_95194c4b-d400-4ebf-b87d-497f68b85df1 2025-08-26T20:45:28.8215317Z RUNNER_WORKSPACE=C:\actions-runner\_work\pytorch 2025-08-26T20:45:28.8215817Z SCRIPT_HELPERS_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-08-26T20:45:28.8216296Z SHA1=262640fd220236042fbf4443cc163c8838c84c3d 2025-08-26T20:45:28.8216581Z SHARD_NUMBER=2 2025-08-26T20:45:28.8216767Z SHLVL=2 2025-08-26T20:45:28.8217005Z SSL_CERT_FILE=C:\Jenkins\Miniconda3\Library\ssl\cacert.pem 2025-08-26T20:45:28.8217340Z SYSTEMDRIVE=C: 2025-08-26T20:45:28.8217529Z SYSTEMROOT=C:\Windows 2025-08-26T20:45:28.8217777Z TEMP=C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:45:28.8218049Z TERM=xterm-256color 2025-08-26T20:45:28.8218250Z TEST_CONFIG=default 2025-08-26T20:45:28.8218557Z TEST_DIR=C:/actions-runner/_work/pytorch/pytorch/test 2025-08-26T20:45:28.8218990Z TEST_DIR_WIN=C:\actions-runner\_work\pytorch\pytorch\test 2025-08-26T20:45:28.8219371Z TEST_SHOWLOCALS=False 2025-08-26T20:45:28.8219650Z TMP=C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:45:28.8219999Z TMPDIR=C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T20:45:28.8220400Z TMP_DIR=C:/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-08-26T20:45:28.8220887Z TMP_DIR_WIN=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp 2025-08-26T20:45:28.8221417Z TORCH_CUDA_ARCH_LIST=8.6 2025-08-26T20:45:28.8221711Z TORCH_SERIALIZATION_DEBUG=1 2025-08-26T20:45:28.8221993Z UCRTVersion=10.0.19041.0 2025-08-26T20:45:28.8222360Z UniversalCRTSdkDir=C:\Program Files (x86)\Windows Kits\10\ 2025-08-26T20:45:28.8222827Z UPDATEFILE=update.finished 2025-08-26T20:45:28.8223114Z USERDOMAIN=EC2AMAZ-TE6SPGV 2025-08-26T20:45:28.8223358Z USERNAME=runneruser 2025-08-26T20:45:28.8223622Z USERPROFILE=C:\Users\runneruser 2025-08-26T20:45:28.8223907Z USE_CUDA=0 2025-08-26T20:45:28.8224287Z VCIDEInstallDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\ 2025-08-26T20:45:28.8224901Z VCINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\ 2025-08-26T20:45:28.8225599Z VCToolsInstallDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\ 2025-08-26T20:45:28.8226368Z VCToolsRedistDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Redist\MSVC\14.42.34433\ 2025-08-26T20:45:28.8226891Z VCToolsVersion=14.42.34433 2025-08-26T20:45:28.8227130Z VC_PRODUCT=BuildTools 2025-08-26T20:45:28.8227344Z VC_VERSION= 2025-08-26T20:45:28.8227517Z VC_YEAR=2022 2025-08-26T20:45:28.8227731Z VERBOSE_ARG='SilentlyContinue' 2025-08-26T20:45:28.8227975Z VERBOSE_TEST_LOGS=False 2025-08-26T20:45:28.8228206Z VisualStudioVersion=17.0 2025-08-26T20:45:28.8228622Z VS170COMNTOOLS=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\ 2025-08-26T20:45:28.8229090Z VSCMD_ARG_app_plat=Desktop 2025-08-26T20:45:28.8229363Z VSCMD_ARG_HOST_ARCH=x64 2025-08-26T20:45:28.8229579Z VSCMD_ARG_TGT_ARCH=x64 2025-08-26T20:45:28.8229835Z VSCMD_VER=17.12.10 2025-08-26T20:45:28.8230207Z VSINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\ 2025-08-26T20:45:28.8230608Z VS_VERSION=17.4.1 2025-08-26T20:45:28.8230864Z WINDIR=C:\Windows 2025-08-26T20:45:28.8231424Z WindowsLibPath=C:\Program Files (x86)\Windows Kits\10\UnionMetadata\10.0.19041.0;C:\Program Files (x86)\Windows Kits\10\References\10.0.19041.0 2025-08-26T20:45:28.8232121Z WindowsSdkBinPath=C:\Program Files (x86)\Windows Kits\10\bin\ 2025-08-26T20:45:28.8232551Z WindowsSdkDir=C:\Program Files (x86)\Windows Kits\10\ 2025-08-26T20:45:28.8232897Z WindowsSDKLibVersion=10.0.19041.0\ 2025-08-26T20:45:28.8233295Z WindowsSdkVerBinPath=C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\ 2025-08-26T20:45:28.8233736Z WindowsSDKVersion=10.0.19041.0\ 2025-08-26T20:45:28.8234232Z WindowsSDK_ExecutablePath_x64=C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\ 2025-08-26T20:45:28.8234968Z WindowsSDK_ExecutablePath_x86=C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\ 2025-08-26T20:45:28.8235716Z _=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers/test_python_shard.bat 2025-08-26T20:45:28.8236285Z __CONDA_OPENSLL_CERT_FILE_SET="1" 2025-08-26T20:45:28.8236540Z __DOTNET_ADD_64BIT=1 2025-08-26T20:45:28.8236759Z __DOTNET_PREFERRED_BITNESS=64 2025-08-26T20:45:28.8239805Z __VSCMD_PREINIT_PATH=C:\Jenkins\Miniconda3;C:\Jenkins\Miniconda3\Library\mingw-w64\bin;C:\Jenkins\Miniconda3\Library\usr\bin;C:\Jenkins\Miniconda3\Library\bin;C:\Jenkins\Miniconda3\Scripts;C:\Jenkins\Miniconda3\bin;C:\Jenkins\Miniconda3\condabin;C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps 2025-08-26T20:45:28.8242941Z 2025-08-26T20:45:28.8243234Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-26T20:45:28.8243619Z echo "setup pytorch env failed" 2025-08-26T20:45:28.8243876Z echo 0 2025-08-26T20:45:28.8244059Z exit /b 2025-08-26T20:45:28.8244239Z ) 2025-08-26T20:45:28.8244330Z 2025-08-26T20:45:28.8244493Z (base) C:\actions-runner\_work\pytorch\pytorch>pushd test 2025-08-26T20:45:28.8244747Z 2025-08-26T20:45:28.8245143Z (base) C:\actions-runner\_work\pytorch\pytorch\test>set GFLAGS_EXE="C:\Program Files (x86)\Windows Kits\10\Debuggers\x64\gflags.exe" 2025-08-26T20:45:28.8245645Z 2025-08-26T20:45:28.8246034Z (base) C:\actions-runner\_work\pytorch\pytorch\test>if "2" == "1" (if exist "C:\Program Files (x86)\Windows Kits\10\Debuggers\x64\gflags.exe" ( 2025-08-26T20:45:28.8246654Z echo Some smoke tests 2025-08-26T20:45:28.8247038Z "C:\Program Files (x86)\Windows Kits\10\Debuggers\x64\gflags.exe" /i python.exe +sls 2025-08-26T20:45:28.8247728Z python C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\run_python_nn_smoketests.py 2025-08-26T20:45:28.8248350Z if ERRORLEVEL 1 goto fail 2025-08-26T20:45:28.8248801Z "C:\Program Files (x86)\Windows Kits\10\Debuggers\x64\gflags.exe" /i python.exe -sls 2025-08-26T20:45:28.8249225Z if ERRORLEVEL 1 goto fail 2025-08-26T20:45:28.8249453Z ) ) 2025-08-26T20:45:28.8249548Z 2025-08-26T20:45:28.8249793Z (base) C:\actions-runner\_work\pytorch\pytorch\test>echo Copying over test times file 2025-08-26T20:45:28.8250236Z Copying over test times file 2025-08-26T20:45:28.8250394Z 2025-08-26T20:45:28.8250969Z (base) C:\actions-runner\_work\pytorch\pytorch\test>robocopy /E "C:\17248463647\build-results\\.additional_ci_files" "C:\actions-runner\_work\pytorch\pytorch\.additional_ci_files" 2025-08-26T20:45:28.8251635Z 2025-08-26T20:45:28.8251793Z ------------------------------------------------------------------------------- 2025-08-26T20:45:28.8256138Z ROBOCOPY :: Robust File Copy for Windows 2025-08-26T20:45:28.8256622Z ------------------------------------------------------------------------------- 2025-08-26T20:45:28.8256903Z 2025-08-26T20:45:28.8257020Z Started : Tuesday, August 26, 2025 8:45:28 PM 2025-08-26T20:45:28.8257393Z Source : C:\17248463647\build-results\.additional_ci_files\ 2025-08-26T20:45:28.8257830Z Dest : C:\actions-runner\_work\pytorch\pytorch\.additional_ci_files\ 2025-08-26T20:45:28.8258136Z 2025-08-26T20:45:28.8258218Z Files : *.* 2025-08-26T20:45:28.8258408Z 2025-08-26T20:45:28.8258645Z Options : *.* /S /E /DCOPY:DA /COPY:DAT /R:1000000 /W:30 2025-08-26T20:45:28.8258885Z 2025-08-26T20:45:28.8259107Z ------------------------------------------------------------------------------ 2025-08-26T20:45:28.8259375Z 2025-08-26T20:45:28.8259607Z 2 C:\17248463647\build-results\.additional_ci_files\ 2025-08-26T20:45:28.8260006Z *EXTRA File 79455 td_results.json 2025-08-26T20:45:28.8260305Z New File 3.8 m test-class-times.json 2025-08-26T20:45:28.8260587Z 12% 2025-08-26T20:45:28.8260757Z 25% 2025-08-26T20:45:28.8260917Z 38% 2025-08-26T20:45:28.8261082Z 51% 2025-08-26T20:45:28.8261233Z 64% 2025-08-26T20:45:28.8261401Z 77% 2025-08-26T20:45:28.8261549Z 90% 2025-08-26T20:45:28.8261713Z 100% 2025-08-26T20:45:28.8261894Z New File 1.0 m test-times.json 2025-08-26T20:45:28.8262156Z 23% 2025-08-26T20:45:28.8262306Z 47% 2025-08-26T20:45:28.8262467Z 70% 2025-08-26T20:45:28.8262687Z 94% 2025-08-26T20:45:28.8262852Z 100% 2025-08-26T20:45:28.8262941Z 2025-08-26T20:45:28.8263089Z ------------------------------------------------------------------------------ 2025-08-26T20:45:28.8263359Z 2025-08-26T20:45:28.8263508Z Total Copied Skipped Mismatch FAILED Extras 2025-08-26T20:45:28.8263880Z Dirs : 1 0 1 0 0 0 2025-08-26T20:45:28.8264218Z Files : 2 2 0 0 0 1 2025-08-26T20:45:28.8264729Z Bytes : 4.93 m 4.93 m 0 0 0 77.5 k 2025-08-26T20:45:28.8265091Z Times : 0:00:00 0:00:00 0:00:00 0:00:00 2025-08-26T20:45:28.8265341Z 2025-08-26T20:45:28.8265344Z 2025-08-26T20:45:28.8265438Z Speed : 1034094200 Bytes/sec. 2025-08-26T20:45:28.8265729Z Speed : 59171.344 MegaBytes/min. 2025-08-26T20:45:28.8266028Z Ended : Tuesday, August 26, 2025 8:45:28 PM 2025-08-26T20:45:28.8266230Z 2025-08-26T20:45:28.8266234Z 2025-08-26T20:45:28.8266442Z (base) C:\actions-runner\_work\pytorch\pytorch\test>echo Run nn tests 2025-08-26T20:45:28.8266805Z Run nn tests 2025-08-26T20:45:28.8266971Z 2025-08-26T20:45:28.8267460Z (base) C:\actions-runner\_work\pytorch\pytorch\test>python run_test.py --exclude-jit-executor --exclude-distributed-tests --shard "2" "3" --verbose 2025-08-26T20:45:47.8799283Z Found test times from artifacts 2025-08-26T20:45:47.9484825Z Found test times from artifacts 2025-08-26T20:45:47.9506356Z Running all tests 2025-08-26T20:45:48.0094931Z Running parallel tests on 3 processes 2025-08-26T20:45:48.0108444Z Name: tests to run (est. time: 88.23min) 2025-08-26T20:45:48.0108746Z Serial tests (0): 2025-08-26T20:45:48.0108948Z Parallel tests (130): 2025-08-26T20:45:48.0109192Z inductor/test_aot_inductor_arrayref 1/1 2025-08-26T20:45:48.0109481Z inductor/test_compiled_autograd 1/1 2025-08-26T20:45:48.0109764Z inductor/test_inplace_padding 1/1 2025-08-26T20:45:48.0110100Z inductor/test_torchinductor_codegen_dynamic_shapes 1/1 2025-08-26T20:45:48.0110454Z inductor/test_compiled_optimizers 1/1 2025-08-26T20:45:48.0110754Z inductor/test_split_cat_fx_passes 1/1 2025-08-26T20:45:48.0111047Z dynamo/test_pgo 1/1 2025-08-26T20:45:48.0111293Z inductor/test_split_cat_fx_aten_passes 1/1 2025-08-26T20:45:48.0111712Z export/test_torchbind 1/1 2025-08-26T20:45:48.0111970Z dynamo/test_package 1/1 2025-08-26T20:45:48.0112203Z dynamo/test_repros 1/1 2025-08-26T20:45:48.0112453Z inductor/test_cpu_repro 1/1 2025-08-26T20:45:48.0112755Z inductor/test_cudagraph_trees_expandable_segments 1/1 2025-08-26T20:45:48.0113094Z test_nestedtensor 2/3 2025-08-26T20:45:48.0113327Z test_nestedtensor 3/3 2025-08-26T20:45:48.0113542Z test_type_hints 1/1 2025-08-26T20:45:48.0113795Z test_dataloader 1/2 2025-08-26T20:45:48.0113997Z test_dataloader 2/2 2025-08-26T20:45:48.0114224Z functorch/test_aotdispatch 4/7 2025-08-26T20:45:48.0114496Z functorch/test_aotdispatch 5/7 2025-08-26T20:45:48.0114753Z functorch/test_aotdispatch 6/7 2025-08-26T20:45:48.0115006Z inductor/test_perf 1/1 2025-08-26T20:45:48.0115248Z dynamo/test_fx_graph_runnable 1/1 2025-08-26T20:45:48.0115522Z inductor/test_fused_attention 1/1 2025-08-26T20:45:48.0115777Z inductor/test_pad_mm 1/1 2025-08-26T20:45:48.0116035Z inductor/test_inductor_utils 1/1 2025-08-26T20:45:48.0116295Z inductor/test_b2b_gemm 1/1 2025-08-26T20:45:48.0116581Z inductor/test_inductor_annotations 1/1 2025-08-26T20:45:48.0116879Z export/test_unflatten_training_ir 1/1 2025-08-26T20:45:48.0117188Z inductor/test_torchinductor_strided_blocks 1/1 2025-08-26T20:45:48.0117502Z inductor/test_metrics 1/1 2025-08-26T20:45:48.0117749Z inductor/test_compile_worker 1/1 2025-08-26T20:45:48.0118018Z inductor/test_remote_cache 1/1 2025-08-26T20:45:48.0118271Z export/test_export_strict 1/1 2025-08-26T20:45:48.0118530Z export/test_serdes 1/1 2025-08-26T20:45:48.0118771Z dynamo/test_skip_guard_eval_unsafe 1/1 2025-08-26T20:45:48.0119049Z inductor/test_foreach 1/1 2025-08-26T20:45:48.0119284Z dynamo/test_frame_init 1/1 2025-08-26T20:45:48.0119533Z inductor/test_fp8 1/1 2025-08-26T20:45:48.0119783Z inductor/test_coordinate_descent_tuner 1/1 2025-08-26T20:45:48.0120081Z inductor/test_triton_wrapper 1/1 2025-08-26T20:45:48.0120357Z inductor/test_triton_heuristics 1/1 2025-08-26T20:45:48.0120621Z dynamo/test_sdpa 1/1 2025-08-26T20:45:48.0121002Z dynamo/test_utils 1/1 2025-08-26T20:45:48.0121233Z inductor/test_cutlass_evt 1/1 2025-08-26T20:45:48.0121505Z inductor/test_select_algorithm 1/1 2025-08-26T20:45:48.0121776Z inductor/test_cutedsl_template 1/1 2025-08-26T20:45:48.0122053Z inductor/test_multi_kernel 1/1 2025-08-26T20:45:48.0122314Z export/test_cpp_serdes 1/1 2025-08-26T20:45:48.0122585Z dynamo/test_metrics_context 1/1 2025-08-26T20:45:48.0122849Z dynamo/test_reconstruct 1/1 2025-08-26T20:45:48.0123089Z inductor/test_profiler 1/1 2025-08-26T20:45:48.0123343Z dynamo/test_modules 1/1 2025-08-26T20:45:48.0123564Z dynamo/test_global 1/1 2025-08-26T20:45:48.0124243Z inductor/test_aot_inductor_utils 1/1 2025-08-26T20:45:48.0124523Z inductor/test_ordered_set 1/1 2025-08-26T20:45:48.0124791Z inductor/test_custom_lowering 1/1 2025-08-26T20:45:48.0125058Z inductor/test_alignment 1/1 2025-08-26T20:45:48.0125321Z dynamo/test_install_free_tensors 1/1 2025-08-26T20:45:48.0125617Z inductor/test_scatter_optimization 1/1 2025-08-26T20:45:48.0125962Z inductor/test_torchinductor_codegen_config_overrides 1/1 2025-08-26T20:45:48.0126310Z dynamo/test_sources 1/1 2025-08-26T20:45:48.0126555Z inductor/test_needs_exact_strides 1/1 2025-08-26T20:45:48.0126842Z dynamo/test_base_hop 1/1 2025-08-26T20:45:48.0127100Z dynamo/test_backward_higher_order_ops 1/1 2025-08-26T20:45:48.0127395Z dynamo/test_debug_utils 1/1 2025-08-26T20:45:48.0127648Z dynamo/test_verify_correctness 1/1 2025-08-26T20:45:48.0127928Z dynamo/test_python_dispatcher 1/1 2025-08-26T20:45:48.0128207Z inductor/test_efficient_conv_bn_eval 1/1 2025-08-26T20:45:48.0128508Z dynamo/test_aot_autograd 1/1 2025-08-26T20:45:48.0128758Z dynamo/test_unspec 1/1 2025-08-26T20:45:48.0129024Z dynamo/test_cudagraphs_expandable_segments 1/1 2025-08-26T20:45:48.0129400Z dynamo/test_input_attr_tracking 1/1 2025-08-26T20:45:48.0129665Z dynamo/test_einops 1/1 2025-08-26T20:45:48.0129919Z dynamo/test_guard_manager 1/1 2025-08-26T20:45:48.0130197Z dynamo/test_activation_checkpointing 1/1 2025-08-26T20:45:48.0130502Z dynamo/test_precompile_context 1/1 2025-08-26T20:45:48.0130774Z dynamo/test_reorder_logs 1/1 2025-08-26T20:45:48.0131030Z export/test_sparse 2/2 2025-08-26T20:45:48.0131253Z test_autograd 1/1 2025-08-26T20:45:48.0131476Z test_ao_sparsity 1/1 2025-08-26T20:45:48.0131704Z functorch/test_rearrange 1/1 2025-08-26T20:45:48.0131953Z functorch/test_parsing 1/1 2025-08-26T20:45:48.0132191Z test_package 1/1 2025-08-26T20:45:48.0132399Z profiler/test_kineto 1/1 2025-08-26T20:45:48.0132666Z higher_order_ops/test_invoke_subgraph 1/1 2025-08-26T20:45:48.0141183Z test_comparison_utils 1/1 2025-08-26T20:45:48.0141599Z functorch/test_ac_logging 1/1 2025-08-26T20:45:48.0141867Z test_mkl_verbose 1/1 2025-08-26T20:45:48.0142094Z test_decomp 1/17 2025-08-26T20:45:48.0142291Z test_decomp 5/17 2025-08-26T20:45:48.0142499Z test_decomp 6/17 2025-08-26T20:45:48.0142699Z test_decomp 7/17 2025-08-26T20:45:48.0142918Z test_decomp 11/17 2025-08-26T20:45:48.0143119Z test_decomp 12/17 2025-08-26T20:45:48.0143346Z test_decomp 14/17 2025-08-26T20:45:48.0143555Z test_transformers 1/2 2025-08-26T20:45:48.0143804Z test_transformers 2/2 2025-08-26T20:45:48.0144030Z test_modules 2/2 2025-08-26T20:45:48.0144252Z test_appending_byte_serializer 1/1 2025-08-26T20:45:48.0144535Z test_matmul_cuda 1/1 2025-08-26T20:45:48.0144751Z test_license 1/1 2025-08-26T20:45:48.0144957Z test_autoload 1/1 2025-08-26T20:45:48.0145164Z functorch/test_dims 1/1 2025-08-26T20:45:48.0145454Z test_rename_privateuse1_to_existing_device 1/1 2025-08-26T20:45:48.0145771Z torch_np/test_binary_ufuncs 1/1 2025-08-26T20:45:48.0146049Z typing/test_python_operators 1/1 2025-08-26T20:45:48.0146326Z torch_np/test_unary_ufuncs 1/1 2025-08-26T20:45:48.0146746Z test_proxy_tensor 1/2 2025-08-26T20:45:48.0146992Z functorch/test_ops 3/8 2025-08-26T20:45:48.0147222Z functorch/test_ops 4/8 2025-08-26T20:45:48.0147459Z functorch/test_ops 8/8 2025-08-26T20:45:48.0147681Z test_ops 3/9 2025-08-26T20:45:48.0147887Z test_ops 4/9 2025-08-26T20:45:48.0148071Z test_ops 9/9 2025-08-26T20:45:48.0148269Z test_jiterator 1/1 2025-08-26T20:45:48.0148467Z test_meta 3/4 2025-08-26T20:45:48.0148656Z test_meta 4/4 2025-08-26T20:45:48.0148844Z functorch/test_ac 1/1 2025-08-26T20:45:48.0149083Z test_ops_fwd_gradients 2/2 2025-08-26T20:45:48.0149339Z test_functionalization_of_rng_ops 1/1 2025-08-26T20:45:48.0149681Z optim/test_lrscheduler 1/1 2025-08-26T20:45:48.0149929Z optim/test_optim 1/1 2025-08-26T20:45:48.0150148Z functorch/test_vmap 2/2 2025-08-26T20:45:48.0150386Z test_mkldnn 1/1 2025-08-26T20:45:48.0150615Z torch_np/numpy_tests/core/test_dlpack 1/1 2025-08-26T20:45:48.0150903Z test_unary_ufuncs 1/1 2025-08-26T20:45:48.0151139Z test_xnnpack_integration 1/1 2025-08-26T20:45:48.0151427Z torch_np/numpy_tests/lib/test_index_tricks 1/1 2025-08-26T20:45:48.0151717Z nn/test_init 1/1 2025-08-26T20:45:48.0151937Z Name: excluded (est. time: 0.0min) 2025-08-26T20:45:48.0152180Z Serial tests (0): 2025-08-26T20:45:48.0152394Z Parallel tests (0): 2025-08-26T20:45:48.0152764Z Running inductor/test_aot_inductor_arrayref 1/1 ... [2025-08-26 20:45:48.009586] 2025-08-26T20:45:48.0153188Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:45:48.0163370Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_aot_inductor_arrayref.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:45:48.009586] 2025-08-26T20:45:48.0165033Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-08-26T20:45:48.0165793Z Ignoring disabled issues: [''] 2025-08-26T20:45:52.1365248Z 2025-08-26T20:45:52.1366193Z inductor/test_aot_inductor_arrayref 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_aot_inductor_arrayref_1.1_47488528e9af0da5_.log 2025-08-26T20:45:52.1366909Z 2025-08-26T20:45:52.1373207Z Running inductor/test_compiled_autograd 1/1 ... [2025-08-26 20:45:52.137113] 2025-08-26T20:45:52.1373643Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:45:52.1379873Z 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-26 20:45:52.137677] 2025-08-26T20:45:52.1381133Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T20:45:52.1381592Z Uploading artifacts took 0.00 seconds 2025-08-26T20:46:13.7702109Z 2025-08-26T20:46:13.7703032Z 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_43c0b47584a4b99a_.log 2025-08-26T20:46:13.7703744Z 2025-08-26T20:46:13.7707834Z Running inductor/test_inplace_padding 1/1 ... [2025-08-26 20:46:13.770137] 2025-08-26T20:46:13.7708259Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:46:13.7714461Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_inplace_padding.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:46:13.771241] 2025-08-26T20:46:23.6137260Z 2025-08-26T20:46:23.6138732Z inductor/test_inplace_padding 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_inplace_padding_1.1_ab1143b4559fb78d_.log 2025-08-26T20:46:23.6139494Z 2025-08-26T20:46:23.6143125Z Running inductor/test_torchinductor_codegen_dynamic_shapes 1/1 ... [2025-08-26 20:46:23.613795] 2025-08-26T20:46:23.6143673Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:46:23.6160185Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_torchinductor_codegen_dynamic_shapes.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:46:23.614367] 2025-08-26T20:46:33.7486579Z 2025-08-26T20:46:33.7487673Z inductor/test_torchinductor_codegen_dynamic_shapes 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_torchinductor_codegen_dynamic_shapes_1.1_207121e2c6436697_.log 2025-08-26T20:46:33.7488690Z 2025-08-26T20:46:33.7492403Z Running inductor/test_compiled_optimizers 1/1 ... [2025-08-26 20:46:33.748432] 2025-08-26T20:46:33.7492869Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:46:33.7500555Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_compiled_optimizers.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:46:33.749557] 2025-08-26T20:46:44.9008747Z 2025-08-26T20:46:44.9009671Z inductor/test_compiled_optimizers 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_compiled_optimizers_1.1_844b2ef737712e01_.log 2025-08-26T20:46:44.9010390Z 2025-08-26T20:46:44.9014316Z Running inductor/test_split_cat_fx_passes 1/1 ... [2025-08-26 20:46:44.891532] 2025-08-26T20:46:44.9014757Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:46:44.9021366Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_split_cat_fx_passes.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:46:44.901626] 2025-08-26T20:46:54.6099943Z 2025-08-26T20:46:54.6100862Z inductor/test_split_cat_fx_passes 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_split_cat_fx_passes_1.1_1471406d3ab72eaa_.log 2025-08-26T20:46:54.6101560Z 2025-08-26T20:46:54.6105784Z Running dynamo/test_pgo 1/1 ... [2025-08-26 20:46:54.610372] 2025-08-26T20:46:54.6106155Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:46:54.6112603Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_pgo.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:46:54.610948] 2025-08-26T20:46:59.0663304Z 2025-08-26T20:46:59.0664236Z dynamo/test_pgo 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_pgo_1.1_b0ddb6da9f210ea2_.log 2025-08-26T20:46:59.0664807Z 2025-08-26T20:46:59.0669230Z Running inductor/test_split_cat_fx_aten_passes 1/1 ... [2025-08-26 20:46:59.066653] 2025-08-26T20:46:59.0669684Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:46:59.0675921Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_split_cat_fx_aten_passes.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:46:59.066653] 2025-08-26T20:47:08.6949259Z 2025-08-26T20:47:08.6950261Z inductor/test_split_cat_fx_aten_passes 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_split_cat_fx_aten_passes_1.1_f0c6c6591b501052_.log 2025-08-26T20:47:08.6950996Z 2025-08-26T20:47:08.6955094Z Running export/test_torchbind 1/1 ... [2025-08-26 20:47:08.695395] 2025-08-26T20:47:08.6956423Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:47:08.6961575Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_torchbind.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:47:08.695966] 2025-08-26T20:47:18.5591891Z 2025-08-26T20:47:18.5592731Z export/test_torchbind 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_torchbind_1.1_f07f7b84c27e2355_.log 2025-08-26T20:47:18.5593452Z Running 0 items in this shard: 2025-08-26T20:47:18.5593770Z 2025-08-26T20:47:18.5597962Z Running dynamo/test_package 1/1 ... [2025-08-26 20:47:18.554453] 2025-08-26T20:47:18.5600199Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:47:18.5604704Z 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-26 20:47:18.554453] 2025-08-26T20:47:28.1470485Z 2025-08-26T20:47:28.1471270Z dynamo/test_package 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_package_1.1_26b78460c0ce3d06_.log 2025-08-26T20:47:28.1471884Z 2025-08-26T20:47:28.1477858Z Running dynamo/test_repros 1/1 ... [2025-08-26 20:47:28.147642] 2025-08-26T20:47:28.1478245Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:47:28.1484328Z 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-26 20:47:28.147642] 2025-08-26T20:47:33.2372818Z 2025-08-26T20:47:33.2373651Z dynamo/test_repros 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_repros_1.1_dbd35be9729b641f_.log 2025-08-26T20:47:33.2374301Z 2025-08-26T20:47:33.2378597Z Running inductor/test_cpu_repro 1/1 ... [2025-08-26 20:47:33.230753] 2025-08-26T20:47:33.2378985Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:47:33.2390400Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_cpu_repro.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:47:33.230753] 2025-08-26T20:47:43.2153528Z 2025-08-26T20:47:43.2154378Z inductor/test_cpu_repro 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_cpu_repro_1.1_210e0955aaa56b62_.log 2025-08-26T20:47:43.2155033Z 2025-08-26T20:47:43.2159211Z Running inductor/test_cudagraph_trees_expandable_segments 1/1 ... [2025-08-26 20:47:43.201619] 2025-08-26T20:47:43.2159715Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:47:43.2165569Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_cudagraph_trees_expandable_segments.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:47:43.201619] 2025-08-26T20:47:52.7400920Z 2025-08-26T20:47:52.7402110Z inductor/test_cudagraph_trees_expandable_segments 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_cudagraph_trees_expandable_segments_1.1_aa13a3b976b8aad6_.log 2025-08-26T20:47:52.7402947Z 2025-08-26T20:47:52.7406843Z Running test_nestedtensor 2/3 ... [2025-08-26 20:47:52.740476] 2025-08-26T20:47:52.7407217Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:47:52.7413510Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_nestedtensor.py', '-m', 'serial', '--shard-id=2', '--num-shards=3', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:47:52.741066] 2025-08-26T20:47:59.2758194Z 2025-08-26T20:47:59.2759015Z test_nestedtensor 2/3 was successful, full logs can be found in artifacts with path test/test-reports/test_nestedtensor_2.3_be9791b3a181501f_.log 2025-08-26T20:47:59.2759681Z Running 0 items in this shard: 2025-08-26T20:47:59.2759859Z 2025-08-26T20:47:59.2764224Z Running test_nestedtensor 3/3 ... [2025-08-26 20:47:59.275560] 2025-08-26T20:47:59.2764597Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:47:59.2772460Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_nestedtensor.py', '-m', 'serial', '--shard-id=3', '--num-shards=3', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:47:59.276685] 2025-08-26T20:48:06.2046736Z 2025-08-26T20:48:06.2047667Z test_nestedtensor 3/3 was successful, full logs can be found in artifacts with path test/test-reports/test_nestedtensor_3.3_ba6b7f94ea8f1acd_.log 2025-08-26T20:48:06.2048747Z Running 1 items in this shard: test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_linear_backward_memory_usage_cpu_float32 2025-08-26T20:48:06.2049300Z 2025-08-26T20:48:06.2052813Z Running test_type_hints 1/1 ... [2025-08-26 20:48:06.204644] 2025-08-26T20:48:06.2053177Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:48:06.2059617Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_type_hints.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:48:06.204644] 2025-08-26T20:48:10.7356525Z 2025-08-26T20:48:10.7357561Z test_type_hints 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_type_hints_1.1_1ff19f959c3bdc20_.log 2025-08-26T20:48:10.7358413Z Running 0 items in this shard: 2025-08-26T20:48:10.7358594Z 2025-08-26T20:48:10.7362399Z Running test_dataloader 1/2 ... [2025-08-26 20:48:10.725187] 2025-08-26T20:48:10.7362775Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:48:10.7368692Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_dataloader.py', '-m', 'serial', '--shard-id=1', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:48:10.725187] 2025-08-26T20:48:16.1782526Z 2025-08-26T20:48:16.1783344Z test_dataloader 1/2 was successful, full logs can be found in artifacts with path test/test-reports/test_dataloader_1.2_8e3436e5ed9e5abe_.log 2025-08-26T20:48:16.1784888Z Running 0 items in this shard: 2025-08-26T20:48:16.1785101Z 2025-08-26T20:48:16.1789733Z Running test_dataloader 2/2 ... [2025-08-26 20:48:16.178733] 2025-08-26T20:48:16.1790114Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:48:16.1797872Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_dataloader.py', '-m', 'serial', '--shard-id=2', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:48:16.179347] 2025-08-26T20:48:21.3384097Z 2025-08-26T20:48:21.3384887Z test_dataloader 2/2 was successful, full logs can be found in artifacts with path test/test-reports/test_dataloader_2.2_d09527c7218a9b95_.log 2025-08-26T20:48:21.3385586Z Running 0 items in this shard: 2025-08-26T20:48:21.3385757Z 2025-08-26T20:48:21.3390320Z Running functorch/test_aotdispatch 4/7 ... [2025-08-26 20:48:21.337560] 2025-08-26T20:48:21.3390753Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:48:21.3396899Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_aotdispatch.py', '-m', 'serial', '--shard-id=4', '--num-shards=7', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:48:21.337560] 2025-08-26T20:48:28.4743333Z 2025-08-26T20:48:28.4744252Z functorch/test_aotdispatch 4/7 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_aotdispatch_4.7_faa97b87dee76e8d_.log 2025-08-26T20:48:28.4745083Z Running 0 items in this shard: 2025-08-26T20:48:28.4751437Z 2025-08-26T20:48:28.4751655Z Running functorch/test_aotdispatch 5/7 ... [2025-08-26 20:48:28.475005] 2025-08-26T20:48:28.4752088Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:48:28.4759638Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_aotdispatch.py', '-m', 'serial', '--shard-id=5', '--num-shards=7', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:48:28.475601] 2025-08-26T20:48:35.5860103Z 2025-08-26T20:48:35.5861014Z functorch/test_aotdispatch 5/7 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_aotdispatch_5.7_aa2a1afa309f3f8c_.log 2025-08-26T20:48:35.5861790Z Running 0 items in this shard: 2025-08-26T20:48:35.5861968Z 2025-08-26T20:48:35.5866255Z Running functorch/test_aotdispatch 6/7 ... [2025-08-26 20:48:35.581169] 2025-08-26T20:48:35.5866667Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:48:35.5875977Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_aotdispatch.py', '-m', 'serial', '--shard-id=6', '--num-shards=7', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:48:35.587354] 2025-08-26T20:48:42.7007362Z 2025-08-26T20:48:42.7008591Z functorch/test_aotdispatch 6/7 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_aotdispatch_6.7_51e9a3ed1c011020_.log 2025-08-26T20:48:42.7009638Z Running 0 items in this shard: 2025-08-26T20:48:42.7009857Z 2025-08-26T20:48:42.7013752Z Running inductor/test_perf 1/1 ... [2025-08-26 20:48:42.700978] 2025-08-26T20:48:42.7014160Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:48:42.7020277Z 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-26 20:48:42.701547] 2025-08-26T20:48:52.4676802Z 2025-08-26T20:48:52.4677597Z inductor/test_perf 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_perf_1.1_942459953ae47139_.log 2025-08-26T20:48:52.4678208Z 2025-08-26T20:48:52.4684082Z Running dynamo/test_fx_graph_runnable 1/1 ... [2025-08-26 20:48:52.468015] 2025-08-26T20:48:52.4684514Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:48:52.4691818Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_fx_graph_runnable.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:48:52.468595] 2025-08-26T20:49:02.4104632Z 2025-08-26T20:49:02.4105647Z dynamo/test_fx_graph_runnable 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_fx_graph_runnable_1.1_367c38d1d69b37a7_.log 2025-08-26T20:49:02.4106320Z 2025-08-26T20:49:02.4110645Z Running inductor/test_fused_attention 1/1 ... [2025-08-26 20:49:02.410795] 2025-08-26T20:49:02.4111077Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:49:02.4122864Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_fused_attention.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:49:02.411943] 2025-08-26T20:49:12.0492818Z 2025-08-26T20:49:12.0494074Z inductor/test_fused_attention 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_fused_attention_1.1_cd6a6154a9d5c785_.log 2025-08-26T20:49:12.0494784Z 2025-08-26T20:49:12.0498510Z Running inductor/test_pad_mm 1/1 ... [2025-08-26 20:49:12.047350] 2025-08-26T20:49:12.0498910Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:49:12.0504863Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_pad_mm.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:49:12.047350] 2025-08-26T20:49:21.7806571Z 2025-08-26T20:49:21.7807582Z inductor/test_pad_mm 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_pad_mm_1.1_12bd32b931cf474f_.log 2025-08-26T20:49:21.7808201Z 2025-08-26T20:49:21.7812671Z Running inductor/test_inductor_utils 1/1 ... [2025-08-26 20:49:21.775512] 2025-08-26T20:49:21.7813103Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:49:21.7819478Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_inductor_utils.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:49:21.775512] 2025-08-26T20:49:26.0130945Z 2025-08-26T20:49:26.0132152Z inductor/test_inductor_utils 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_inductor_utils_1.1_1aed9be0adb6024a_.log 2025-08-26T20:49:26.0132836Z 2025-08-26T20:49:26.0136597Z Running inductor/test_b2b_gemm 1/1 ... [2025-08-26 20:49:26.004401] 2025-08-26T20:49:26.0137029Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:49:26.0152817Z 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-26 20:49:26.004401] 2025-08-26T20:49:35.8086302Z 2025-08-26T20:49:35.8087443Z 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_081bcbb9214aeacb_.log 2025-08-26T20:49:35.8088073Z 2025-08-26T20:49:35.8093715Z Running inductor/test_inductor_annotations 1/1 ... [2025-08-26 20:49:35.808947] 2025-08-26T20:49:35.8094175Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:49:35.8101798Z 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-26 20:49:35.809561] 2025-08-26T20:49:45.3736026Z 2025-08-26T20:49:45.3737041Z 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_0dba80c67f06f472_.log 2025-08-26T20:49:45.3737822Z 2025-08-26T20:49:45.3744835Z Running export/test_unflatten_training_ir 1/1 ... [2025-08-26 20:49:45.374320] 2025-08-26T20:49:45.3745281Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:49:45.3752620Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_unflatten_training_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-26 20:49:45.374916] 2025-08-26T20:49:49.6639710Z 2025-08-26T20:49:49.6640630Z export/test_unflatten_training_ir 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_unflatten_training_ir_1.1_146c4f19e60671ae_.log 2025-08-26T20:49:49.6641390Z 2025-08-26T20:49:49.6646814Z Running inductor/test_torchinductor_strided_blocks 1/1 ... [2025-08-26 20:49:49.664352] 2025-08-26T20:49:49.6647515Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:49:49.6654442Z 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-26 20:49:49.664936] 2025-08-26T20:49:59.5548808Z 2025-08-26T20:49:59.5550148Z 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_1533d651ab8b59f3_.log 2025-08-26T20:49:59.5550963Z 2025-08-26T20:49:59.5554682Z Running inductor/test_metrics 1/1 ... [2025-08-26 20:49:59.553180] 2025-08-26T20:49:59.5555120Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:49:59.5560925Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_metrics.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:49:59.553180] 2025-08-26T20:50:09.4265572Z 2025-08-26T20:50:09.4266432Z inductor/test_metrics 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_metrics_1.1_542db67716ea9f01_.log 2025-08-26T20:50:09.4267062Z 2025-08-26T20:50:09.4271380Z Running inductor/test_compile_worker 1/1 ... [2025-08-26 20:50:09.426878] 2025-08-26T20:50:09.4271809Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:50:09.4278134Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_compile_worker.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:50:09.427458] 2025-08-26T20:50:19.1272448Z 2025-08-26T20:50:19.1273728Z inductor/test_compile_worker 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_compile_worker_1.1_ade5778cfacbebc3_.log 2025-08-26T20:50:19.1274436Z 2025-08-26T20:50:19.1278493Z Running inductor/test_remote_cache 1/1 ... [2025-08-26 20:50:19.127322] 2025-08-26T20:50:19.1278999Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:50:19.1285227Z 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-26 20:50:19.127909] 2025-08-26T20:50:23.4777581Z 2025-08-26T20:50:23.4778493Z 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_8d130064bcf82749_.log 2025-08-26T20:50:23.4779160Z 2025-08-26T20:50:23.4783808Z Running export/test_export_strict 1/1 ... [2025-08-26 20:50:23.478292] 2025-08-26T20:50:23.4784274Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:50:23.4790759Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_export_strict.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:50:23.478406] 2025-08-26T20:50:33.4742775Z 2025-08-26T20:50:33.4743891Z export/test_export_strict 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_export_strict_1.1_a781e768fe76f872_.log 2025-08-26T20:50:33.4744583Z 2025-08-26T20:50:33.4749773Z Running export/test_serdes 1/1 ... [2025-08-26 20:50:33.474495] 2025-08-26T20:50:33.4750203Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:50:33.4758846Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_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-26 20:50:33.475668] 2025-08-26T20:50:43.2590621Z 2025-08-26T20:50:43.2591464Z export/test_serdes 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_serdes_1.1_00cd8a0cb0fea1d8_.log 2025-08-26T20:50:43.2592057Z 2025-08-26T20:50:43.2596545Z Running dynamo/test_skip_guard_eval_unsafe 1/1 ... [2025-08-26 20:50:43.256511] 2025-08-26T20:50:43.2596989Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:50:43.2602933Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_skip_guard_eval_unsafe.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:50:43.256511] 2025-08-26T20:50:47.7354844Z 2025-08-26T20:50:47.7355807Z dynamo/test_skip_guard_eval_unsafe 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_skip_guard_eval_unsafe_1.1_d95d1b422eb5af89_.log 2025-08-26T20:50:47.7356502Z 2025-08-26T20:50:47.7360617Z Running inductor/test_foreach 1/1 ... [2025-08-26 20:50:47.729505] 2025-08-26T20:50:47.7361031Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:50:47.7367092Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_foreach.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:50:47.729505] 2025-08-26T20:50:57.5445021Z 2025-08-26T20:50:57.5446118Z inductor/test_foreach 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_foreach_1.1_fbfd26a55452a07f_.log 2025-08-26T20:50:57.5446781Z 2025-08-26T20:50:57.5450620Z Running dynamo/test_frame_init 1/1 ... [2025-08-26 20:50:57.539685] 2025-08-26T20:50:57.5451175Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:50:57.5457153Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_frame_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-26 20:50:57.545268] 2025-08-26T20:51:01.6682729Z 2025-08-26T20:51:01.6683533Z dynamo/test_frame_init 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_frame_init_1.1_5f4da1a0eba0f7ac_.log 2025-08-26T20:51:01.6684160Z 2025-08-26T20:51:01.6688535Z Running inductor/test_fp8 1/1 ... [2025-08-26 20:51:01.666585] 2025-08-26T20:51:01.6688915Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:51:01.6694930Z 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-26 20:51:01.666585] 2025-08-26T20:51:11.3457678Z 2025-08-26T20:51:11.3458508Z inductor/test_fp8 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_fp8_1.1_d79ab5cf17412691_.log 2025-08-26T20:51:11.3459112Z 2025-08-26T20:51:11.3464343Z Running inductor/test_coordinate_descent_tuner 1/1 ... [2025-08-26 20:51:11.346254] 2025-08-26T20:51:11.3464845Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:51:11.3470446Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_coordinate_descent_tuner.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:51:11.346900] 2025-08-26T20:51:21.1075482Z 2025-08-26T20:51:21.1076560Z inductor/test_coordinate_descent_tuner 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_coordinate_descent_tuner_1.1_38b807824f225055_.log 2025-08-26T20:51:21.1077654Z 2025-08-26T20:51:21.1082518Z Running inductor/test_triton_wrapper 1/1 ... [2025-08-26 20:51:21.107737] 2025-08-26T20:51:21.1083007Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:51:21.1096018Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_triton_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-26 20:51:21.108958] 2025-08-26T20:51:31.0801793Z 2025-08-26T20:51:31.0802852Z inductor/test_triton_wrapper 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_triton_wrapper_1.1_0e322c01fc49f5eb_.log 2025-08-26T20:51:31.0803700Z 2025-08-26T20:51:31.0807860Z Running inductor/test_triton_heuristics 1/1 ... [2025-08-26 20:51:31.078399] 2025-08-26T20:51:31.0808385Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:51:31.0814329Z 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-26 20:51:31.078399] 2025-08-26T20:51:40.6532828Z 2025-08-26T20:51:40.6533928Z 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_b28a8bb4e916bcd4_.log 2025-08-26T20:51:40.6534631Z 2025-08-26T20:51:40.6538476Z Running dynamo/test_sdpa 1/1 ... [2025-08-26 20:51:40.646202] 2025-08-26T20:51:40.6538852Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:51:40.6545096Z 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-26 20:51:40.654280] 2025-08-26T20:51:45.0395220Z 2025-08-26T20:51:45.0395992Z dynamo/test_sdpa 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_sdpa_1.1_1d56ce1b2351a070_.log 2025-08-26T20:51:45.0396579Z 2025-08-26T20:51:45.0402241Z Running dynamo/test_utils 1/1 ... [2025-08-26 20:51:45.039800] 2025-08-26T20:51:45.0402632Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:51:45.0410677Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_utils.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:51:45.040381] 2025-08-26T20:51:49.2437791Z 2025-08-26T20:51:49.2438728Z dynamo/test_utils 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_utils_1.1_c482350da47cc0ca_.log 2025-08-26T20:51:49.2439334Z 2025-08-26T20:51:49.2443891Z Running inductor/test_cutlass_evt 1/1 ... [2025-08-26 20:51:49.243299] 2025-08-26T20:51:49.2444341Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:51:49.2450125Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_cutlass_evt.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:51:49.243299] 2025-08-26T20:51:59.0607645Z 2025-08-26T20:51:59.0608581Z inductor/test_cutlass_evt 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_cutlass_evt_1.1_abf8a2766401a40f_.log 2025-08-26T20:51:59.0609246Z 2025-08-26T20:51:59.0613458Z Running inductor/test_select_algorithm 1/1 ... [2025-08-26 20:51:59.056910] 2025-08-26T20:51:59.0613895Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:51:59.0620204Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_select_algorithm.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:51:59.056910] 2025-08-26T20:52:08.8758352Z 2025-08-26T20:52:08.8759287Z inductor/test_select_algorithm 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_select_algorithm_1.1_45c1a0a5ac48f9f6_.log 2025-08-26T20:52:08.8759985Z 2025-08-26T20:52:08.8764072Z Running inductor/test_cutedsl_template 1/1 ... [2025-08-26 20:52:08.863503] 2025-08-26T20:52:08.8764516Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:52:08.8770670Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_cutedsl_template.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:52:08.863503] 2025-08-26T20:52:13.0200066Z 2025-08-26T20:52:13.0200994Z inductor/test_cutedsl_template 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_cutedsl_template_1.1_f3c9082ce6709322_.log 2025-08-26T20:52:13.0201687Z 2025-08-26T20:52:13.0206155Z Running inductor/test_multi_kernel 1/1 ... [2025-08-26 20:52:13.018711] 2025-08-26T20:52:13.0206581Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:52:13.0212657Z 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-26 20:52:13.018711] 2025-08-26T20:52:22.6673915Z 2025-08-26T20:52:22.6674962Z 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_e8527439dfbf7ebf_.log 2025-08-26T20:52:22.6675813Z 2025-08-26T20:52:22.6679901Z Running export/test_cpp_serdes 1/1 ... [2025-08-26 20:52:22.666123] 2025-08-26T20:52:22.6680345Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:52:22.6692366Z 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-26 20:52:22.666123] 2025-08-26T20:52:32.5795189Z 2025-08-26T20:52:32.5796282Z 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_eab4b1b90d103b59_.log 2025-08-26T20:52:32.5796912Z 2025-08-26T20:52:32.5802080Z Running dynamo/test_metrics_context 1/1 ... [2025-08-26 20:52:32.579906] 2025-08-26T20:52:32.5802540Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:52:32.5809871Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_metrics_context.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:52:32.580490] 2025-08-26T20:52:36.7046705Z 2025-08-26T20:52:36.7047879Z dynamo/test_metrics_context 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_metrics_context_1.1_b8409683ec71aa3e_.log 2025-08-26T20:52:36.7048567Z 2025-08-26T20:52:36.7053579Z Running dynamo/test_reconstruct 1/1 ... [2025-08-26 20:52:36.705004] 2025-08-26T20:52:36.7053994Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:52:36.7080164Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_reconstruct.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:52:36.707477] 2025-08-26T20:52:46.3057250Z 2025-08-26T20:52:46.3058482Z dynamo/test_reconstruct 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_reconstruct_1.1_e211455155fea08c_.log 2025-08-26T20:52:46.3059199Z 2025-08-26T20:52:46.3063040Z Running inductor/test_profiler 1/1 ... [2025-08-26 20:52:46.305946] 2025-08-26T20:52:46.3063434Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:52:46.3069793Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_profiler.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:52:46.306533] 2025-08-26T20:52:55.9147992Z 2025-08-26T20:52:55.9149357Z inductor/test_profiler 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_profiler_1.1_2ae0aad1e810de1e_.log 2025-08-26T20:52:55.9150578Z 2025-08-26T20:52:55.9155128Z Running dynamo/test_modules 1/1 ... [2025-08-26 20:52:55.915085] 2025-08-26T20:52:55.9155596Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:52:55.9162961Z 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-26 20:52:55.915666] 2025-08-26T20:53:05.6900638Z 2025-08-26T20:53:05.6901462Z dynamo/test_modules 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_modules_1.1_9bda24e6ce96ead1_.log 2025-08-26T20:53:05.6902073Z 2025-08-26T20:53:05.6906436Z Running dynamo/test_global 1/1 ... [2025-08-26 20:53:05.689352] 2025-08-26T20:53:05.6906834Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:53:05.6914751Z 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-26 20:53:05.690982] 2025-08-26T20:53:10.1952212Z 2025-08-26T20:53:10.1953054Z dynamo/test_global 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_global_1.1_032ee65acf21e719_.log 2025-08-26T20:53:10.1953654Z 2025-08-26T20:53:10.1959370Z Running inductor/test_aot_inductor_utils 1/1 ... [2025-08-26 20:53:10.195493] 2025-08-26T20:53:10.1959800Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:53:10.1967880Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_aot_inductor_utils.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:53:10.196614] 2025-08-26T20:53:20.2701147Z 2025-08-26T20:53:20.2702112Z inductor/test_aot_inductor_utils 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_aot_inductor_utils_1.1_d188a747bec6937e_.log 2025-08-26T20:53:20.2703604Z Running 0 items in this shard: 2025-08-26T20:53:20.2703900Z 2025-08-26T20:53:20.2707247Z Running inductor/test_ordered_set 1/1 ... [2025-08-26 20:53:20.269943] 2025-08-26T20:53:20.2707695Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:53:20.2718560Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_ordered_set.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:53:20.269943] 2025-08-26T20:53:24.4830130Z 2025-08-26T20:53:24.4831361Z inductor/test_ordered_set 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_ordered_set_1.1_cca6e0b86324e3ba_.log 2025-08-26T20:53:24.4832051Z 2025-08-26T20:53:24.4835993Z Running inductor/test_custom_lowering 1/1 ... [2025-08-26 20:53:24.476132] 2025-08-26T20:53:24.4836485Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:53:24.4842436Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_custom_lowering.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:53:24.476132] 2025-08-26T20:53:34.2208591Z 2025-08-26T20:53:34.2209804Z inductor/test_custom_lowering 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_custom_lowering_1.1_0a00bf1ccdb86a53_.log 2025-08-26T20:53:34.2214330Z 2025-08-26T20:53:34.2214632Z Running inductor/test_alignment 1/1 ... [2025-08-26 20:53:34.218403] 2025-08-26T20:53:34.2215109Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:53:34.2221111Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_alignment.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:53:34.221493] 2025-08-26T20:53:44.0273558Z 2025-08-26T20:53:44.0274477Z inductor/test_alignment 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_alignment_1.1_6d2f0e1c480b39c3_.log 2025-08-26T20:53:44.0275122Z 2025-08-26T20:53:44.0279490Z Running dynamo/test_install_free_tensors 1/1 ... [2025-08-26 20:53:44.026237] 2025-08-26T20:53:44.0279966Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:53:44.0285726Z 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-26 20:53:44.026237] 2025-08-26T20:53:48.5293436Z 2025-08-26T20:53:48.5294392Z 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_ec73d4b303ce31ac_.log 2025-08-26T20:53:48.5295287Z 2025-08-26T20:53:48.5299453Z Running inductor/test_scatter_optimization 1/1 ... [2025-08-26 20:53:48.529863] 2025-08-26T20:53:48.5299960Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:53:48.5306321Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_scatter_optimization.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:53:48.530487] 2025-08-26T20:53:58.2690584Z 2025-08-26T20:53:58.2691686Z inductor/test_scatter_optimization 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_scatter_optimization_1.1_5bbe3d2180a004cc_.log 2025-08-26T20:53:58.2696441Z 2025-08-26T20:53:58.2696997Z Running inductor/test_torchinductor_codegen_config_overrides 1/1 ... [2025-08-26 20:53:58.269574] 2025-08-26T20:53:58.2697598Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:53:58.2703199Z 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-26 20:53:58.269574] 2025-08-26T20:54:08.1730937Z 2025-08-26T20:54:08.1732085Z 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_687a1fd824ef31ef_.log 2025-08-26T20:54:08.1732955Z 2025-08-26T20:54:08.1737194Z Running dynamo/test_sources 1/1 ... [2025-08-26 20:54:08.172997] 2025-08-26T20:54:08.1737673Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:54:08.1743861Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_sources.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:54:08.174117] 2025-08-26T20:54:12.5158496Z 2025-08-26T20:54:12.5159462Z dynamo/test_sources 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_sources_1.1_6744549e228ab3b3_.log 2025-08-26T20:54:12.5160079Z 2025-08-26T20:54:12.5164352Z Running inductor/test_needs_exact_strides 1/1 ... [2025-08-26 20:54:12.511316] 2025-08-26T20:54:12.5164809Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:54:12.5171515Z 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-26 20:54:12.511316] 2025-08-26T20:54:22.3728316Z 2025-08-26T20:54:22.3729349Z 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_081326874eece22d_.log 2025-08-26T20:54:22.3730059Z 2025-08-26T20:54:22.3734386Z Running dynamo/test_base_hop 1/1 ... [2025-08-26 20:54:22.372807] 2025-08-26T20:54:22.3734853Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:54:22.3740561Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_base_hop.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:54:22.373414] 2025-08-26T20:54:26.7774732Z 2025-08-26T20:54:26.7775763Z dynamo/test_base_hop 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_base_hop_1.1_441eafc20e23fe6d_.log 2025-08-26T20:54:26.7776551Z 2025-08-26T20:54:26.7780961Z Running dynamo/test_backward_higher_order_ops 1/1 ... [2025-08-26 20:54:26.777625] 2025-08-26T20:54:26.7781484Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:54:26.7792516Z 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-26 20:54:26.778778] 2025-08-26T20:54:31.1179070Z 2025-08-26T20:54:31.1180050Z 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_254cdc8d923eb29c_.log 2025-08-26T20:54:31.1180821Z 2025-08-26T20:54:31.1186425Z Running dynamo/test_debug_utils 1/1 ... [2025-08-26 20:54:31.118334] 2025-08-26T20:54:31.1186892Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:54:31.1192912Z 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-26 20:54:31.118334] 2025-08-26T20:54:36.0018527Z 2025-08-26T20:54:36.0019783Z 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_440b36ed3f986246_.log 2025-08-26T20:54:36.0020436Z 2025-08-26T20:54:36.0024446Z Running dynamo/test_verify_correctness 1/1 ... [2025-08-26 20:54:36.000885] 2025-08-26T20:54:36.0024950Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:54:36.0030641Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_verify_correctness.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:54:36.000885] 2025-08-26T20:54:40.5085269Z 2025-08-26T20:54:40.5086606Z dynamo/test_verify_correctness 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_verify_correctness_1.1_db9f0b5780d8bf99_.log 2025-08-26T20:54:40.5087323Z 2025-08-26T20:54:40.5091024Z Running dynamo/test_python_dispatcher 1/1 ... [2025-08-26 20:54:40.505488] 2025-08-26T20:54:40.5091474Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:54:40.5097376Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_python_dispatcher.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:54:40.505488] 2025-08-26T20:54:45.3375383Z 2025-08-26T20:54:45.3376385Z dynamo/test_python_dispatcher 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_python_dispatcher_1.1_b70695ba059d4004_.log 2025-08-26T20:54:45.3377371Z 2025-08-26T20:54:45.3381192Z Running inductor/test_efficient_conv_bn_eval 1/1 ... [2025-08-26 20:54:45.337696] 2025-08-26T20:54:45.3381701Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:54:45.3388206Z 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-26 20:54:45.338264] 2025-08-26T20:54:55.2161788Z 2025-08-26T20:54:55.2162788Z 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_b6d9ea9a0b6067f1_.log 2025-08-26T20:54:55.2163563Z 2025-08-26T20:54:55.2167667Z Running dynamo/test_aot_autograd 1/1 ... [2025-08-26 20:54:55.215599] 2025-08-26T20:54:55.2168112Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:54:55.2174618Z 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-26 20:54:55.215599] 2025-08-26T20:54:59.6900478Z 2025-08-26T20:54:59.6901646Z 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_341bdc8680021dc6_.log 2025-08-26T20:54:59.6902295Z 2025-08-26T20:54:59.6906568Z Running dynamo/test_unspec 1/1 ... [2025-08-26 20:54:59.689832] 2025-08-26T20:54:59.6906999Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:54:59.6912712Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_unspec.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:54:59.689832] 2025-08-26T20:55:04.5123466Z 2025-08-26T20:55:04.5124422Z dynamo/test_unspec 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_unspec_1.1_1791894335700aff_.log 2025-08-26T20:55:04.5129117Z 2025-08-26T20:55:04.5129431Z Running dynamo/test_cudagraphs_expandable_segments 1/1 ... [2025-08-26 20:55:04.512346] 2025-08-26T20:55:04.5129974Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:55:04.5136048Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_cudagraphs_expandable_segments.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:55:04.513461] 2025-08-26T20:55:09.3746085Z 2025-08-26T20:55:09.3747187Z dynamo/test_cudagraphs_expandable_segments 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_cudagraphs_expandable_segments_1.1_03bf10dd60202aa6_.log 2025-08-26T20:55:09.3748065Z 2025-08-26T20:55:09.3751662Z Running dynamo/test_input_attr_tracking 1/1 ... [2025-08-26 20:55:09.372304] 2025-08-26T20:55:09.3752347Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:55:09.3758381Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_input_attr_tracking.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:55:09.372304] 2025-08-26T20:55:13.7939960Z 2025-08-26T20:55:13.7940933Z dynamo/test_input_attr_tracking 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_input_attr_tracking_1.1_00a08c9700df6862_.log 2025-08-26T20:55:13.7941634Z 2025-08-26T20:55:13.7945660Z Running dynamo/test_einops 1/1 ... [2025-08-26 20:55:13.791330] 2025-08-26T20:55:13.7946255Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:55:13.7952211Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_einops.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:55:13.791330] 2025-08-26T20:55:18.0249798Z 2025-08-26T20:55:18.0250689Z dynamo/test_einops 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_einops_1.1_71da712b0d49030f_.log 2025-08-26T20:55:18.0251293Z 2025-08-26T20:55:18.0255372Z Running dynamo/test_guard_manager 1/1 ... [2025-08-26 20:55:18.022696] 2025-08-26T20:55:18.0255822Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:55:18.0262088Z 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-26 20:55:18.022696] 2025-08-26T20:55:22.2392908Z 2025-08-26T20:55:22.2393982Z 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_aa3fd3aff528430d_.log 2025-08-26T20:55:22.2394679Z 2025-08-26T20:55:22.2398800Z Running dynamo/test_activation_checkpointing 1/1 ... [2025-08-26 20:55:22.238065] 2025-08-26T20:55:22.2399311Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:55:22.2405190Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_activation_checkpointing.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:55:22.238065] 2025-08-26T20:55:31.8846277Z 2025-08-26T20:55:31.8847473Z dynamo/test_activation_checkpointing 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_activation_checkpointing_1.1_e7e1a02874adb451_.log 2025-08-26T20:55:31.8848284Z 2025-08-26T20:55:31.8853269Z Running dynamo/test_precompile_context 1/1 ... [2025-08-26 20:55:31.884987] 2025-08-26T20:55:31.8853726Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:55:31.8860998Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_precompile_context.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:55:31.885567] 2025-08-26T20:55:41.4735077Z 2025-08-26T20:55:41.4736106Z dynamo/test_precompile_context 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_precompile_context_1.1_26193912d44464e7_.log 2025-08-26T20:55:41.4736833Z 2025-08-26T20:55:41.4740815Z Running dynamo/test_reorder_logs 1/1 ... [2025-08-26 20:55:41.463234] 2025-08-26T20:55:41.4741298Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:55:41.4747863Z 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-26 20:55:41.463234] 2025-08-26T20:55:45.9144421Z 2025-08-26T20:55:45.9145445Z 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_1c91abfb487a6000_.log 2025-08-26T20:55:45.9146181Z 2025-08-26T20:55:45.9150278Z Running export/test_sparse 2/2 ... [2025-08-26 20:55:45.914572] 2025-08-26T20:55:45.9150709Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:55:45.9156887Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_sparse.py', '-m', 'serial', '--shard-id=2', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:55:45.915143] 2025-08-26T20:55:50.2623218Z 2025-08-26T20:55:50.2624105Z export/test_sparse 2/2 was successful, full logs can be found in artifacts with path test/test-reports/export.test_sparse_2.2_164a6ea1b0e22235_.log 2025-08-26T20:55:50.2624837Z Running 0 items in this shard: 2025-08-26T20:55:50.2625049Z 2025-08-26T20:55:50.2629042Z Running test_autograd 1/1 ... [2025-08-26 20:55:50.260430] 2025-08-26T20:55:50.2629453Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:55:50.2635478Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_autograd.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:55:50.260430] 2025-08-26T20:55:56.3506890Z 2025-08-26T20:55:56.3507847Z test_autograd 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_autograd_1.1_47d2c5a51e0b3e0b_.log 2025-08-26T20:55:56.3508543Z Running 0 items in this shard: 2025-08-26T20:55:56.3508764Z 2025-08-26T20:55:56.3512742Z Running test_ao_sparsity 1/1 ... [2025-08-26 20:55:56.348980] 2025-08-26T20:55:56.3513165Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:55:56.3519252Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ao_sparsity.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:55:56.348980] 2025-08-26T20:56:00.9589416Z 2025-08-26T20:56:00.9590218Z test_ao_sparsity 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_ao_sparsity_1.1_a18748e0452ab7d0_.log 2025-08-26T20:56:00.9590931Z Running 0 items in this shard: 2025-08-26T20:56:00.9591117Z 2025-08-26T20:56:00.9596703Z Running functorch/test_rearrange 1/1 ... [2025-08-26 20:56:00.959239] 2025-08-26T20:56:00.9597175Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:56:00.9603159Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_rearrange.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:56:00.959239] 2025-08-26T20:56:05.2364705Z 2025-08-26T20:56:05.2365688Z functorch/test_rearrange 1/1 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_rearrange_1.1_5f8d269c8697d55d_.log 2025-08-26T20:56:05.2366492Z Running 0 items in this shard: 2025-08-26T20:56:05.2366675Z 2025-08-26T20:56:05.2371001Z Running functorch/test_parsing 1/1 ... [2025-08-26 20:56:05.236768] 2025-08-26T20:56:05.2371424Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:56:05.2377955Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_parsing.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:56:05.237366] 2025-08-26T20:56:09.5096388Z 2025-08-26T20:56:09.5097649Z functorch/test_parsing 1/1 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_parsing_1.1_01acf18e6e64451b_.log 2025-08-26T20:56:09.5098451Z Running 0 items in this shard: 2025-08-26T20:56:09.5098695Z 2025-08-26T20:56:09.5102639Z Running test_package 1/1 ... [2025-08-26 20:56:09.509880] 2025-08-26T20:56:09.5103025Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:56:09.5109695Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', '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-26 20:56:09.510464] 2025-08-26T20:56:13.8333075Z 2025-08-26T20:56:13.8334023Z test_package 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_package_1.1_f6bb8d7bc1754aa4_.log 2025-08-26T20:56:13.8334730Z Running 0 items in this shard: 2025-08-26T20:56:13.8334917Z 2025-08-26T20:56:13.8339338Z Running profiler/test_kineto 1/1 ... [2025-08-26 20:56:13.829308] 2025-08-26T20:56:13.8339765Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:56:13.8345591Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'profiler/test_kineto.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:56:13.829308] 2025-08-26T20:56:18.1347562Z 2025-08-26T20:56:18.1348443Z profiler/test_kineto 1/1 was successful, full logs can be found in artifacts with path test/test-reports/profiler.test_kineto_1.1_4b633077a7eec1d4_.log 2025-08-26T20:56:18.1349225Z Running 0 items in this shard: 2025-08-26T20:56:18.1349434Z 2025-08-26T20:56:18.1353914Z Running higher_order_ops/test_invoke_subgraph 1/1 ... [2025-08-26 20:56:18.135270] 2025-08-26T20:56:18.1354433Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:56:18.1361028Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'higher_order_ops/test_invoke_subgraph.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:56:18.135917] 2025-08-26T20:56:27.9790591Z 2025-08-26T20:56:27.9791790Z higher_order_ops/test_invoke_subgraph 1/1 was successful, full logs can be found in artifacts with path test/test-reports/higher_order_ops.test_invoke_subgraph_1.1_701dc9919268e3fe_.log 2025-08-26T20:56:27.9792648Z Running 0 items in this shard: 2025-08-26T20:56:27.9792860Z 2025-08-26T20:56:27.9797868Z Running test_comparison_utils 1/1 ... [2025-08-26 20:56:27.979368] 2025-08-26T20:56:27.9798278Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:56:27.9805693Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_comparison_utils.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:56:27.979949] 2025-08-26T20:56:32.3175857Z 2025-08-26T20:56:32.3176974Z test_comparison_utils 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_comparison_utils_1.1_03d0e639804a03aa_.log 2025-08-26T20:56:32.3177737Z Running 0 items in this shard: 2025-08-26T20:56:32.3177920Z 2025-08-26T20:56:32.3182049Z Running functorch/test_ac_logging 1/1 ... [2025-08-26 20:56:32.317845] 2025-08-26T20:56:32.3182545Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:56:32.3188383Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_ac_logging.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:56:32.318415] 2025-08-26T20:56:36.6455665Z 2025-08-26T20:56:36.6456622Z functorch/test_ac_logging 1/1 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_ac_logging_1.1_bfa903503cc24ca7_.log 2025-08-26T20:56:36.6457598Z Running 0 items in this shard: 2025-08-26T20:56:36.6457810Z 2025-08-26T20:56:36.6461748Z Running test_mkl_verbose 1/1 ... [2025-08-26 20:56:36.646064] 2025-08-26T20:56:36.6462167Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:56:36.6468200Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_mkl_verbose.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:56:36.646633] 2025-08-26T20:56:40.9936589Z 2025-08-26T20:56:40.9937471Z test_mkl_verbose 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_mkl_verbose_1.1_ff77c8f8a2a8e1d3_.log 2025-08-26T20:56:40.9938371Z Running 0 items in this shard: 2025-08-26T20:56:40.9938574Z 2025-08-26T20:56:40.9942853Z Running test_decomp 1/17 ... [2025-08-26 20:56:40.993663] 2025-08-26T20:56:40.9943268Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:56:40.9949408Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'serial', '--shard-id=1', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:56:40.993663] 2025-08-26T20:56:49.2529748Z 2025-08-26T20:56:49.2530831Z test_decomp 1/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_1.17_dea351187907c8ca_.log 2025-08-26T20:56:49.2531517Z Running 0 items in this shard: 2025-08-26T20:56:49.2531706Z 2025-08-26T20:56:49.2535905Z Running test_decomp 5/17 ... [2025-08-26 20:56:49.245722] 2025-08-26T20:56:49.2536326Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:56:49.2547970Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'serial', '--shard-id=5', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:56:49.245722] 2025-08-26T20:56:57.5183208Z 2025-08-26T20:56:57.5184132Z test_decomp 5/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_5.17_f64f9315b1eb79d4_.log 2025-08-26T20:56:57.5184882Z Running 0 items in this shard: 2025-08-26T20:56:57.5185071Z 2025-08-26T20:56:57.5189450Z Running test_decomp 6/17 ... [2025-08-26 20:56:57.518457] 2025-08-26T20:56:57.5189831Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:56:57.5196370Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'serial', '--shard-id=6', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:56:57.519032] 2025-08-26T20:57:05.8206945Z 2025-08-26T20:57:05.8207792Z test_decomp 6/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_6.17_7e186bc85ff12504_.log 2025-08-26T20:57:05.8208502Z Running 0 items in this shard: 2025-08-26T20:57:05.8208698Z 2025-08-26T20:57:05.8213449Z Running test_decomp 7/17 ... [2025-08-26 20:57:05.821230] 2025-08-26T20:57:05.8213870Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:57:05.8219807Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'serial', '--shard-id=7', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:57:05.821807] 2025-08-26T20:57:14.0537245Z 2025-08-26T20:57:14.0538054Z test_decomp 7/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_7.17_9f5b7ffb7e1cf833_.log 2025-08-26T20:57:14.0538767Z Running 0 items in this shard: 2025-08-26T20:57:14.0538949Z 2025-08-26T20:57:14.0543081Z Running test_decomp 11/17 ... [2025-08-26 20:57:14.052209] 2025-08-26T20:57:14.0543481Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:57:14.0550345Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'serial', '--shard-id=11', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:57:14.052209] 2025-08-26T20:57:22.4122150Z 2025-08-26T20:57:22.4122914Z test_decomp 11/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_11.17_b33ff68567761ece_.log 2025-08-26T20:57:22.4123590Z Running 0 items in this shard: 2025-08-26T20:57:22.4123799Z 2025-08-26T20:57:22.4128234Z Running test_decomp 12/17 ... [2025-08-26 20:57:22.407612] 2025-08-26T20:57:22.4128891Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:57:22.4134665Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'serial', '--shard-id=12', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:57:22.407612] 2025-08-26T20:57:30.5568960Z 2025-08-26T20:57:30.5569703Z test_decomp 12/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_12.17_3b386765e368cccb_.log 2025-08-26T20:57:30.5570378Z Running 0 items in this shard: 2025-08-26T20:57:30.5570593Z 2025-08-26T20:57:30.5574606Z Running test_decomp 14/17 ... [2025-08-26 20:57:30.554342] 2025-08-26T20:57:30.5575015Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:57:30.5581973Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'serial', '--shard-id=14', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:57:30.557887] 2025-08-26T20:57:38.7384798Z 2025-08-26T20:57:38.7385963Z test_decomp 14/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_14.17_89c61d1673d22a35_.log 2025-08-26T20:57:38.7386822Z Running 0 items in this shard: 2025-08-26T20:57:38.7387039Z 2025-08-26T20:57:38.7392833Z Running test_transformers 1/2 ... [2025-08-26 20:57:38.739160] 2025-08-26T20:57:38.7393269Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:57:38.7400938Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_transformers.py', '-m', 'serial', '--shard-id=1', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:57:38.739753] 2025-08-26T20:57:45.8247787Z 2025-08-26T20:57:45.8248660Z test_transformers 1/2 was successful, full logs can be found in artifacts with path test/test-reports/test_transformers_1.2_cf2e991bf92af2bf_.log 2025-08-26T20:57:45.8249395Z Running 0 items in this shard: 2025-08-26T20:57:45.8249611Z 2025-08-26T20:57:45.8254940Z Running test_transformers 2/2 ... [2025-08-26 20:57:45.825153] 2025-08-26T20:57:45.8255382Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:57:45.8262590Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_transformers.py', '-m', 'serial', '--shard-id=2', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:57:45.825735] 2025-08-26T20:57:52.9602778Z 2025-08-26T20:57:52.9603804Z test_transformers 2/2 was successful, full logs can be found in artifacts with path test/test-reports/test_transformers_2.2_fe69c9ec7ac0ffb5_.log 2025-08-26T20:57:52.9604578Z Running 0 items in this shard: 2025-08-26T20:57:52.9604764Z 2025-08-26T20:57:52.9608840Z Running test_modules 2/2 ... [2025-08-26 20:57:52.957224] 2025-08-26T20:57:52.9609298Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:57:52.9615271Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_modules.py', '-m', 'serial', '--shard-id=2', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:57:52.957224] 2025-08-26T20:57:59.7475081Z 2025-08-26T20:57:59.7475853Z test_modules 2/2 was successful, full logs can be found in artifacts with path test/test-reports/test_modules_2.2_788e480c301058f5_.log 2025-08-26T20:57:59.7476539Z Running 0 items in this shard: 2025-08-26T20:57:59.7476726Z 2025-08-26T20:57:59.7481260Z Running test_appending_byte_serializer 1/1 ... [2025-08-26 20:57:59.744275] 2025-08-26T20:57:59.7481753Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:57:59.7488685Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_appending_byte_serializer.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:57:59.744275] 2025-08-26T20:58:03.9082349Z 2025-08-26T20:58:03.9083331Z test_appending_byte_serializer 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_appending_byte_serializer_1.1_3e4e755a6567a129_.log 2025-08-26T20:58:03.9084023Z 2025-08-26T20:58:03.9089669Z Running test_matmul_cuda 1/1 ... [2025-08-26 20:58:03.908516] 2025-08-26T20:58:03.9090065Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:58:03.9099803Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_matmul_cuda.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:58:03.909755] 2025-08-26T20:58:08.6271773Z 2025-08-26T20:58:08.6272843Z test_matmul_cuda 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_matmul_cuda_1.1_0e589c8fee7566bd_.log 2025-08-26T20:58:08.6273589Z Running 0 items in this shard: 2025-08-26T20:58:08.6273925Z 2025-08-26T20:58:08.6277564Z Running test_license 1/1 ... [2025-08-26 20:58:08.625267] 2025-08-26T20:58:08.6277941Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:58:08.6283941Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_license.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:58:08.625267] 2025-08-26T20:58:12.9168855Z 2025-08-26T20:58:12.9170023Z test_license 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_license_1.1_b66b78196036d482_.log 2025-08-26T20:58:12.9170710Z Running 0 items in this shard: 2025-08-26T20:58:12.9170895Z 2025-08-26T20:58:12.9176806Z Running test_autoload 1/1 ... [2025-08-26 20:58:12.917280] 2025-08-26T20:58:12.9177240Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:58:12.9184913Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_autoload.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:58:12.917894] 2025-08-26T20:58:17.3001309Z 2025-08-26T20:58:17.3002145Z test_autoload 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_autoload_1.1_fda3763af4892431_.log 2025-08-26T20:58:17.3002811Z Running 0 items in this shard: 2025-08-26T20:58:17.3003014Z 2025-08-26T20:58:17.3007504Z Running functorch/test_dims 1/1 ... [2025-08-26 20:58:17.296633] 2025-08-26T20:58:17.3007949Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:58:17.3013637Z 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-26 20:58:17.296633] 2025-08-26T20:58:21.6452039Z 2025-08-26T20:58:21.6453103Z functorch/test_dims 1/1 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_dims_1.1_502d39f01062e966_.log 2025-08-26T20:58:21.6453853Z Running 0 items in this shard: 2025-08-26T20:58:21.6454041Z 2025-08-26T20:58:21.6459191Z Running test_rename_privateuse1_to_existing_device 1/1 ... [2025-08-26 20:58:21.638750] 2025-08-26T20:58:21.6459681Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:58:21.6468891Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_rename_privateuse1_to_existing_device.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:58:21.638750] 2025-08-26T20:58:26.0071400Z 2025-08-26T20:58:26.0072640Z test_rename_privateuse1_to_existing_device 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_rename_privateuse1_to_existing_device_1.1_43fac0f490a8173e_.log 2025-08-26T20:58:26.0073627Z Running 0 items in this shard: 2025-08-26T20:58:26.0073837Z 2025-08-26T20:58:26.0078973Z Running torch_np/test_binary_ufuncs 1/1 ... [2025-08-26 20:58:26.007635] 2025-08-26T20:58:26.0079430Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:58:26.0085611Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/test_binary_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-26 20:58:26.007635] 2025-08-26T20:58:30.3617253Z 2025-08-26T20:58:30.3618299Z torch_np/test_binary_ufuncs 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.test_binary_ufuncs_1.1_a7911fb1a79728d4_.log 2025-08-26T20:58:30.3619126Z Running 0 items in this shard: 2025-08-26T20:58:30.3619340Z 2025-08-26T20:58:30.3623224Z Running typing/test_python_operators 1/1 ... [2025-08-26 20:58:30.356503] 2025-08-26T20:58:30.3623846Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:58:30.3629651Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'typing/test_python_operators.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:58:30.356503] 2025-08-26T20:58:34.6858906Z 2025-08-26T20:58:34.6859902Z typing/test_python_operators 1/1 was successful, full logs can be found in artifacts with path test/test-reports/typing.test_python_operators_1.1_adce247a68284457_.log 2025-08-26T20:58:34.6860740Z Running 0 items in this shard: 2025-08-26T20:58:34.6860922Z 2025-08-26T20:58:34.6864996Z Running torch_np/test_unary_ufuncs 1/1 ... [2025-08-26 20:58:34.673941] 2025-08-26T20:58:34.6865438Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:58:34.6871539Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/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-26 20:58:34.673941] 2025-08-26T20:58:38.9843295Z 2025-08-26T20:58:38.9844434Z torch_np/test_unary_ufuncs 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.test_unary_ufuncs_1.1_f067e431148522d3_.log 2025-08-26T20:58:38.9845240Z Running 0 items in this shard: 2025-08-26T20:58:38.9845428Z 2025-08-26T20:58:38.9849369Z Running test_proxy_tensor 1/2 ... [2025-08-26 20:58:38.984136] 2025-08-26T20:58:38.9849825Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:58:38.9855706Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_proxy_tensor.py', '-m', 'serial', '--shard-id=1', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:58:38.984136] 2025-08-26T20:58:46.3918719Z 2025-08-26T20:58:46.3919842Z test_proxy_tensor 1/2 was successful, full logs can be found in artifacts with path test/test-reports/test_proxy_tensor_1.2_6cca2d270966220f_.log 2025-08-26T20:58:46.3920563Z Running 0 items in this shard: 2025-08-26T20:58:46.3925638Z 2025-08-26T20:58:46.3925852Z Running functorch/test_ops 3/8 ... [2025-08-26 20:58:46.392254] 2025-08-26T20:58:46.3926289Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:58:46.3932536Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_ops.py', '-m', 'serial', '--shard-id=3', '--num-shards=8', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:58:46.392254] 2025-08-26T20:58:55.3016747Z 2025-08-26T20:58:55.3017852Z functorch/test_ops 3/8 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_ops_3.8_32bef7c81edd00f0_.log 2025-08-26T20:58:55.3018804Z Running 0 items in this shard: 2025-08-26T20:58:55.3019007Z 2025-08-26T20:58:55.3022639Z Running functorch/test_ops 4/8 ... [2025-08-26 20:58:55.294302] 2025-08-26T20:58:55.3023086Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:58:55.3037575Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_ops.py', '-m', 'serial', '--shard-id=4', '--num-shards=8', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:58:55.294302] 2025-08-26T20:59:04.1947929Z 2025-08-26T20:59:04.1948839Z functorch/test_ops 4/8 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_ops_4.8_8c68b9d873f3917c_.log 2025-08-26T20:59:04.1949551Z Running 0 items in this shard: 2025-08-26T20:59:04.1949745Z 2025-08-26T20:59:04.1954212Z Running functorch/test_ops 8/8 ... [2025-08-26 20:59:04.195346] 2025-08-26T20:59:04.1960079Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:59:04.1961295Z 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-26 20:59:04.195407] 2025-08-26T20:59:13.0209224Z 2025-08-26T20:59:13.0210342Z functorch/test_ops 8/8 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_ops_8.8_cba93b63b0635fbe_.log 2025-08-26T20:59:13.0211097Z Running 0 items in this shard: 2025-08-26T20:59:13.0214887Z 2025-08-26T20:59:13.0215048Z Running test_ops 3/9 ... [2025-08-26 20:59:13.018623] 2025-08-26T20:59:13.0215453Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:59:13.0221678Z 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-26 20:59:13.021705] 2025-08-26T20:59:32.0696796Z 2025-08-26T20:59:32.0697665Z test_ops 3/9 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_3.9_db1a3375e157c570_.log 2025-08-26T20:59:32.0698312Z Running 0 items in this shard: 2025-08-26T20:59:32.0698524Z 2025-08-26T20:59:32.0703354Z Running test_ops 4/9 ... [2025-08-26 20:59:32.070034] 2025-08-26T20:59:32.0703779Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:59:32.1108513Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops.py', '-m', 'serial', '--shard-id=4', '--num-shards=9', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 20:59:32.109544] 2025-08-26T20:59:50.8514353Z 2025-08-26T20:59:50.8515089Z test_ops 4/9 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_4.9_273dd65d6f2fa546_.log 2025-08-26T20:59:50.8515765Z Running 0 items in this shard: 2025-08-26T20:59:50.8515963Z 2025-08-26T20:59:50.8520619Z Running test_ops 9/9 ... [2025-08-26 20:59:50.851034] 2025-08-26T20:59:50.8521195Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T20:59:50.8527340Z 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-26 20:59:50.851034] 2025-08-26T21:00:09.6846798Z 2025-08-26T21:00:09.6847612Z test_ops 9/9 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_9.9_fd85c73e3a62e143_.log 2025-08-26T21:00:09.6848284Z Running 0 items in this shard: 2025-08-26T21:00:09.6848463Z 2025-08-26T21:00:09.6852785Z Running test_jiterator 1/1 ... [2025-08-26 21:00:09.684949] 2025-08-26T21:00:09.6853340Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:00:09.6859288Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_jiterator.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:00:09.685518] 2025-08-26T21:00:14.1877375Z 2025-08-26T21:00:14.1878223Z test_jiterator 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_jiterator_1.1_7d7fec76a9fdff06_.log 2025-08-26T21:00:14.1878919Z Running 0 items in this shard: 2025-08-26T21:00:14.1879136Z 2025-08-26T21:00:14.1883832Z Running test_meta 3/4 ... [2025-08-26 21:00:14.180091] 2025-08-26T21:00:14.1884275Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:00:14.1889808Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_meta.py', '-m', 'serial', '--shard-id=3', '--num-shards=4', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:00:14.180091] 2025-08-26T21:00:29.3576905Z 2025-08-26T21:00:29.3577767Z test_meta 3/4 was successful, full logs can be found in artifacts with path test/test-reports/test_meta_3.4_8d107fbc1b00ff42_.log 2025-08-26T21:00:29.3578450Z Running 0 items in this shard: 2025-08-26T21:00:29.3578665Z 2025-08-26T21:00:29.3582860Z Running test_meta 4/4 ... [2025-08-26 21:00:29.352752] 2025-08-26T21:00:29.3583257Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:00:29.3589251Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_meta.py', '-m', 'serial', '--shard-id=4', '--num-shards=4', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:00:29.352752] 2025-08-26T21:00:44.6130486Z 2025-08-26T21:00:44.6131539Z test_meta 4/4 was successful, full logs can be found in artifacts with path test/test-reports/test_meta_4.4_57b09dd16dae44e8_.log 2025-08-26T21:00:44.6132239Z Running 0 items in this shard: 2025-08-26T21:00:44.6132426Z 2025-08-26T21:00:44.6136668Z Running functorch/test_ac 1/1 ... [2025-08-26 21:00:44.607937] 2025-08-26T21:00:44.6137072Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:00:44.6143186Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_ac.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:00:44.607937] 2025-08-26T21:00:54.0909940Z 2025-08-26T21:00:54.0911021Z functorch/test_ac 1/1 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_ac_1.1_0e614463601855f6_.log 2025-08-26T21:00:54.0911639Z 2025-08-26T21:00:54.0916949Z Running test_ops_fwd_gradients 2/2 ... [2025-08-26 21:00:54.091319] 2025-08-26T21:00:54.0917405Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:00:54.0924832Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops_fwd_gradients.py', '-m', 'serial', '--shard-id=2', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:00:54.091900] 2025-08-26T21:01:00.4854737Z 2025-08-26T21:01:00.4855689Z test_ops_fwd_gradients 2/2 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_fwd_gradients_2.2_2b454f08a6489212_.log 2025-08-26T21:01:00.4856586Z Running 0 items in this shard: 2025-08-26T21:01:00.4856776Z 2025-08-26T21:01:00.4861684Z Running test_functionalization_of_rng_ops 1/1 ... [2025-08-26 21:01:00.486067] 2025-08-26T21:01:00.4862198Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:01:00.4868851Z 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-26 21:01:00.486485] 2025-08-26T21:01:05.3996764Z 2025-08-26T21:01:05.3997855Z 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_6867d072d1208a04_.log 2025-08-26T21:01:05.3998571Z 2025-08-26T21:01:05.4004870Z Running optim/test_lrscheduler 1/1 ... [2025-08-26 21:01:05.400333] 2025-08-26T21:01:05.4005300Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:01:05.4012518Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'optim/test_lrscheduler.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:01:05.400929] 2025-08-26T21:01:09.5435695Z 2025-08-26T21:01:09.5436557Z optim/test_lrscheduler 1/1 was successful, full logs can be found in artifacts with path test/test-reports/optim.test_lrscheduler_1.1_878cea9502388da1_.log 2025-08-26T21:01:09.5437270Z 2025-08-26T21:01:09.5441734Z Running optim/test_optim 1/1 ... [2025-08-26 21:01:09.543732] 2025-08-26T21:01:09.5442292Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:01:09.5448430Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'optim/test_optim.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:01:09.544327] 2025-08-26T21:01:13.6540518Z 2025-08-26T21:01:13.6541355Z optim/test_optim 1/1 was successful, full logs can be found in artifacts with path test/test-reports/optim.test_optim_1.1_58f45175444dbcee_.log 2025-08-26T21:01:13.6541943Z 2025-08-26T21:01:13.6546422Z Running functorch/test_vmap 2/2 ... [2025-08-26 21:01:13.645073] 2025-08-26T21:01:13.6546817Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:01:13.6553004Z 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-26 21:01:13.655155] 2025-08-26T21:01:20.2861898Z 2025-08-26T21:01:20.2862948Z functorch/test_vmap 2/2 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_vmap_2.2_1a696b74bf63119a_.log 2025-08-26T21:01:20.2863675Z Running 0 items in this shard: 2025-08-26T21:01:20.2863885Z 2025-08-26T21:01:20.2868458Z Running test_mkldnn 1/1 ... [2025-08-26 21:01:20.286281] 2025-08-26T21:01:20.2868929Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:01:20.2874639Z 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-26 21:01:20.286877] 2025-08-26T21:01:24.9823265Z 2025-08-26T21:01:24.9824052Z test_mkldnn 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_mkldnn_1.1_ba8825e726ea9465_.log 2025-08-26T21:01:24.9824731Z Running 0 items in this shard: 2025-08-26T21:01:24.9825169Z 2025-08-26T21:01:24.9830547Z Running torch_np/numpy_tests/core/test_dlpack 1/1 ... [2025-08-26 21:01:24.982632] 2025-08-26T21:01:24.9831052Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:01:24.9838218Z 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-26 21:01:24.983213] 2025-08-26T21:01:29.2513734Z 2025-08-26T21:01:29.2514776Z 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_6f2a684d004e5d0a_.log 2025-08-26T21:01:29.2515805Z Running 0 items in this shard: 2025-08-26T21:01:29.2516010Z 2025-08-26T21:01:29.2519697Z Running test_unary_ufuncs 1/1 ... [2025-08-26 21:01:29.244201] 2025-08-26T21:01:29.2520112Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:01:29.2526427Z 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-26 21:01:29.244201] 2025-08-26T21:01:40.4784675Z 2025-08-26T21:01:40.4785840Z test_unary_ufuncs 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_unary_ufuncs_1.1_43a8b771a8b41abc_.log 2025-08-26T21:01:40.4786538Z Running 0 items in this shard: 2025-08-26T21:01:40.4786756Z 2025-08-26T21:01:40.4792843Z Running test_xnnpack_integration 1/1 ... [2025-08-26 21:01:40.479128] 2025-08-26T21:01:40.4793300Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:01:40.4800686Z 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-26 21:01:40.479745] 2025-08-26T21:01:44.8747029Z 2025-08-26T21:01:44.8748209Z test_xnnpack_integration 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_xnnpack_integration_1.1_5be777b0d06dfadf_.log 2025-08-26T21:01:44.8748982Z Running 0 items in this shard: 2025-08-26T21:01:44.8749193Z 2025-08-26T21:01:44.8754624Z Running torch_np/numpy_tests/lib/test_index_tricks 1/1 ... [2025-08-26 21:01:44.875210] 2025-08-26T21:01:44.8755124Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:01:44.8761221Z 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-26 21:01:44.875210] 2025-08-26T21:01:49.1282760Z 2025-08-26T21:01:49.1284100Z 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_a5d61a29516528e1_.log 2025-08-26T21:01:49.1285021Z Running 0 items in this shard: 2025-08-26T21:01:49.1285205Z 2025-08-26T21:01:49.1288580Z Running nn/test_init 1/1 ... [2025-08-26 21:01:49.123645] 2025-08-26T21:01:49.1288993Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:01:49.1295426Z 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-26 21:01:49.123645] 2025-08-26T21:01:53.6636372Z 2025-08-26T21:01:53.6637378Z nn/test_init 1/1 was successful, full logs can be found in artifacts with path test/test-reports/nn.test_init_1.1_8e68dc06f2a85a68_.log 2025-08-26T21:01:53.6638111Z Running 0 items in this shard: 2025-08-26T21:01:53.6638297Z 2025-08-26T21:01:58.0861243Z Running inductor/test_aot_inductor_arrayref 1/1 ... [2025-08-26 21:01:58.078889] 2025-08-26T21:01:58.0861793Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:01:58.0867527Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_aot_inductor_arrayref.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:01:58.078889] 2025-08-26T21:01:58.0888192Z Running inductor/test_compiled_autograd 1/1 ... [2025-08-26 21:01:58.078889] 2025-08-26T21:01:58.0888711Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:01:58.0895697Z 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-26 21:01:58.088988] 2025-08-26T21:01:58.1074849Z Running inductor/test_inplace_padding 1/1 ... [2025-08-26 21:01:58.106424] 2025-08-26T21:01:58.1075340Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:01:58.1081845Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_inplace_padding.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:01:58.106424] 2025-08-26T21:02:02.4518087Z 2025-08-26T21:02:02.4520533Z inductor/test_aot_inductor_arrayref 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_aot_inductor_arrayref_1.1_9c31c26ebd35400e_.log 2025-08-26T21:02:02.4521289Z 2025-08-26T21:02:07.5364175Z Running inductor/test_torchinductor_codegen_dynamic_shapes 1/1 ... [2025-08-26 21:02:07.536158] 2025-08-26T21:02:07.5364901Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:02:07.5370675Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_torchinductor_codegen_dynamic_shapes.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:02:07.536733] 2025-08-26T21:02:08.5093682Z 2025-08-26T21:02:08.5094836Z inductor/test_inplace_padding 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_inplace_padding_1.1_fa274d830dce9fc4_.log 2025-08-26T21:02:08.5095689Z 2025-08-26T21:02:11.3434425Z 2025-08-26T21:02:11.3435467Z 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_c6cb0d5e5e9c17dd_.log 2025-08-26T21:02:11.3436272Z 2025-08-26T21:02:13.5859098Z Running inductor/test_compiled_optimizers 1/1 ... [2025-08-26 21:02:13.585487] 2025-08-26T21:02:13.5859665Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:02:13.5865633Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_compiled_optimizers.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:02:13.586073] 2025-08-26T21:02:16.4011135Z Running inductor/test_split_cat_fx_passes 1/1 ... [2025-08-26 21:02:16.400813] 2025-08-26T21:02:16.4011596Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:02:16.4017934Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_split_cat_fx_passes.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:02:16.401386] 2025-08-26T21:02:18.1380749Z 2025-08-26T21:02:18.1382242Z inductor/test_torchinductor_codegen_dynamic_shapes 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_torchinductor_codegen_dynamic_shapes_1.1_9b8b15e5304ddf87_.log 2025-08-26T21:02:18.1383094Z 2025-08-26T21:02:23.3271577Z Running dynamo/test_pgo 1/1 ... [2025-08-26 21:02:23.317478] 2025-08-26T21:02:23.3271981Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:02:23.3278393Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_pgo.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:02:23.317478] 2025-08-26T21:02:25.0822146Z 2025-08-26T21:02:25.0823243Z inductor/test_compiled_optimizers 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_compiled_optimizers_1.1_1c0ae751bc48e240_.log 2025-08-26T21:02:25.0823976Z 2025-08-26T21:02:26.8265490Z 2025-08-26T21:02:26.8266436Z inductor/test_split_cat_fx_passes 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_split_cat_fx_passes_1.1_a8c921bdf8f6e838_.log 2025-08-26T21:02:26.8267147Z 2025-08-26T21:02:28.0078969Z 2025-08-26T21:02:28.0079754Z dynamo/test_pgo 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_pgo_1.1_d5780838fe683ef6_.log 2025-08-26T21:02:28.0080312Z 2025-08-26T21:02:30.3585742Z Running inductor/test_split_cat_fx_aten_passes 1/1 ... [2025-08-26 21:02:30.353886] 2025-08-26T21:02:30.3586231Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:02:30.3592725Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_split_cat_fx_aten_passes.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:02:30.358954] 2025-08-26T21:02:32.0160289Z Running export/test_torchbind 1/1 ... [2025-08-26 21:02:32.015147] 2025-08-26T21:02:32.0160756Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:02:32.0178628Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_torchbind.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:02:32.016782] 2025-08-26T21:02:33.0660408Z Running dynamo/test_package 1/1 ... [2025-08-26 21:02:33.065873] 2025-08-26T21:02:33.0660840Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:02:33.0666918Z 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-26 21:02:33.066528] 2025-08-26T21:02:40.7490615Z 2025-08-26T21:02:40.7492156Z inductor/test_split_cat_fx_aten_passes 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_split_cat_fx_aten_passes_1.1_47c4ebc3e57504a1_.log 2025-08-26T21:02:40.7492909Z 2025-08-26T21:02:45.0417296Z 2025-08-26T21:02:45.0418127Z dynamo/test_package 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_package_1.1_cae06685677b695a_.log 2025-08-26T21:02:45.0418729Z 2025-08-26T21:02:45.9429555Z Running dynamo/test_repros 1/1 ... [2025-08-26 21:02:45.941237] 2025-08-26T21:02:45.9429968Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:02:45.9435891Z 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-26 21:02:45.941237] 2025-08-26T21:02:50.4556939Z Running inductor/test_cpu_repro 1/1 ... [2025-08-26 21:02:50.449327] 2025-08-26T21:02:50.4557377Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:02:50.4563734Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_cpu_repro.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:02:50.449327] 2025-08-26T21:02:51.1332074Z 2025-08-26T21:02:51.1332870Z dynamo/test_repros 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_repros_1.1_9cbccae1b82f4c85_.log 2025-08-26T21:02:51.1333466Z 2025-08-26T21:02:56.2589916Z Running inductor/test_cudagraph_trees_expandable_segments 1/1 ... [2025-08-26 21:02:56.258513] 2025-08-26T21:02:56.2590676Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:02:56.2596920Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_cudagraph_trees_expandable_segments.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:02:56.259117] 2025-08-26T21:03:00.8687831Z 2025-08-26T21:03:00.8688829Z inductor/test_cpu_repro 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_cpu_repro_1.1_dee65954bf2e4903_.log 2025-08-26T21:03:00.8689463Z 2025-08-26T21:03:06.1139791Z Running test_nestedtensor 2/3 ... [2025-08-26 21:03:06.113529] 2025-08-26T21:03:06.1140209Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:03:06.1146395Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_nestedtensor.py', '-m', 'not serial', '--shard-id=2', '--num-shards=3', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:03:06.114103] 2025-08-26T21:03:06.2992294Z 2025-08-26T21:03:06.2993986Z inductor/test_cudagraph_trees_expandable_segments 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_cudagraph_trees_expandable_segments_1.1_7bfdede4e6ced710_.log 2025-08-26T21:03:06.2994848Z 2025-08-26T21:03:11.3533875Z Running test_nestedtensor 3/3 ... [2025-08-26 21:03:11.351579] 2025-08-26T21:03:11.3534289Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:03:11.3540823Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_nestedtensor.py', '-m', 'not serial', '--shard-id=3', '--num-shards=3', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:03:11.351579] 2025-08-26T21:03:27.3389708Z 2025-08-26T21:03:27.3390710Z export/test_torchbind 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_torchbind_1.1_f03d1dcaf0ca522f_.log 2025-08-26T21:03:27.3432654Z Running 90 items in this shard: test/export/test_torchbind.py::TestExportTorchbind::test_aot_export_tensor_queue_operators, test/export/test_torchbind.py::TestExportTorchbind::test_attribute_as_custom_op_argument_pre_dispatch_False, test/export/test_torchbind.py::TestExportTorchbind::test_attribute_as_custom_op_argument_pre_dispatch_True, test/export/test_torchbind.py::TestExportTorchbind::test_attribute_pre_dispatch_False, test/export/test_torchbind.py::TestExportTorchbind::test_attribute_pre_dispatch_True, test/export/test_torchbind.py::TestExportTorchbind::test_custom_obj_list_out_pre_dispatch_False, test/export/test_torchbind.py::TestExportTorchbind::test_custom_obj_list_out_pre_dispatch_True, test/export/test_torchbind.py::TestExportTorchbind::test_custom_obj_tuple_out_pre_dispatch_False, test/export/test_torchbind.py::TestExportTorchbind::test_custom_obj_tuple_out_pre_dispatch_True, test/export/test_torchbind.py::TestExportTorchbind::test_custom_obj_unbacked_symint_pre_dispatch_False, test/export/test_torchbind.py::TestExportTorchbind::test_custom_obj_unbacked_symint_pre_dispatch_True, test/export/test_torchbind.py::TestExportTorchbind::test_deepcopy, test/export/test_torchbind.py::TestExportTorchbind::test_export_inplace_custom_op, test/export/test_torchbind.py::TestExportTorchbind::test_identifying_torchbind_ops, test/export/test_torchbind.py::TestExportTorchbind::test_input_as_custom_op_argument_pre_dispatch_False, test/export/test_torchbind.py::TestExportTorchbind::test_input_as_custom_op_argument_pre_dispatch_True, test/export/test_torchbind.py::TestExportTorchbind::test_input_pre_dispatch_False, test/export/test_torchbind.py::TestExportTorchbind::test_input_pre_dispatch_True, test/export/test_torchbind.py::TestExportTorchbind::test_make_fx_schema_checking_script_object, test/export/test_torchbind.py::TestExportTorchbind::test_make_fx_tensor_queue_methods_fakify_internal_states_make_fx_tracing_mode_fake, test/export/test_torchbind.py::TestExportTorchbind::test_make_fx_tensor_queue_methods_fakify_internal_states_make_fx_tracing_mode_symbolic, test/export/test_torchbind.py::TestExportTorchbind::test_make_fx_tensor_queue_methods_make_fx_tracing_mode_fake, test/export/test_torchbind.py::TestExportTorchbind::test_make_fx_tensor_queue_methods_make_fx_tracing_mode_symbolic, test/export/test_torchbind.py::TestExportTorchbind::test_make_fx_tensor_queue_operators_fallthrough_via_lib_impl, test/export/test_torchbind.py::TestExportTorchbind::test_make_fx_tensor_queue_operators_fallthrough_via_py_impl, test/export/test_torchbind.py::TestExportTorchbind::test_method_schema, test/export/test_torchbind.py::TestExportTorchbind::test_non_strict_export_methods, test/export/test_torchbind.py::TestExportTorchbind::test_none_pre_dispatch_False, test/export/test_torchbind.py::TestExportTorchbind::test_none_pre_dispatch_True, test/export/test_torchbind.py::TestExportTorchbind::test_safe_to_trace_with_real, test/export/test_torchbind.py::TestExportTorchbind::test_torchbind_alias_pre_dispatch_False, test/export/test_torchbind.py::TestExportTorchbind::test_torchbind_alias_pre_dispatch_True, test/export/test_torchbind.py::TestExportTorchbind::test_torchbind_input_and_alias_pre_dispatch_False, test/export/test_torchbind.py::TestExportTorchbind::test_torchbind_input_and_alias_pre_dispatch_True, test/export/test_torchbind.py::TestExportTorchbind::test_torchbind_op_fallthrough_keys_respects_lib_impl, test/export/test_torchbind.py::TestExportTorchbind::test_torchbind_op_register_fallthrough, test/export/test_torchbind.py::TestExportTorchbind::test_torchbind_register_attr_at_runtime_error, test/export/test_torchbind.py::TestExportTorchbind::test_unlift_custom_obj_pre_dispatch_False, test/export/test_torchbind.py::TestExportTorchbind::test_unlift_custom_obj_pre_dispatch_True, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_body_aliasing_contents_backend_aot_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_body_aliasing_contents_backend_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_body_aliasing_contents_backend_inductor, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_error_on_input_aliasing_contents_backend_aot_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_error_on_input_aliasing_contents_backend_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_error_on_input_aliasing_contents_backend_inductor, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_error_on_non_fakified_method_backend_aot_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_error_on_non_fakified_method_backend_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_error_on_non_fakified_method_backend_inductor, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_error_on_script_obj_missing_attr_backend_aot_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_error_on_script_obj_missing_attr_backend_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_error_on_script_obj_setattr_backend_aot_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_error_on_script_obj_setattr_backend_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_global_obj_backend_aot_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_global_obj_backend_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_global_obj_backend_inductor, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_obj_as_hop_input_backend_aot_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_obj_as_hop_input_backend_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_obj_as_hop_input_backend_inductor, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_obj_attributes_backend_aot_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_obj_attributes_backend_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_obj_attributes_backend_inductor, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_obj_closure_backend_aot_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_obj_closure_backend_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_obj_closure_backend_inductor, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_obj_graph_breaks, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_obj_torchbind_op_backend_aot_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_obj_torchbind_op_backend_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_obj_torchbind_op_backend_inductor, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_obj_torchbind_op_with_autocast_device_cpu_backend_aot_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_obj_torchbind_op_with_autocast_device_cpu_backend_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_obj_torchbind_op_with_autocast_device_cpu_backend_inductor, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_obj_torchbind_op_with_autocast_device_cuda_backend_aot_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_obj_torchbind_op_with_autocast_device_cuda_backend_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_obj_torchbind_op_with_autocast_device_cuda_backend_inductor, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_script_object_input_automatic_dynamic_shape, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_script_object_input_backend_aot_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_script_object_input_backend_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_script_object_input_backend_inductor, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_script_object_input_guards_backend_aot_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_script_object_input_guards_backend_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_script_object_input_guards_backend_inductor, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_tensor_op_in_tensor_flatten_backend_aot_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_tensor_op_in_tensor_flatten_backend_eager, test/export/test_torchbind.py::TestCompileTorchbind::test_compile_tensor_op_in_tensor_flatten_backend_inductor, test/export/test_torchbind.py::TestCompileTorchbind::test_export_obj_torchbind_op_with_autocast_device_cpu, test/export/test_torchbind.py::TestCompileTorchbind::test_export_obj_torchbind_op_with_autocast_device_cuda, test/export/test_torchbind.py::TestRegisterFakeClass::test_register_fake_class_from_real_not_classmethod, test/export/test_torchbind.py::TestRegisterFakeClass::test_register_fake_class_no_from_real, test/export/test_torchbind.py::TestRegisterFakeClass::test_register_fake_class_no_torch_bind_class, test/export/test_torchbind.py::TestRegisterFakeClass::test_register_fake_class_valid 2025-08-26T21:03:27.3467343Z 2025-08-26T21:03:32.4471777Z Running test_type_hints 1/1 ... [2025-08-26 21:03:32.444435] 2025-08-26T21:03:32.4472484Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:03:32.4478693Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_type_hints.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:03:32.444435] 2025-08-26T21:03:36.8607748Z 2025-08-26T21:03:36.8608581Z test_type_hints 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_type_hints_1.1_7f303896785fa54f_.log 2025-08-26T21:03:36.8609881Z Running 1 items in this shard: test/test_type_hints.py::TestTypeHints::test_doc_examples 2025-08-26T21:03:36.8610420Z 2025-08-26T21:03:41.9099142Z Running test_dataloader 1/2 ... [2025-08-26 21:03:41.909514] 2025-08-26T21:03:41.9099635Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:03:41.9105815Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_dataloader.py', '-m', 'not serial', '--shard-id=1', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:03:41.909514] 2025-08-26T21:09:39.1959115Z 2025-08-26T21:09:39.1959892Z test_dataloader 1/2 was successful, full logs can be found in artifacts with path test/test-reports/test_dataloader_1.2_13c5dea993cd2ee2_.log 2025-08-26T21:09:39.1992186Z Running 93 items in this shard: test/test_dataloader.py::TestDatasetRandomSplit::test_incomplete_fractional_splits, test/test_dataloader.py::TestDatasetRandomSplit::test_slicing_of_subset_of_subset, test/test_dataloader.py::TestDatasetRandomSplit::test_splits_are_mutually_exclusive, test/test_dataloader.py::TestDatasetRandomSplit::test_splits_indexing_type, test/test_dataloader.py::TestTensorDataset::test_getitem, test/test_dataloader.py::TestTensorDataset::test_len, test/test_dataloader.py::TestTensorDataset::test_many_tensors, test/test_dataloader.py::TestStackDataset::test_getitem, test/test_dataloader.py::TestStackDataset::test_getitems, test/test_dataloader.py::TestStackDataset::test_getitems_raises_index_error, test/test_dataloader.py::TestStackDataset::test_getitems_value_error, test/test_dataloader.py::TestStackDataset::test_mixed, test/test_dataloader.py::TestStackDataset::test_single, test/test_dataloader.py::TestStackDataset::test_size_mismatch, test/test_dataloader.py::TestConcatDataset::test_concat_two_non_singletons, test/test_dataloader.py::TestConcatDataset::test_concat_two_non_singletons_with_empty, test/test_dataloader.py::TestConcatDataset::test_iterable_dataset_err, test/test_dataloader.py::TestDataLoader::test_builtin_collection_conversion, test/test_dataloader.py::TestDataLoader::test_default_collate_bad_numpy_types, test/test_dataloader.py::TestDataLoader::test_default_collate_mapping_keep_type, test/test_dataloader.py::TestDataLoader::test_default_collate_sequence_dont_keep_type, test/test_dataloader.py::TestDataLoader::test_default_collate_sequence_keep_type, test/test_dataloader.py::TestDataLoader::test_default_collate_shared_tensor, test/test_dataloader.py::TestDataLoader::test_default_convert_sequence_dont_keep_type, test/test_dataloader.py::TestDataLoader::test_duplicating_data_with_drop_last, test/test_dataloader.py::TestDataLoader::test_error, test/test_dataloader.py::TestDataLoader::test_error_in_init, test/test_dataloader.py::TestDataLoader::test_excessive_thread_creation_warning, test/test_dataloader.py::TestDataLoader::test_fd_limit_exceeded, test/test_dataloader.py::TestDataLoader::test_get_worker_info, test/test_dataloader.py::TestDataLoader::test_invalid_assign_after_init, test/test_dataloader.py::TestDataLoader::test_iterable_style_dataset, test/test_dataloader.py::TestDataLoader::test_iterabledataset_len, test/test_dataloader.py::TestDataLoader::test_len, test/test_dataloader.py::TestDataLoader::test_multi_epochs_reproducibility, test/test_dataloader.py::TestDataLoader::test_multiprocessing_contexts, test/test_dataloader.py::TestDataLoader::test_multiprocessing_iterdatapipe_with_dill, test/test_dataloader.py::TestDataLoader::test_no_segfault, test/test_dataloader.py::TestDataLoader::test_numpy, test/test_dataloader.py::TestDataLoader::test_partial_workers, test/test_dataloader.py::TestDataLoader::test_random_sampler, test/test_dataloader.py::TestDataLoader::test_random_sampler_len_with_replacement, test/test_dataloader.py::TestDataLoader::test_random_sampler_len_without_replacement, test/test_dataloader.py::TestDataLoader::test_sampler, test/test_dataloader.py::TestDataLoader::test_sampler_reproducibility, test/test_dataloader.py::TestDataLoader::test_seqential_batch_workers, test/test_dataloader.py::TestDataLoader::test_seqential_batch_workers_prefetch, test/test_dataloader.py::TestDataLoader::test_shuffle, test/test_dataloader.py::TestDataLoader::test_shuffle_batch, test/test_dataloader.py::TestDataLoader::test_worker_init_fn, test/test_dataloader.py::TestDictDataLoader::test_pin_memory_no_cuda, test/test_dataloader.py::TestDictDataLoader::test_pin_memory_with_only_device, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_batch_sampler, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_dataset_not_reset, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_default_collate_bad_numpy_types, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_default_collate_dtype, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_default_collate_mapping_keep_type, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_default_collate_numpy_memmap, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_default_collate_sequence_dont_keep_type, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_default_collate_sequence_keep_type, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_default_convert_sequence_dont_keep_type, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_default_convert_sequence_keep_type, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_duplicating_data_with_drop_last, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_error, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_get_worker_info, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_invalid_ctor_args_combinations, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_iterable_style_dataset, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_iterabledataset_len, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_large_sampler_indices, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_multiprocessing_iterdatapipe, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_numpy_scalars, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_partial_workers, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_random_sampler, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_segfault, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_seqential_batch_workers, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_seqential_batch_workers_prefetch, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_sequential_workers, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_shuffle, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_shuffle_batch_none, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_shuffle_batch_workers, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_shuffle_batch_workers_prefetch, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_shuffle_pin_memory, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_shuffle_workers, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_timeout, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_worker_init_fn, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_worker_seed_reproducibility, test/test_dataloader.py::TestNamedTupleDataLoader::test_dataloader_with_namedtuple, test/test_dataloader.py::TestCustomPinFn::test_custom_batch_pin, test/test_dataloader.py::TestConvAfterFork::test_conv_after_fork, test/test_dataloader.py::TestOutOfOrderDataLoader::test_in_order_index_ds, test/test_dataloader.py::TestOutOfOrderDataLoader::test_out_of_order_index_ds, test/test_dataloader.py::TestOutOfOrderDataLoader::test_out_of_order_iterable_ds, test/test_dataloader.py::TestDataLoaderDeviceTypeCPU::test_nested_tensor_multiprocessing_context_spawn_cpu 2025-08-26T21:09:39.2020064Z 2025-08-26T21:09:44.4043658Z Running test_dataloader 2/2 ... [2025-08-26 21:09:44.401230] 2025-08-26T21:09:44.4044093Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:09:44.4050235Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_dataloader.py', '-m', 'not serial', '--shard-id=2', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:09:44.401230] 2025-08-26T21:13:29.8846328Z 2025-08-26T21:13:29.8847416Z test_dataloader 2/2 was successful, full logs can be found in artifacts with path test/test-reports/test_dataloader_2.2_7a9e174683bb3897_.log 2025-08-26T21:13:29.8876558Z Running 89 items in this shard: test/test_dataloader.py::TestDatasetRandomSplit::test_lengths_must_equal_dataset_size, test/test_dataloader.py::TestDatasetRandomSplit::test_slicing_of_subset_of_dataset, test/test_dataloader.py::TestDatasetRandomSplit::test_splits_generator, test/test_dataloader.py::TestDatasetRandomSplit::test_splits_have_correct_size, test/test_dataloader.py::TestDatasetRandomSplit::test_splits_reproducibility, test/test_dataloader.py::TestTensorDataset::test_getitem_1d, test/test_dataloader.py::TestTensorDataset::test_single_tensor, test/test_dataloader.py::TestStackDataset::test_empty, test/test_dataloader.py::TestStackDataset::test_len, test/test_dataloader.py::TestConcatDataset::test_add_dataset, test/test_dataloader.py::TestConcatDataset::test_concat_raises_index_error, test/test_dataloader.py::TestConcatDataset::test_concat_two_singletons, test/test_dataloader.py::TestDataLoader::test_batch_sampler, test/test_dataloader.py::TestDataLoader::test_bulk_loading_nobatch, test/test_dataloader.py::TestDataLoader::test_chain_iterable_style_dataset, test/test_dataloader.py::TestDataLoader::test_default_collate_bad_sequence_type, test/test_dataloader.py::TestDataLoader::test_default_collate_dtype, test/test_dataloader.py::TestDataLoader::test_default_collate_numpy_memmap, test/test_dataloader.py::TestDataLoader::test_default_convert_mapping_keep_type, test/test_dataloader.py::TestDataLoader::test_default_convert_sequence_keep_type, test/test_dataloader.py::TestDataLoader::test_distributed_sampler_invalid_rank, test/test_dataloader.py::TestDataLoader::test_error_workers, test/test_dataloader.py::TestDataLoader::test_growing_dataset, test/test_dataloader.py::TestDataLoader::test_invalid_ctor_args_combinations, test/test_dataloader.py::TestDataLoader::test_large_sampler_indices, test/test_dataloader.py::TestDataLoader::test_multiple_dataloaders, test/test_dataloader.py::TestDataLoader::test_multiprocessing_iterdatapipe, test/test_dataloader.py::TestDataLoader::test_numpy_gen_state, test/test_dataloader.py::TestDataLoader::test_numpy_scalars, test/test_dataloader.py::TestDataLoader::test_proper_exit, test/test_dataloader.py::TestDataLoader::test_segfault, test/test_dataloader.py::TestDataLoader::test_sequential_batch, test/test_dataloader.py::TestDataLoader::test_sequential_nonbatch, test/test_dataloader.py::TestDataLoader::test_sequential_pin_memory, test/test_dataloader.py::TestDataLoader::test_sequential_workers, test/test_dataloader.py::TestDataLoader::test_shuffle_batch_none, test/test_dataloader.py::TestDataLoader::test_shuffle_batch_workers, test/test_dataloader.py::TestDataLoader::test_shuffle_batch_workers_prefetch, test/test_dataloader.py::TestDataLoader::test_shuffle_pin_memory, test/test_dataloader.py::TestDataLoader::test_shuffle_reproducibility, test/test_dataloader.py::TestDataLoader::test_shuffle_workers, test/test_dataloader.py::TestDataLoader::test_timeout, test/test_dataloader.py::TestDataLoader::test_typing, test/test_dataloader.py::TestDataLoader::test_worker_seed, test/test_dataloader.py::TestDataLoader::test_worker_seed_reproducibility, test/test_dataloader.py::IntegrationTestDataLoaderDataPipe::test_shuffler_iterdatapipe, test/test_dataloader.py::TestStringDataLoader::test_shuffle_pin_memory, test/test_dataloader.py::TestDictDataLoader::test_pin_memory, test/test_dataloader.py::TestDictDataLoader::test_pin_memory_device, test/test_dataloader.py::TestDictDataLoader::test_sequential_batch, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_builtin_collection_conversion, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_bulk_loading_nobatch, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_chain_iterable_style_dataset, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_default_collate_bad_sequence_type, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_default_collate_shared_tensor, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_default_convert_mapping_keep_type, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_distributed_sampler_invalid_rank, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_early_exit, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_error_in_init, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_error_workers, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_excessive_thread_creation_warning, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_fd_limit_exceeded, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_growing_dataset, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_invalid_assign_after_init, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_len, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_multi_epochs_reproducibility, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_multiple_dataloaders, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_multiprocessing_contexts, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_multiprocessing_iterdatapipe_with_dill, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_no_segfault, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_numpy, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_numpy_gen_state, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_proper_exit, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_random_sampler_len_with_replacement, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_random_sampler_len_without_replacement, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_sampler, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_sampler_reproducibility, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_sequential_batch, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_sequential_nonbatch, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_sequential_pin_memory, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_shuffle_batch, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_shuffle_reproducibility, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_typing, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_worker_seed, test/test_dataloader.py::TestCustomPinFn::test_custom_batch_pin_worker, test/test_dataloader.py::TestIndividualWorkerQueue::test_ind_worker_queue, test/test_dataloader.py::TestSetAffinity::test_set_affinity_in_worker_init, test/test_dataloader.py::TestOutOfOrderDataLoader::test_in_order_iterable_ds, test/test_dataloader.py::TestDataLoaderDeviceTypeCPU::test_sparse_tensor_multiprocessing_context_spawn_cpu 2025-08-26T21:13:29.8902970Z 2025-08-26T21:13:35.1265568Z Running functorch/test_aotdispatch 4/7 ... [2025-08-26 21:13:35.126286] 2025-08-26T21:13:35.1267029Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:13:35.1272599Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_aotdispatch.py', '-m', 'not serial', '--shard-id=4', '--num-shards=7', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:13:35.127059] 2025-08-26T21:14:47.2927204Z 2025-08-26T21:14:47.2928060Z test_nestedtensor 3/3 was successful, full logs can be found in artifacts with path test/test-reports/test_nestedtensor_3.3_1c0378377458ad2d_.log 2025-08-26T21:14:47.3338850Z Running 533 items in this shard: test/test_nestedtensor.py::TestNestedTensor::test_2d_nested_tensor_batch_size_2_max_seq_len_3_vocab_size_20, test/test_nestedtensor.py::TestNestedTensor::test_2d_nested_tensor_batch_size_2_max_seq_len_5_vocab_size_20, test/test_nestedtensor.py::TestNestedTensor::test_2d_nested_tensor_batch_size_4_max_seq_len_3_vocab_size_20, test/test_nestedtensor.py::TestNestedTensor::test_2d_nested_tensor_batch_size_4_max_seq_len_5_vocab_size_20, test/test_nestedtensor.py::TestNestedTensor::test_3d_nested_tensor_batch_size_2_max_seq_len_3_vocab_size_10, test/test_nestedtensor.py::TestNestedTensor::test_3d_nested_tensor_batch_size_2_max_seq_len_5_vocab_size_10, test/test_nestedtensor.py::TestNestedTensor::test_3d_nested_tensor_batch_size_2_max_seq_len_5_vocab_size_20, test/test_nestedtensor.py::TestNestedTensor::test_3d_nested_tensor_batch_size_4_max_seq_len_3_vocab_size_10, test/test_nestedtensor.py::TestNestedTensor::test_3d_nested_tensor_batch_size_4_max_seq_len_5_vocab_size_10, test/test_nestedtensor.py::TestNestedTensor::test_3d_nested_tensor_batch_size_4_max_seq_len_5_vocab_size_20, test/test_nestedtensor.py::TestNestedTensor::test_3d_nested_tensor_float_batch_size_2_max_seq_len_3_vocab_size_20, test/test_nestedtensor.py::TestNestedTensor::test_3d_nested_tensor_float_batch_size_2_max_seq_len_5_vocab_size_10, test/test_nestedtensor.py::TestNestedTensor::test_3d_nested_tensor_float_batch_size_4_max_seq_len_3_vocab_size_10, test/test_nestedtensor.py::TestNestedTensor::test_3d_nested_tensor_float_batch_size_4_max_seq_len_3_vocab_size_20, test/test_nestedtensor.py::TestNestedTensor::test_dim, test/test_nestedtensor.py::TestNestedTensor::test_like_functions_ones_like, test/test_nestedtensor.py::TestNestedTensor::test_nested_tensor, test/test_nestedtensor.py::TestNestedTensor::test_nested_tensor_matching_dim, test/test_nestedtensor.py::TestNestedTensor::test_unbind_1, test/test_nestedtensor.py::TestNestedTensor::test_unbind_4, test/test_nestedtensor.py::TestNestedTensor::test_unbind_dim, test/test_nestedtensor.py::TestNestedInt::test_comparisons, test/test_nestedtensor.py::TestNestedInt::test_with_factor, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_binary_ops_with_scalar_ge_cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_bmm_cpu_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_bmm_cuda_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_bmm_cuda_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_bmm_cuda_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_clone_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_detach_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_dropout_noncontiguous_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_dropout_strided_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_dropout_strided_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_empty_like_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_layer_norm_breaking_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_linear_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_linear_noncontiguous_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_matmul_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_matmul_with_bmm_path_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_matmul_with_bmm_path_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_narrow_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_narrow_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_chunk_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_dense_elementwise_embedding_dim_256_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_div_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_indexing_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_indexing_noncontiguous_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_indexing_noncontiguous_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_indexing_noncontiguous_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_reshape_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_reshape_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_scaled_dot_product_attention_input_dim_4_cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_serialization_requires_grad_False_weights_only_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_serialization_requires_grad_False_weights_only_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_serialization_requires_grad_True_weights_only_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_serialization_requires_grad_True_weights_only_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_softmax_noncontiguous_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_squeeze_unsqueeze_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_squeeze_unsqueeze_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_to_padded_tensor_dim2_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_to_padded_tensor_dim2_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_to_padded_tensor_dim3_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_to_padded_tensor_noncontiguous_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_to_padded_tensor_simple_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_to_padded_tensor_zero_numel_errors_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_to_then_from_padded_tensor_no_transform0213_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_transpose_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_transpose_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_transpose_inference_mode_interaction_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_unary_funcs_gelu__cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_unary_funcs_isneginf_cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_unary_funcs_neg_cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_unary_funcs_silu_cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_unary_funcs_sqrt_cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_unbind_noncontiguous_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_view_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_view_inference_mode_interaction_cpu_float64, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_accumulate_grad_different_strides_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_as_nested_tensor_propagates_gradients_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_backward_sub_strided_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_dropout_backward_strided_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_layer_norm_backward_5d_size_2_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_layer_norm_backward_edge_case_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_layer_norm_backward_size_1024_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_layer_norm_backward_size_256_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_layer_norm_backward_size_513_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_nested_tensor_from_padded_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_nested_tensor_from_padded_fused_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_nested_tensor_generates_leaf_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_nested_tensor_linear_plus_transpose_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_nested_tensor_transpose_backward_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_nested_tensor_unsqueeze_backward_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_relu_backward_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_split_with_sizes_flow_through_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_apply__cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_0_layout_jagged_requires_grad_False_contiguous_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_0_layout_jagged_requires_grad_False_contiguous_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_0_layout_strided_requires_grad_False_contiguous_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_0_layout_strided_requires_grad_False_contiguous_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_0_layout_strided_requires_grad_False_contiguous_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_1_layout_jagged_requires_grad_False_contiguous_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_1_layout_jagged_requires_grad_False_contiguous_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_1_layout_jagged_requires_grad_False_contiguous_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_1_layout_jagged_requires_grad_True_contiguous_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_1_layout_jagged_requires_grad_True_contiguous_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_1_layout_strided_requires_grad_False_contiguous_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_1_layout_strided_requires_grad_False_contiguous_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_1_layout_strided_requires_grad_True_contiguous_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_1_layout_strided_requires_grad_True_contiguous_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_1_layout_strided_requires_grad_True_contiguous_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_1_layout_strided_requires_grad_True_contiguous_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_2_layout_jagged_requires_grad_False_contiguous_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_2_layout_jagged_requires_grad_False_contiguous_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_2_layout_jagged_requires_grad_False_contiguous_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_2_layout_jagged_requires_grad_True_contiguous_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_2_layout_jagged_requires_grad_True_contiguous_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_2_layout_jagged_requires_grad_True_contiguous_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_2_layout_jagged_requires_grad_True_contiguous_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_2_layout_jagged_requires_grad_True_contiguous_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_2_layout_strided_requires_grad_False_contiguous_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_2_layout_strided_requires_grad_False_contiguous_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_2_layout_strided_requires_grad_True_contiguous_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_3_layout_jagged_requires_grad_False_contiguous_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_3_layout_jagged_requires_grad_False_contiguous_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_3_layout_jagged_requires_grad_True_contiguous_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_3_layout_jagged_requires_grad_True_contiguous_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_3_layout_strided_requires_grad_False_contiguous_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_3_layout_strided_requires_grad_True_contiguous_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_3_layout_strided_requires_grad_True_contiguous_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_3_layout_strided_requires_grad_True_contiguous_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_4_layout_jagged_requires_grad_False_contiguous_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_4_layout_jagged_requires_grad_True_contiguous_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_4_layout_jagged_requires_grad_True_contiguous_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_4_layout_jagged_requires_grad_True_contiguous_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_4_layout_jagged_requires_grad_True_contiguous_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_4_layout_jagged_requires_grad_True_contiguous_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_4_layout_strided_requires_grad_False_contiguous_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_4_layout_strided_requires_grad_True_contiguous_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_binary_pointwise_transposed_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_compile_preserves_metadata_cache_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_compile_with_dynamic_min_seq_len_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_device_dtype_transfer_updates_offsets_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_dummy_mha_with_nt_use_legacy_api_False_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_flex_attention_noncontig_with_holes_False_cross_attention_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_flex_attention_noncontig_with_holes_True_cross_attention_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_layout_construction_nested_tensor_requires_grad_True_components_require_grad_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_layout_construction_nested_tensor_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_layout_construction_with_pinned_memory_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_op_different_output_shape_dim_mean_keepdim_False_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_op_different_output_shape_dim_mean_keepdim_True_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_op_different_output_shape_dim_sum_keepdim_False_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_op_different_output_shape_dim_sum_keepdim_False_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_op_different_output_shape_dim_sum_keepdim_False_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_op_different_output_shape_dim_sum_keepdim_True_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_view_from_values_offsets_requires_grad_True_values_is_view_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_layer_norm_2d_input_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_layer_norm_operate_on_batch_dim_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_layer_norm_reduce_ragged_idx_1_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_layer_norm_reduce_ragged_idx_1_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_layer_norm_with_lengths_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_layer_norm_with_lengths_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_layer_norm_with_lengths_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_like_shape_empty_like_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_like_value_full_like_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_like_value_rand_like_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_like_value_zeros_like_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_linear_nt_dim_3_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_nested_tensor_from_jagged_pass_min_max_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_njt_cat_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_noncontiguous_pointwise_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_noncontiguous_to_noncontig_transposed_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_batch_only_different_output_shape_mean_keepdim_False_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_batch_only_different_output_shape_mean_keepdim_False_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_batch_only_different_output_shape_mean_keepdim_True_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_batch_only_different_output_shape_mean_keepdim_True_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_batch_only_different_output_shape_sum_keepdim_True_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_1_different_output_shape_mean_keepdim_True_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_1_different_output_shape_sum_keepdim_False_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_1_different_output_shape_sum_keepdim_True_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_1_different_output_shape_sum_keepdim_True_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_greater_than_1_different_output_shape_mean_transpose_offset_1_keepdim_False_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_greater_than_1_different_output_shape_mean_transpose_offset_1_keepdim_False_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_greater_than_1_different_output_shape_mean_transpose_offset_1_keepdim_False_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_greater_than_1_different_output_shape_mean_transpose_offset_1_keepdim_True_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_greater_than_1_different_output_shape_mean_transpose_offset_1_keepdim_True_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_greater_than_1_different_output_shape_mean_transpose_offset_2_keepdim_False_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_greater_than_1_different_output_shape_mean_transpose_offset_2_keepdim_True_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_greater_than_1_different_output_shape_sum_transpose_offset_1_keepdim_True_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_greater_than_1_different_output_shape_sum_transpose_offset_1_keepdim_True_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_greater_than_1_different_output_shape_sum_transpose_offset_2_keepdim_False_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_transpose_non_ragged_dim_different_output_shape_sum_keepdim_False_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_transpose_non_ragged_dim_different_output_shape_sum_keepdim_True_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_with_lengths_different_output_shape_mean_keepdim_False_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_with_lengths_different_output_shape_mean_keepdim_False_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_with_lengths_different_output_shape_mean_keepdim_False_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_with_lengths_different_output_shape_mean_keepdim_True_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_with_lengths_different_output_shape_sum_keepdim_False_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_with_lengths_different_output_shape_sum_keepdim_True_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_with_lengths_different_output_shape_sum_keepdim_True_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_profiler_sequence_nr_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_reshape_decomp_requires_grad_False_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_reshape_decomp_requires_grad_True_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sdpa_backwards_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sdpa_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sdpa_with_constant_sequence_length_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sdpa_with_packed_in_proj_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sdpa_with_packed_in_proj_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_serialization_noncontig_transposed_weights_only_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_serialization_noncontig_transposed_weights_only_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_serialization_noncontig_with_holes_weights_only_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_dim_reduce_ragged_idx_1_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_dim_reduce_ragged_idx_1_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_dim_reduce_ragged_idx_greater_than_1_same_output_shape_transpose_offset_1_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_dim_reduce_ragged_idx_greater_than_1_same_output_shape_transpose_offset_1_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_dim_reduce_ragged_idx_greater_than_1_same_output_shape_transpose_offset_2_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_dim_requires_grad_False_components_require_grad_False_log_softmax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_dim_requires_grad_False_components_require_grad_False_softmax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_dim_requires_grad_True_components_require_grad_False_softmax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_dim_requires_grad_True_components_require_grad_True_softmax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_dim_transpose_non_ragged_dim_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_dim_transpose_non_ragged_dim_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_reduce_batch_dim_requires_grad_True_components_require_grad_True_softmax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_specialize_dynamic_shape_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sum_dim_reduce_batch_and_non_batch_keepdim_False_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sum_dim_reduce_batch_and_non_batch_keepdim_False_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sum_dim_reduce_batch_and_non_batch_keepdim_True_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sum_dim_reduce_ragged_and_non_batch_keepdim_True_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_copy_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_dtype_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_compile_nt_dim_2_requires_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_compile_nt_dim_2_requires_grad_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_compile_nt_dim_2_requires_grad_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_compile_nt_dim_2_requires_grad_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_compile_nt_dim_3_requires_grad_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_compile_nt_dim_3_requires_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_compile_nt_dim_3_requires_grad_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_compile_nt_dim_3_requires_grad_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_compile_nt_dim_3_requires_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_compile_nt_dim_4_requires_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_compile_nt_dim_4_requires_grad_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_nt_dim_2_requires_grad_False_cpu_bool, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_nt_dim_2_requires_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_nt_dim_2_requires_grad_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_nt_dim_2_requires_grad_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_nt_dim_2_requires_grad_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_nt_dim_3_requires_grad_True_cpu_bool, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_nt_dim_4_requires_grad_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_nt_dim_4_requires_grad_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_nt_dim_4_requires_grad_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_unary_pointwise_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_unbind_backward_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_unbind_backward_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_unbind_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_unbind_lengths_ragged_idx_0_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_unbind_transpose_ragged_idx_2_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_unsafe_view_cpu, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward___rdiv___cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward___rpow___cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_acosh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_amax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_angle_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_asinh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_bmm_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_chalf_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_complex_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_conj_physical_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_copysign_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_cosh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_deg2rad_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_div_no_rounding_mode_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_double_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_erfinv_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_exp2_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_float_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_floor_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_fmin_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_hypot_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_ldexp_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_linalg_vector_norm_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_log1p_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_logaddexp_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_logit_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_masked_amin_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_masked_logsumexp_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_masked_mean_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_masked_prod_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_max_binary_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_max_reduction_with_dim_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nanmean_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nn_functional_celu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nn_functional_embedding_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nn_functional_hardshrink_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nn_functional_hardsigmoid_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nn_functional_hardtanh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nn_functional_prelu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nn_functional_relu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nn_functional_selu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_polygamma_polygamma_n_1_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_polygamma_polygamma_n_3_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_polygamma_polygamma_n_4_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_positive_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_prod_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_rad2deg_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_reciprocal_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_round_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_rsqrt_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_select_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_sigmoid_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_sign_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_sin_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_special_entr_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_special_erfcx_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_special_i1e_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_special_ndtr_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_split_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_split_with_sizes_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_sqrt_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_squeeze_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_std_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_tan_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_to_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_unsqueeze_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_where_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward___rsub___cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_acosh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_amax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_asin_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_bmm_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_cdouble_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_chunk_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_clamp_max_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_clamp_min_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_cos_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_double_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_erfc_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_float_power_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_fmod_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_frexp_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_half_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_logaddexp_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_logit_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_masked_logsumexp_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_masked_prod_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_masked_std_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_mean_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_min_binary_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_minimum_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_nanmean_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_nn_functional_celu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_nn_functional_embedding_bag_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_nn_functional_relu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_nn_functional_softsign_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_polygamma_polygamma_n_1_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_rad2deg_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_reciprocal_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_round_decimals_0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_round_decimals_3_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_rsqrt_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_select_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_special_entr_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_special_i1e_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_sub_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_tanh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_true_divide_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_trunc_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_var_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_where_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward___rmod___cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward___rmul___cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward___rpow___cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_abs_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_acosh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_amin_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_argmin_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_asinh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_atan2_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_atanh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_bmm_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_byte_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_cdouble_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_clamp_max_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_clamp_min_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_conj_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_conj_physical_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_cos_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_exp2_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_float_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_float_power_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_floor_divide_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_fmod_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_frac_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_frexp_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_ge_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_gt_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_half_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_int_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_isnan_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_linalg_vector_norm_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_logaddexp_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_logical_not_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_logical_or_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_logical_xor_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_logit_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_maximum_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_nanmean_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_nansum_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_ne_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_nn_functional_embedding_bag_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_nn_functional_hardtanh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_nn_functional_logsigmoid_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_nn_functional_relu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_nn_functional_rms_norm_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_nn_functional_silu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_nn_functional_softplus_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_nn_functional_softsign_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_polar_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_polygamma_polygamma_n_0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_polygamma_polygamma_n_2_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_reciprocal_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_remainder_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_sgn_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_short_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_signbit_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_airy_ai_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_bessel_j1_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_bessel_y0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_chebyshev_polynomial_u_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_chebyshev_polynomial_w_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_erfcx_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_hermite_polynomial_he_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_i0e_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_laguerre_polynomial_l_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_ndtr_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_ndtri_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_scaled_modified_bessel_k1_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_squeeze_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_tan_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_tanh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_to_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_true_divide_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_unflatten_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_unsqueeze_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_xlogy_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward___radd___cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward___rdiv___cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward___rmul___cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward___rsub___cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_all_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_angle_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_any_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_atan_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_cdouble_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_char_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_clamp_max_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_clone_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_conj_physical_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_count_nonzero_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_deg2rad_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_div_floor_rounding_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_div_no_rounding_mode_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_erfinv_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_exp2_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_exp_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_float_power_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_gt_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_half_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_hash_tensor_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_heaviside_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_i0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_int_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_isclose_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_isfinite_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_isposinf_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_jiterator_binary_return_by_ref_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_le_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_lgamma_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_log1p_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_logaddexp_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_logical_not_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_logical_or_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_logical_xor_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_masked_norm_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_masked_std_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_masked_sum_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_maximum_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_mean_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_min_binary_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_mul_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nan_to_num_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nansum_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_narrow_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_neg_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nextafter_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nn_functional_elu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nn_functional_embedding_bag_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nn_functional_prelu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nn_functional_rrelu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nn_functional_selu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nn_functional_softshrink_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nn_functional_threshold_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_pow_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_rad2deg_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_rsqrt_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_sign_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_signbit_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_sin_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_chebyshev_polynomial_t_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_chebyshev_polynomial_u_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_erfcx_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_hermite_polynomial_he_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_i0e_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_i1_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_modified_bessel_k0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_scaled_modified_bessel_k0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_split_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_sqrt_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_squeeze_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_std_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_std_unbiased_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_tan_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_to_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_var_unbiased_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_where_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_nested_tensor_non_contiguous_mutation_cpu 2025-08-26T21:14:47.3734891Z 2025-08-26T21:14:52.6851122Z Running functorch/test_aotdispatch 5/7 ... [2025-08-26 21:14:52.682594] 2025-08-26T21:14:52.6851620Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:14:52.6857624Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_aotdispatch.py', '-m', 'not serial', '--shard-id=5', '--num-shards=7', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:14:52.682594] 2025-08-26T21:15:39.1324191Z 2025-08-26T21:15:39.1325415Z test_nestedtensor 2/3 was successful, full logs can be found in artifacts with path test/test-reports/test_nestedtensor_2.3_af280127d960b5b8_.log 2025-08-26T21:15:39.1704420Z Running 496 items in this shard: test/test_nestedtensor.py::TestNestedTensor::test_2d_nested_tensor_batch_size_2_max_seq_len_3_vocab_size_10, test/test_nestedtensor.py::TestNestedTensor::test_2d_nested_tensor_batch_size_4_max_seq_len_5_vocab_size_10, test/test_nestedtensor.py::TestNestedTensor::test_3d_nested_tensor_batch_size_4_max_seq_len_3_vocab_size_20, test/test_nestedtensor.py::TestNestedTensor::test_3d_nested_tensor_float_batch_size_2_max_seq_len_3_vocab_size_10, test/test_nestedtensor.py::TestNestedTensor::test_cat, test/test_nestedtensor.py::TestNestedTensor::test_is_contiguous, test/test_nestedtensor.py::TestNestedTensor::test_nested_view_from_buffer_overflow_errors, test/test_nestedtensor.py::TestNestedTensor::test_numel, test/test_nestedtensor.py::TestNestedTensor::test_repr_string, test/test_nestedtensor.py::TestNestedTensor::test_size_dim, test/test_nestedtensor.py::TestNestedTensor::test_stride, test/test_nestedtensor.py::TestNestedTensor::test_to, test/test_nestedtensor.py::TestNestedTensor::test_to_padded_tensor_on_empty_tensor, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_bmm_cuda_cpu_bfloat16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_bmm_noncontiguous_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_clone_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_detach_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_dropout_jagged_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_dropout_jagged_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_dropout_noncontiguous_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_embedding_jagged_cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_linear_noncontiguous_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_masked_fill_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_masked_fill_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_masked_fill_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_matmul_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_matmul_noncontiguous_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_matmul_nt_with_broadcasted_t_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_add_transpose_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_add_transpose_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_dense_elementwise_embedding_dim_128_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_dense_elementwise_embedding_dim_128_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_dense_elementwise_embedding_dim_8_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_mul_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_mul_in_place_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_split_with_sizes_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_split_with_sizes_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_sub_transpose_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_sub_transpose_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_sub_transpose_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_sum_dim_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_scaled_dot_product_attention_input_dim_3_cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_serialization_requires_grad_False_weights_only_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_serialization_requires_grad_False_weights_only_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_serialization_requires_grad_False_weights_only_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_serialization_requires_grad_True_weights_only_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_squeeze_unsqueeze_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_to_padded_tensor_dim3_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_to_padded_tensor_dim4_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_to_padded_tensor_dim4_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_to_padded_tensor_noncontiguous_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_to_padded_tensor_zero_numel_errors_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_transpose_inference_mode_interaction_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_unary_funcs_abs_cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_unary_funcs_isnan_cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_unary_funcs_isposinf_cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_unary_funcs_relu__cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_unary_funcs_relu_cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_unary_funcs_tanh__cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_unbind_noncontiguous_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_unbind_noncontiguous_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_view_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_view_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_view_inference_mode_interaction_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_view_inference_mode_interaction_cpu_float32, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_abs_backward_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_backward_add_strided_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_backward_for_sub_op_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_dropout_backward_jagged_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_layer_norm_backward_5d_size_128_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_layer_norm_backward_5d_size_4_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_layer_norm_backward_size_32_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_layer_norm_backward_size_4_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_nested_tensor_from_list_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_nested_tensor_linear_backward_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_nested_tensor_matmul_backward_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_nested_tensor_matmul_gradcheck_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_nested_tensor_reshape_backward_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_nested_tensor_squeeze_backward_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_nested_tensor_squeeze_gradcheck_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_nested_tensor_transpose_gradcheck_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_nested_tensor_unsqueeze_gradcheck_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_selu_backward_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_set_requires_grad_from_list_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_unbind_flow_through_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_values_grad_with_broadcast_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_0_layout_jagged_requires_grad_False_contiguous_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_0_layout_jagged_requires_grad_False_contiguous_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_0_layout_jagged_requires_grad_False_contiguous_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_0_layout_jagged_requires_grad_False_contiguous_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_0_layout_jagged_requires_grad_True_contiguous_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_0_layout_jagged_requires_grad_True_contiguous_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_0_layout_jagged_requires_grad_True_contiguous_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_0_layout_strided_requires_grad_False_contiguous_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_0_layout_strided_requires_grad_False_contiguous_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_0_layout_strided_requires_grad_True_contiguous_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_0_layout_strided_requires_grad_True_contiguous_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_0_layout_strided_requires_grad_True_contiguous_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_0_layout_strided_requires_grad_True_contiguous_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_1_layout_jagged_requires_grad_False_contiguous_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_1_layout_jagged_requires_grad_True_contiguous_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_1_layout_jagged_requires_grad_True_contiguous_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_1_layout_strided_requires_grad_False_contiguous_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_1_layout_strided_requires_grad_False_contiguous_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_2_layout_jagged_requires_grad_False_contiguous_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_2_layout_jagged_requires_grad_False_contiguous_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_2_layout_jagged_requires_grad_True_contiguous_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_2_layout_strided_requires_grad_False_contiguous_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_2_layout_strided_requires_grad_True_contiguous_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_2_layout_strided_requires_grad_True_contiguous_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_2_layout_strided_requires_grad_True_contiguous_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_3_layout_jagged_requires_grad_False_contiguous_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_3_layout_jagged_requires_grad_False_contiguous_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_3_layout_jagged_requires_grad_True_contiguous_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_3_layout_jagged_requires_grad_True_contiguous_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_3_layout_jagged_requires_grad_True_contiguous_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_3_layout_strided_requires_grad_False_contiguous_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_3_layout_strided_requires_grad_False_contiguous_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_3_layout_strided_requires_grad_False_contiguous_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_4_layout_jagged_requires_grad_False_contiguous_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_4_layout_jagged_requires_grad_False_contiguous_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_4_layout_jagged_requires_grad_False_contiguous_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_4_layout_jagged_requires_grad_False_contiguous_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_4_layout_strided_requires_grad_False_contiguous_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_4_layout_strided_requires_grad_False_contiguous_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_4_layout_strided_requires_grad_True_contiguous_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_4_layout_strided_requires_grad_True_contiguous_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_compile_with_propagated_dynamic_max_seq_len_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_composite_op_in_inference_mode_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_construction_from_list_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_flex_attention_converts_stacked_seq_indices_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_flex_attention_noncontig_with_holes_False_cross_attention_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_flex_attention_noncontig_with_holes_True_cross_attention_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_index_put_error_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_is_same_size_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_layout_construction_as_nested_tensor_components_require_grad_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_layout_construction_as_nested_tensor_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_layout_construction_as_nested_tensor_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_layout_construction_as_nested_tensor_components_require_grad_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_layout_construction_nested_tensor_requires_grad_False_components_require_grad_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_layout_construction_nested_tensor_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_layout_construction_nested_tensor_requires_grad_False_components_require_grad_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_layout_construction_nested_tensor_requires_grad_True_components_require_grad_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_layout_construction_nested_tensor_requires_grad_True_components_require_grad_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_op_different_output_shape_dim_mean_keepdim_False_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_op_different_output_shape_dim_mean_keepdim_True_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_op_different_output_shape_dim_sum_keepdim_True_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_padded_dense_conversion_kernels_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_padded_dense_conversion_kernels_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_view_from_values_offsets_requires_grad_False_values_is_view_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_view_from_values_offsets_requires_grad_False_values_is_view_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_view_from_values_offsets_requires_grad_False_values_is_view_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_view_from_values_offsets_requires_grad_True_values_is_view_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_view_from_values_offsets_requires_grad_True_values_is_view_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_view_from_values_offsets_requires_grad_True_values_is_view_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_view_from_values_offsets_requires_grad_True_values_is_view_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_view_from_values_offsets_requires_grad_True_values_is_view_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_layer_norm_2d_input_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_layer_norm_operate_on_batch_dim_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_like_value_ones_like_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_linear_nt_dim_4_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_linear_nt_dim_5_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_narrow_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_nested_tensor_from_jagged_fx_trace_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_nested_tensor_from_jagged_pass_min_max_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_noncontiguous_to_noncontig_transposed_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_noncontiguous_to_noncontig_with_holes_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_batch_only_different_output_shape_mean_keepdim_False_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_batch_only_different_output_shape_mean_keepdim_False_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_batch_only_different_output_shape_mean_keepdim_True_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_batch_only_different_output_shape_sum_keepdim_False_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_batch_only_different_output_shape_sum_keepdim_False_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_batch_only_different_output_shape_sum_keepdim_True_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_batch_only_different_output_shape_sum_keepdim_True_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_1_different_output_shape_mean_keepdim_False_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_1_different_output_shape_sum_keepdim_True_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_1_different_output_shape_sum_keepdim_True_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_greater_than_1_different_output_shape_mean_transpose_offset_1_keepdim_False_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_greater_than_1_different_output_shape_mean_transpose_offset_2_keepdim_False_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_greater_than_1_different_output_shape_mean_transpose_offset_2_keepdim_True_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_greater_than_1_different_output_shape_sum_transpose_offset_1_keepdim_False_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_greater_than_1_different_output_shape_sum_transpose_offset_1_keepdim_False_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_greater_than_1_different_output_shape_sum_transpose_offset_1_keepdim_True_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_greater_than_1_different_output_shape_sum_transpose_offset_1_keepdim_True_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_greater_than_1_different_output_shape_sum_transpose_offset_2_keepdim_True_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_greater_than_1_different_output_shape_sum_transpose_offset_2_keepdim_True_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_greater_than_1_different_output_shape_sum_transpose_offset_2_keepdim_True_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_greater_than_1_different_output_shape_sum_transpose_offset_2_keepdim_True_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_transpose_non_ragged_dim_different_output_shape_mean_keepdim_False_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_transpose_non_ragged_dim_different_output_shape_mean_keepdim_False_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_transpose_non_ragged_dim_different_output_shape_mean_keepdim_False_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_transpose_non_ragged_dim_different_output_shape_mean_keepdim_True_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_transpose_non_ragged_dim_different_output_shape_sum_keepdim_False_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_transpose_non_ragged_dim_different_output_shape_sum_keepdim_True_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sdpa_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_serialization_noncontig_with_holes_weights_only_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_dim_reduce_ragged_idx_1_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_dim_reduce_ragged_idx_1_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_dim_reduce_ragged_idx_greater_than_1_same_output_shape_transpose_offset_1_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_dim_reduce_ragged_idx_greater_than_1_same_output_shape_transpose_offset_2_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_dim_reduce_ragged_idx_greater_than_1_same_output_shape_transpose_offset_2_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_dim_requires_grad_False_components_require_grad_True_log_softmax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_dim_transpose_non_ragged_dim_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_dim_with_lengths_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_dim_with_lengths_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_dim_with_lengths_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_reduce_batch_dim_requires_grad_False_components_require_grad_False_log_softmax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_reduce_batch_dim_requires_grad_False_components_require_grad_False_softmax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_reduce_batch_dim_requires_grad_False_components_require_grad_True_log_softmax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_reduce_batch_dim_requires_grad_True_components_require_grad_False_log_softmax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_reduce_batch_dim_requires_grad_True_components_require_grad_False_softmax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_split_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sum_dim_reduce_batch_and_non_batch_keepdim_False_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sum_dim_reduce_batch_and_non_batch_keepdim_True_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sum_dim_reduce_batch_and_non_batch_keepdim_True_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sum_dim_reduce_ragged_and_non_batch_keepdim_False_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sum_dim_reduce_ragged_and_non_batch_keepdim_False_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sum_dim_reduce_ragged_and_non_batch_keepdim_True_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sum_dim_reduce_ragged_and_non_batch_keepdim_True_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sum_dim_reduce_ragged_and_non_batch_keepdim_True_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_compile_nt_dim_2_requires_grad_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_compile_nt_dim_3_requires_grad_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_compile_nt_dim_4_requires_grad_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_compile_nt_dim_4_requires_grad_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_compile_nt_dim_4_requires_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_compile_nt_dim_4_requires_grad_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_nt_dim_2_requires_grad_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_nt_dim_2_requires_grad_True_cpu_bool, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_nt_dim_2_requires_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_nt_dim_4_requires_grad_False_cpu_bool, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_nt_dim_4_requires_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_nt_dim_4_requires_grad_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_unbind_backward_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_unbind_lengths_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_unbind_lengths_ragged_idx_1_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_unbind_lengths_ragged_idx_equals_2_bad_dim_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_unbind_transpose_ragged_idx_last_dim_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_views_inherit_ragged_dim_cpu, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_acos_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_add_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_amin_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_atanh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_chunk_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_expm1_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_fmax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_frac_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_i0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_index_put_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_lgamma_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_log_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_masked_amax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_masked_std_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_masked_sum_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_maximum_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_min_reduction_with_dim_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nan_to_num_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_narrow_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nn_functional_elu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nn_functional_mish_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nn_functional_silu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nn_functional_softshrink_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nn_functional_softsign_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_polygamma_polygamma_n_0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_polygamma_polygamma_n_2_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_real_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_remainder_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_round_decimals_0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_round_decimals_3_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_round_decimals_neg_3_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_sinh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_special_i0e_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_special_i1_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_special_log_ndtr_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_sub_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_sum_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_tanh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_unflatten_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward___radd___cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward___rdiv___cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward___rmul___cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward___rpow___cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_acos_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_add_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_atan_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_cfloat_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_chalf_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_clone_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_conj_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_copysign_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_cosh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_div_floor_rounding_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_div_trunc_rounding_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_erf_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_erfinv_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_exp_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_fill_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_floor_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_fmax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_fmin_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_frac_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_i0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_index_put_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_ldexp_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_log2_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_log_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_masked_amax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_masked_var_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_max_binary_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_maximum_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_min_reduction_with_dim_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_mul_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_narrow_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_neg_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_nn_functional_elu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_nn_functional_embedding_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_nn_functional_hardshrink_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_nn_functional_hardtanh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_nn_functional_linear_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_nn_functional_relu6_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_nn_functional_rms_norm_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_nn_functional_selu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_nn_functional_tanhshrink_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_nn_functional_threshold_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_polygamma_polygamma_n_0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_polygamma_polygamma_n_2_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_prod_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_remainder_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_round_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_round_decimals_neg_3_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_rsub_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_sgn_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_sign_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_sinc_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_special_erfcx_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_special_i1_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_special_log_ndtr_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_special_xlog1py_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_split_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_square_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_squeeze_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_std_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_sum_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_unsqueeze_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_var_unbiased_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward___rdiv___cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_acos_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_all_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_argmax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_atan_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_bfloat16_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_bool_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_chalf_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_char_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_chunk_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_clone_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_copysign_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_deg2rad_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_digamma_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_div_trunc_rounding_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_double_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_erf_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_erfc_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_expm1_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_floor_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_fmax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_fmin_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_i0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_igammac_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_index_put_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_isfinite_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_isinf_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_isposinf_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_isreal_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_ldexp_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_log10_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_log1p_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_log_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_long_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_masked_amax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_masked_amin_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_masked_argmax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_masked_mean_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_masked_select_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_masked_var_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_max_binary_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_mean_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_min_binary_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_min_reduction_with_dim_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_mul_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_neg_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_nextafter_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_nn_functional_celu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_nn_functional_elu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_nn_functional_hardsigmoid_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_nn_functional_linear_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_nn_functional_prelu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_nn_functional_selu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_nn_functional_softshrink_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_nn_functional_threshold_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_polygamma_polygamma_n_1_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_prod_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_rad2deg_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_round_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_round_decimals_0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_rsqrt_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_select_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_sigmoid_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_sign_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_sin_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_bessel_j0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_chebyshev_polynomial_t_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_chebyshev_polynomial_v_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_entr_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_i1e_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_modified_bessel_i0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_modified_bessel_k1_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_scaled_modified_bessel_k0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_spherical_bessel_j0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_split_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_std_unbiased_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_var_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_var_unbiased_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_where_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward___rmod___cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward___rpow___cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_acos_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_acosh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_amax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_amin_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_argmin_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_atanh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_byte_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_clamp_min_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_conj_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_copysign_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_cosh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_double_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_erf_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_expm1_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_float_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_fmax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_fmin_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_fmod_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_igamma_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_isneginf_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_jiterator_binary_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_ldexp_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_linalg_vector_norm_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_log2_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_logical_and_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_long_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_lt_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_masked_amin_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_masked_argmax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_masked_argmin_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_masked_logsumexp_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_masked_select_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_max_binary_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_min_reduction_with_dim_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_minimum_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_ne_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nn_functional_embedding_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nn_functional_hardshrink_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nn_functional_hardtanh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nn_functional_linear_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nn_functional_mish_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nn_functional_relu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nn_functional_softsign_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nn_functional_tanhshrink_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_polygamma_polygamma_n_2_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_positive_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_prod_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_real_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_remainder_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_round_decimals_0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_round_decimals_3_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_round_decimals_neg_3_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_sigmoid_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_sinh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_bessel_j0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_bessel_y0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_chebyshev_polynomial_v_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_chebyshev_polynomial_w_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_hermite_polynomial_h_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_legendre_polynomial_p_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_modified_bessel_i1_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_modified_bessel_k1_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_xlog1py_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_zeta_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_sum_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_tanh_cpu_float32 2025-08-26T21:15:39.2074868Z 2025-08-26T21:15:44.8714440Z Running functorch/test_aotdispatch 6/7 ... [2025-08-26 21:15:44.866292] 2025-08-26T21:15:44.8714930Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:15:44.8722054Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_aotdispatch.py', '-m', 'not serial', '--shard-id=6', '--num-shards=7', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:15:44.866292] 2025-08-26T21:20:46.5061916Z 2025-08-26T21:20:46.5063131Z functorch/test_aotdispatch 4/7 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_aotdispatch_4.7_6a616a173d9ea8ca_.log 2025-08-26T21:20:46.5207650Z Running 292 items in this shard: test/functorch/test_aotdispatch.py::TestAOTAutograd::test_alias_of_intermediate_detach_backend_aot_eager_view_replay_for_aliased_outputs_True_dynamic_shapes_False, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_backward_mutation_data, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_backward_mutation_on_grad_out, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_backward_pass_autocast_off, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_batch_norm_amp, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_buffer_copied_in_graph_with_different_shapes, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_composite_impl_compile, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_dynamic_output_aliases_input_view_meta_replay, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_inner_grad, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_mutation_aliases_other_input, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_mutation_metadata, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_mutation_metadata2, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_mutation_requires_grad_detach, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_output_aliase_custom_autograd_function, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_output_view_metadata_mutate_multiple, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_invalid_requires_grad_fake, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_mark_activations_dynamic, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_output_aliases_intermediate_multi_output_view, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_set__steals_view_chain, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_some_output_requires_grad_input_doesnt, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_some_outputs_dont_require_grad_non_view, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_some_outputs_dont_require_grad_view, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_subclass_metadata_mutation_req_grad_True, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_subclasses_mixed, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_synthetic_base_base_attribute_is_none, test/functorch/test_aotdispatch.py::TestAOTExport::test_aot_export_forward_mutation_no_buffer_mut, test/functorch/test_aotdispatch.py::TestAOTDispatch::test_aot_dispatch_incorrect_backward, test/functorch/test_aotdispatch.py::TestAOTDispatch::test_aot_dispatch_output_alias, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_inference_python_dispatcher, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_noncontig_nonmemformat_tangents_dynamic_shapes_False_test_subclasses_True_device_cuda, test/functorch/test_aotdispatch.py::TestPythonKeyCPU::test_make_fx_functionalize_cpu, test/functorch/test_aotdispatch.py::TestPythonKeyCPU::test_nnc_pytrees_cpu, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive___rmul___cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive__native_batch_norm_legit_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_alias_copy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_any_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_argsort_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_asin_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_bucketize_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_cauchy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_clamp_min_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_cumsum_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_double_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_expand_as_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_expand_copy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_expm1_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_fft_fft_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_fft_hfft_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_fft_hfftn_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_fft_ifftn_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_fmax_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_fmin_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_fmod_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_frexp_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_gather_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_histogram_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_index_select_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_inner_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_jiterator_4inputs_with_extra_args_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_ldexp_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_diagonal_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_eigh_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_inv_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_lstsq_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_logaddexp2_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_logical_and_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_logit_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_long_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_lu_unpack_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_map_nested_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_masked_amin_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_masked_cumsum_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_masked_mean_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_masked_softmax_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_masked_var_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_max_reduction_with_dim_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_mean_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_movedim_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_multinomial_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_mv_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_mvlgamma_mvlgamma_p_1_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_new_empty_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_instance_norm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_interpolate_linear_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_leaky_relu_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_max_unpool1d_grad_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_max_unpool2d_grad_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_nll_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_pdist_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_pixel_shuffle_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_relu_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_upsample_nearest_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_normal_number_mean_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_permute_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_pinverse_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_polygamma_polygamma_n_3_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_qr_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_randn_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_randn_like_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_ravel_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_real_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_round_decimals_0_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_rsqrt_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_scatter_add_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_scatter_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_scatter_reduce_sum_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_sigmoid_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_sign_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_signal_windows_general_cosine_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_signal_windows_kaiser_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_signal_windows_nuttall_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_sin_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_sinc_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_sparse_sampled_addmm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_hermite_polynomial_h_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_log_ndtr_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_modified_bessel_i0_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_spherical_bessel_j0_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_xlog1py_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_split_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_square_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_squeeze_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_triangular_solve_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_unbind_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_unflatten_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_unfold_copy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_unfold_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_unsqueeze_copy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_view_as_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___rpow___cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive__segment_reduce_lengths_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive__upsample_bilinear2d_aa_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_argwhere_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_bernoulli_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_cfloat_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_chunk_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_clone_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_copysign_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_corrcoef_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_cross_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_deg2rad_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_diag_embed_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_diagonal_copy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_expm1_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_fft_hfft2_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_fft_ihfft_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_flatten_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_fmax_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_fmin_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_frac_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_grid_sampler_3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_half_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_heaviside_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_histc_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_histogram_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_invoke_quant_packed_simple_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_invoke_quant_simple_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_isnan_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_cholesky_ex_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_eig_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_eigvals_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linspace_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_log2_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_logical_xor_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_masked_logaddexp_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_masked_select_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_matmul_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_max_reduction_no_dim_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_mean_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nanmedian_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_native_dropout_backward_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_new_ones_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_avg_pool1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_conv_transpose3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_gaussian_nll_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_hardsigmoid_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_hinge_embedding_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_huber_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_l1_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_max_pool3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_max_unpool2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_mse_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_nll_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_pdist_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_tanhshrink_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nonzero_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_norm_fro_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_normal_in_place_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_polygamma_polygamma_n_0_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_polygamma_polygamma_n_2_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_prod_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_randint_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_reshape_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_rot90_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_scatter_reduce_mean_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_sgn_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_signal_windows_exponential_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_signal_windows_hamming_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_signbit_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_slice_scatter_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_chebyshev_polynomial_t_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_erfcx_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_i1_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_legendre_polynomial_p_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_split_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_std_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_t_copy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_tensor_split_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_topk_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_trunc_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_unflatten_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_var_mean_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_view_copy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_view_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_AvgPool3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_Bilinear_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_CircularPad1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_ConstantPad2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_ConvTranspose1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_L1Loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_LSTM_train_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_LazyConv1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_LazyConv3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_MaxPool1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_MultiLabelMarginLoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_NLLLoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_PReLU_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_RNN_eval_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_ReflectionPad1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_Softmax_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_Softsign_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_TransformerEncoderLayer_train_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_CircularPad3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_ConstantPad1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_CosineEmbeddingLoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_ELU_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_GRU_train_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_Hardswish_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_InstanceNorm3d_eval_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_LazyConv1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_LazyConv2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_MSELoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_MarginRankingLoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_Mish_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_MultiheadAttention_eval_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_RNN_eval_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_SELU_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_SmoothL1Loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_Tanhshrink_cpu_float32, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_alias_of_intermediate_detach_backend_aot_eager_view_replay_for_aliased_outputs_False_dynamic_shapes_False, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_backward_mutation_metadata, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_batchnorm, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_mutation_aliases_bases_out_of_order, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_mutation_batchnorm, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_mutation_metadata2, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_mutation_multiple, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_invalid_dupe, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_mutation_of_input_in_fw_and_bw, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_nested_subclasses_non_nested_grad, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_nonidempotent_amp, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_output_aliases_input_multi_output_view, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_output_aliases_intermediate_and_returned_flipped, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_output_aliases_intermediate_no_grad, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_output_aliases_intermediate_single, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_output_aliases_intermediate_view_meta_replay, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_real_weights_in_symbolic_mode, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_saved_tensors_hooks_mutations_raise, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_view_and_inplace_view, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_backward_mutation_metadata, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_complex_linear, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_default_partitioner_saves_symints_not_tensors_for_bw, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_data_and_metadata_mutation_aliases_other_input, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_mutation_aliases_and_none_require_gradients, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_mutation_aliases_bases_out_of_order, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_mutation_and_output_view, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_mutation_requires_grad_no_grad_detach_mixed, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_mutation_requires_grad_no_grad_inference_graph, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_output_view_mutate_multiple, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_output_view_simple, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_mutates_input_noncontiguous, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_mutation_of_input_in_fw_and_bw, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_non_tensor_and_none_inputs, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_output_aliases_intermediate_and_returned, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_output_aliases_intermediate_inplace_view_and_view, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_output_aliases_intermediate_no_grad, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_output_aliases_intermediate_single, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_output_aliases_multiple_inputs_get_correct_one, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_output_dict, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_saved_tensors_hooks_mutations_raise, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_set__not_allowed, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_subclasses_mixed_mode 2025-08-26T21:20:46.5340319Z 2025-08-26T21:20:51.7271182Z Running inductor/test_perf 1/1 ... [2025-08-26 21:20:51.718292] 2025-08-26T21:20:51.7271657Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:20:51.7278237Z 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-26 21:20:51.718292] 2025-08-26T21:21:02.7952114Z 2025-08-26T21:21:02.7953535Z inductor/test_perf 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_perf_1.1_28032f3c8ee7c3c5_.log 2025-08-26T21:21:02.7954693Z 2025-08-26T21:21:08.4066386Z Running dynamo/test_fx_graph_runnable 1/1 ... [2025-08-26 21:21:08.404525] 2025-08-26T21:21:08.4066901Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:21:08.4072816Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_fx_graph_runnable.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:21:08.404525] 2025-08-26T21:21:20.2257837Z 2025-08-26T21:21:20.2259435Z dynamo/test_fx_graph_runnable 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_fx_graph_runnable_1.1_2a9bd32f88356863_.log 2025-08-26T21:21:20.2260677Z 2025-08-26T21:21:25.9576662Z Running inductor/test_fused_attention 1/1 ... [2025-08-26 21:21:25.956554] 2025-08-26T21:21:25.9577225Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:21:25.9583333Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_fused_attention.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:21:25.956554] 2025-08-26T21:21:36.6064623Z 2025-08-26T21:21:36.6065920Z inductor/test_fused_attention 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_fused_attention_1.1_ae77939e9e8b922c_.log 2025-08-26T21:21:36.6066716Z 2025-08-26T21:21:41.7780785Z Running inductor/test_pad_mm 1/1 ... [2025-08-26 21:21:41.776942] 2025-08-26T21:21:41.7781531Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:21:41.7788919Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_pad_mm.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:21:41.776942] 2025-08-26T21:21:52.5970966Z 2025-08-26T21:21:52.5972230Z inductor/test_pad_mm 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_pad_mm_1.1_125699822ece5e9f_.log 2025-08-26T21:21:52.5972849Z 2025-08-26T21:21:58.3745462Z Running inductor/test_inductor_utils 1/1 ... [2025-08-26 21:21:58.374221] 2025-08-26T21:21:58.3751672Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:21:58.3753414Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_inductor_utils.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:21:58.374842] 2025-08-26T21:22:03.1130444Z 2025-08-26T21:22:03.1131339Z inductor/test_inductor_utils 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_inductor_utils_1.1_aa5ec1c4fad5a6de_.log 2025-08-26T21:22:03.1132038Z 2025-08-26T21:22:08.5699098Z Running inductor/test_b2b_gemm 1/1 ... [2025-08-26 21:22:08.569461] 2025-08-26T21:22:08.5699551Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:22:08.5706059Z 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-26 21:22:08.570044] 2025-08-26T21:22:20.6167366Z 2025-08-26T21:22:20.6168613Z 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_eb53e1d02477e4fb_.log 2025-08-26T21:22:20.6169652Z 2025-08-26T21:22:26.6562467Z Running inductor/test_inductor_annotations 1/1 ... [2025-08-26 21:22:26.653309] 2025-08-26T21:22:26.6562979Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:22:26.6572621Z 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-26 21:22:26.656439] 2025-08-26T21:22:37.4108582Z 2025-08-26T21:22:37.4109872Z 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_61c7887195f8efe1_.log 2025-08-26T21:22:37.4110610Z 2025-08-26T21:22:43.0125746Z Running export/test_unflatten_training_ir 1/1 ... [2025-08-26 21:22:43.009887] 2025-08-26T21:22:43.0126517Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:22:43.0135998Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_unflatten_training_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-26 21:22:43.012977] 2025-08-26T21:22:47.3618647Z 2025-08-26T21:22:47.3619765Z export/test_unflatten_training_ir 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_unflatten_training_ir_1.1_ac57a96d9b510095_.log 2025-08-26T21:22:47.3620477Z 2025-08-26T21:22:52.7450010Z Running inductor/test_torchinductor_strided_blocks 1/1 ... [2025-08-26 21:22:52.735821] 2025-08-26T21:22:52.7450971Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:22:52.7461334Z 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-26 21:22:52.735821] 2025-08-26T21:23:03.1592978Z 2025-08-26T21:23:03.1593971Z 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_abd1952a2646ea1d_.log 2025-08-26T21:23:03.1594811Z 2025-08-26T21:23:08.6055736Z Running inductor/test_metrics 1/1 ... [2025-08-26 21:23:08.604874] 2025-08-26T21:23:08.6056533Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:23:08.6063431Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_metrics.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:23:08.606059] 2025-08-26T21:23:19.8446231Z 2025-08-26T21:23:19.8447545Z inductor/test_metrics 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_metrics_1.1_95d28a2ed20373c0_.log 2025-08-26T21:23:19.8448853Z 2025-08-26T21:23:25.5701484Z Running inductor/test_compile_worker 1/1 ... [2025-08-26 21:23:25.569714] 2025-08-26T21:23:25.5701986Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:23:25.5710930Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_compile_worker.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:23:25.570307] 2025-08-26T21:23:36.7756599Z 2025-08-26T21:23:36.7757823Z inductor/test_compile_worker 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_compile_worker_1.1_f2be9d327f064d4f_.log 2025-08-26T21:23:36.7758867Z 2025-08-26T21:23:42.2749232Z Running inductor/test_remote_cache 1/1 ... [2025-08-26 21:23:42.274393] 2025-08-26T21:23:42.2749752Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:23:42.2755986Z 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-26 21:23:42.274965] 2025-08-26T21:23:46.6427336Z 2025-08-26T21:23:46.6428421Z 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_cb75878960ff1ba2_.log 2025-08-26T21:23:46.6429104Z 2025-08-26T21:23:50.7667365Z 2025-08-26T21:23:50.7668272Z functorch/test_aotdispatch 5/7 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_aotdispatch_5.7_c9762b4c79420834_.log 2025-08-26T21:23:50.7829753Z Running 326 items in this shard: test/functorch/test_aotdispatch.py::TestAOTAutograd::test_buffer_copied_in_graph, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_dupe_arg, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_embedding_bag_view_dynamic, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_grad_context, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_mutation_output_view_multiple, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_mutation_set__input_mutation, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_mutation_simple_with_none_and_nontensor, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_mutation_storage_resize_up, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_invalid_requires_grad, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_output_aliases_intermediate_and_returned, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_output_aliases_intermediate_view_meta_replay, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_subclass_metadata_mutation_req_grad_False, test/functorch/test_aotdispatch.py::TestAOTExport::test_aot_export_input_mutation_on_parameter_banned, test/functorch/test_aotdispatch.py::TestAOTExport::test_aot_export_module_joint, test/functorch/test_aotdispatch.py::TestAOTExport::test_aot_export_predispatch_func_view, test/functorch/test_aotdispatch.py::TestAOTExport::test_aot_export_unbacked_arg, test/functorch/test_aotdispatch.py::TestAOTExport::test_aot_export_with_torch_cond, test/functorch/test_aotdispatch.py::TestPartitioning::test_default_partitioner_output_tensor_shape_tensor, test/functorch/test_aotdispatch.py::TestAOTDispatch::test_aot_dispatch_input_metadata_mutation, test/functorch/test_aotdispatch.py::TestAOTDispatch::test_aot_dispatch_output_requires_grad_in_no_grad_views, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_aot_module_simplified_preserves_stack_trace, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_grads_no_force_contiguous_nested_subclass, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_noncontig_nonmemformat_tangents_dynamic_shapes_False_test_subclasses_False_device_cpu, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_rrelu_with_noise_mutation, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_saved_tensors_hooks_base_saved_tensors_hooks_filtering_mode_all, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_subclass_parameters, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_subclass_parameters_torture_case, test/functorch/test_aotdispatch.py::TestPythonKeyCPU::test_make_fx_grad_cpu, test/functorch/test_aotdispatch.py::TestPythonKeyCPU::test_make_fx_jacrev_cpu, test/functorch/test_aotdispatch.py::TestPythonKeyCPU::test_make_fx_vmap_cpu, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive___getitem___cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive___rmatmul___cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive___rpow___cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_abs_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_addmv_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_aminmax_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_arange_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_atan2_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_atleast_1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_atleast_3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_bmm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_cartesian_prod_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_cdist_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_cholesky_solve_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_clone_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_combinations_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_cond_simple_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_cross_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_cumprod_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_cumulative_trapezoid_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_diagflat_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_diagonal_copy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_dist_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_div_no_rounding_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_empty_like_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_empty_permuted_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_erf_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_fft_ifft_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_fft_ihfft_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_flatten_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_fliplr_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_float_power_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_full_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_igammac_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_index_add_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_index_reduce_amin_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_isclose_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_isin_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_isneginf_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_jiterator_2inputs_2outputs_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_det_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_eig_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_inv_ex_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_ldl_factor_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_tensorinv_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_vector_norm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_log_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_mH_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_masked_fill_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_max_reduction_no_dim_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_maximum_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_min_binary_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_min_reduction_with_dim_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nanmedian_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nansum_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_narrow_copy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_native_batch_norm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_avg_pool1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_celu_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_dropout2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_dropout_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_elu_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_embedding_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_fractional_max_pool3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_glu_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_group_norm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_huber_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_local_response_norm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_logsigmoid_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_max_pool3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_mse_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_pixel_unshuffle_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_poisson_nll_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_selu_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_outer_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_polygamma_polygamma_n_1_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_randint_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_round_decimals_neg_3_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_scalar_tensor_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_scatter_reduce_amax_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_scatter_reduce_prod_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_searchsorted_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_short_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_signal_windows_bartlett_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_signal_windows_exponential_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_signal_windows_hann_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_softmax_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_sparse_mm_reduce_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_bessel_j0_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_chebyshev_polynomial_t_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_chebyshev_polynomial_u_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_erfcx_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_hermite_polynomial_he_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_i0e_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_i1_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_laguerre_polynomial_l_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_modified_bessel_i1_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_modified_bessel_k0_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_ndtri_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_shifted_chebyshev_polynomial_u_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_std_unbiased_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_sub_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_take_along_dim_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_to_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_trace_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_trapezoid_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_triu_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_unsafe_chunk_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_var_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_var_unbiased_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_view_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_where_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive__native_batch_norm_legit_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive__softmax_backward_data_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_acos_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_addmm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_addmm_decomposed_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_aminmax_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_asin_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_baddbmm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_bmm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_cdist_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_char_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_clamp_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_combinations_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_cosh_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_cumsum_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_diagflat_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_dsplit_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_einsum_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_empty_permuted_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_equal_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_erfc_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_exp2_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_expand_as_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_exponential_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_eye_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_fft_ifftn_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_fft_ihfftn_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_fft_irfftn_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_flex_attention_backward_simple_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_fliplr_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_flipud_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_frexp_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_gt_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_hash_tensor_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_index_fill_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_index_reduce_amax_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_int_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_isfinite_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_jiterator_unary_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_eigvalsh_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_householder_product_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_inv_ex_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_ldl_solve_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_matrix_norm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_matrix_rank_hermitian_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_pinv_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_pinv_singular_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_qr_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linspace_tensor_overload_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_mT_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_masked_argmin_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_masked_logsumexp_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_masked_median_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_masked_softmax_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_masked_std_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_min_binary_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_min_reduction_with_dim_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_movedim_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_new_empty_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_new_zeros_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_adaptive_max_pool2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_binary_cross_entropy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_conv1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_cosine_similarity_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_embedding_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_interpolate_bicubic_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_interpolate_nearest-exact_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_logsigmoid_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_max_unpool1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_prelu_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_rms_norm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_silu_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_smooth_l1_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_norm_nuc_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_ones_like_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_permute_copy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_polar_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_quantile_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_randn_like_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_real_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_remainder_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_renorm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_repeat_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_repeat_interleave_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_resolve_conj_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_scalar_tensor_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_scatter_reduce_amax_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_scatter_reduce_prod_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_select_scatter_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_signal_windows_blackman_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_signal_windows_general_cosine_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_signal_windows_kaiser_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_sparse_mm_reduce_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_bessel_j0_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_bessel_y0_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_chebyshev_polynomial_u_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_modified_bessel_k1_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_ndtri_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_shifted_chebyshev_polynomial_t_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_zeta_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_split_with_sizes_copy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_stft_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_transpose_copy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_trapezoid_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_trapz_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_true_divide_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_unique_consecutive_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_unsqueeze_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_vstack_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_CELU_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_CTCLoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_Conv2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_Embedding_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_HuberLoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_LayerNorm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_LazyConvTranspose1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_LazyConvTranspose3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_MultiMarginLoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_ReLU6_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_ReplicationPad2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_SELU_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_Softmax2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_Softplus_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_Tanh_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_AdaptiveAvgPool2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_AvgPool3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_BatchNorm3d_eval_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_BatchNorm3d_train_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_CTCLoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_ConstantPad3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_ConvTranspose3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_GroupNorm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_L1Loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_LSTM_train_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_LogSigmoid_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_MaxPool3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_MultiLabelMarginLoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_MultiheadAttention_train_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_RMSNorm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_RNNCell_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_Tanh_cpu_float32, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_alias_of_intermediate_detach_backend_inductor_view_replay_for_aliased_outputs_False_dynamic_shapes_False, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_autocast_disable_guard, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_backward_mutation_on_grad_out, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_backward_pass_autocast_custom, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_data_and_metadata_mutation, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_mutation_modifies_autograd_meta_of_aliases, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_mutation_output_view_multiple, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_mutation_set__nop, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_mutation_simple_with_none_and_nontensor, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_mutation_storage_resize_down_and_set_, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_output_aliase_custom_autograd_function, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_output_view_simple, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_inputs_overlapping_with_mutation_guard_base, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_invalid_requires_grad_fake, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_mark_outputs_dynamic_use_autograd_False, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_new_inp_requires_grad_now, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_no_grad_input_output, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_output_aliases_intermediate_and_returned_different_grad, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_output_aliases_intermediate_multiple_mixed, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_subclass_metadata_mutation_req_grad_False, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_alias_of_intermediate_detach_backend_aot_eager_view_replay_for_aliased_outputs_False_dynamic_shapes_False, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_alias_of_intermediate_detach_backend_inductor_view_replay_for_aliased_outputs_False_dynamic_shapes_True, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_backward_mutation_data, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_backward_mutation_forward_inputs_create_graph, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_backward_mutation_on_grad_out, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_batch_norm_amp, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_buffer_copied_in_graph_with_different_shapes, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_inference_mode, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_metadata_mutation_aliases, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_mutation_requires_grad_detach, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_mutation_simple, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_mutation_storage_resize_down_and_set_, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_mutations_in_bw_detached_from_tangent, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_nonidempotent_amp, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_output_aliases_intermediate_and_returned_flipped, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_real_weights_in_symbolic_mode, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_real_weights_in_symbolic_mode_with_inplace_ops, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_set__and_data_mutation_good, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_some_output_requires_grad_input_doesnt 2025-08-26T21:23:50.7983345Z 2025-08-26T21:23:51.7904931Z Running export/test_export_strict 1/1 ... [2025-08-26 21:23:51.789854] 2025-08-26T21:23:51.7905387Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:23:51.7911644Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_export_strict.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:23:51.790964] 2025-08-26T21:23:56.1657577Z Running export/test_serdes 1/1 ... [2025-08-26 21:23:56.165597] 2025-08-26T21:23:56.1658015Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:23:56.1664509Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_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-26 21:23:56.166190] 2025-08-26T21:24:01.9797271Z 2025-08-26T21:24:01.9798391Z export/test_export_strict 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_export_strict_1.1_01d8c5a1fc9f0284_.log 2025-08-26T21:24:01.9799066Z 2025-08-26T21:24:07.1779275Z 2025-08-26T21:24:07.1780175Z export/test_serdes 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_serdes_1.1_2b0a7cbebfd364be_.log 2025-08-26T21:24:07.1780799Z 2025-08-26T21:24:07.4626478Z Running dynamo/test_skip_guard_eval_unsafe 1/1 ... [2025-08-26 21:24:07.461861] 2025-08-26T21:24:07.4627382Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:24:07.4636943Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_skip_guard_eval_unsafe.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:24:07.462909] 2025-08-26T21:24:12.2031531Z 2025-08-26T21:24:12.2033029Z dynamo/test_skip_guard_eval_unsafe 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_skip_guard_eval_unsafe_1.1_87aa19f5934fbcf8_.log 2025-08-26T21:24:12.2034244Z 2025-08-26T21:24:12.6446430Z Running inductor/test_foreach 1/1 ... [2025-08-26 21:24:12.644435] 2025-08-26T21:24:12.6447085Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:24:12.6454300Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_foreach.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:24:12.644435] 2025-08-26T21:24:17.7850137Z Running dynamo/test_frame_init 1/1 ... [2025-08-26 21:24:17.781257] 2025-08-26T21:24:17.7850653Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:24:17.7856631Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_frame_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-26 21:24:17.781257] 2025-08-26T21:24:22.5113145Z 2025-08-26T21:24:22.5114042Z dynamo/test_frame_init 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_frame_init_1.1_4728de6dfec75bea_.log 2025-08-26T21:24:22.5114719Z 2025-08-26T21:24:23.5348863Z 2025-08-26T21:24:23.5349774Z inductor/test_foreach 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_foreach_1.1_d620f1f90135c1cf_.log 2025-08-26T21:24:23.5350420Z 2025-08-26T21:24:27.8476437Z Running inductor/test_fp8 1/1 ... [2025-08-26 21:24:27.843593] 2025-08-26T21:24:27.8477177Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:24:27.8483570Z 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-26 21:24:27.843593] 2025-08-26T21:24:29.0381607Z Running inductor/test_coordinate_descent_tuner 1/1 ... [2025-08-26 21:24:29.036284] 2025-08-26T21:24:29.0382604Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:24:29.0389276Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_coordinate_descent_tuner.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:24:29.036284] 2025-08-26T21:24:38.4975449Z 2025-08-26T21:24:38.4976305Z inductor/test_fp8 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_fp8_1.1_145bd8b92c16b15c_.log 2025-08-26T21:24:38.4976926Z 2025-08-26T21:24:40.7030248Z 2025-08-26T21:24:40.7031529Z inductor/test_coordinate_descent_tuner 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_coordinate_descent_tuner_1.1_6b570ad165dd08ec_.log 2025-08-26T21:24:40.7032492Z 2025-08-26T21:24:44.1037841Z Running inductor/test_triton_wrapper 1/1 ... [2025-08-26 21:24:44.099431] 2025-08-26T21:24:44.1038342Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:24:44.1044625Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_triton_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-26 21:24:44.099431] 2025-08-26T21:24:46.3032232Z Running inductor/test_triton_heuristics 1/1 ... [2025-08-26 21:24:46.300409] 2025-08-26T21:24:46.3032771Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:24:46.3038744Z 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-26 21:24:46.300409] 2025-08-26T21:24:54.6939492Z 2025-08-26T21:24:54.6940714Z inductor/test_triton_wrapper 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_triton_wrapper_1.1_43b18e5c07729473_.log 2025-08-26T21:24:54.6941409Z 2025-08-26T21:24:57.0059578Z 2025-08-26T21:24:57.0060555Z 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_54dea12194a0b971_.log 2025-08-26T21:24:57.0061274Z 2025-08-26T21:24:59.9736090Z Running dynamo/test_sdpa 1/1 ... [2025-08-26 21:24:59.971848] 2025-08-26T21:24:59.9736575Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:24:59.9742459Z 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-26 21:24:59.971848] 2025-08-26T21:25:02.1841026Z Running dynamo/test_utils 1/1 ... [2025-08-26 21:25:02.183837] 2025-08-26T21:25:02.1847786Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:25:02.1848877Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_utils.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:25:02.184501] 2025-08-26T21:25:04.9709391Z 2025-08-26T21:25:04.9710160Z dynamo/test_sdpa 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_sdpa_1.1_205ffb69df09bf48_.log 2025-08-26T21:25:04.9710922Z 2025-08-26T21:25:06.5423597Z 2025-08-26T21:25:06.5424504Z dynamo/test_utils 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_utils_1.1_6e65f610f04a2491_.log 2025-08-26T21:25:06.5425122Z 2025-08-26T21:25:10.2888246Z Running inductor/test_cutlass_evt 1/1 ... [2025-08-26 21:25:10.286629] 2025-08-26T21:25:10.2888751Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:25:10.2894838Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_cutlass_evt.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:25:10.286629] 2025-08-26T21:25:11.9131402Z Running inductor/test_select_algorithm 1/1 ... [2025-08-26 21:25:11.912940] 2025-08-26T21:25:11.9131900Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:25:11.9138427Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_select_algorithm.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:25:11.913020] 2025-08-26T21:25:20.3406586Z 2025-08-26T21:25:20.3407533Z inductor/test_cutlass_evt 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_cutlass_evt_1.1_2868c97967c41495_.log 2025-08-26T21:25:20.3408233Z 2025-08-26T21:25:22.6268007Z 2025-08-26T21:25:22.6269019Z inductor/test_select_algorithm 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_select_algorithm_1.1_42aafa2c5bc09f52_.log 2025-08-26T21:25:22.6269733Z 2025-08-26T21:25:25.5117880Z Running inductor/test_cutedsl_template 1/1 ... [2025-08-26 21:25:25.511529] 2025-08-26T21:25:25.5118348Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:25:25.5124773Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_cutedsl_template.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:25:25.512102] 2025-08-26T21:25:27.6654982Z Running inductor/test_multi_kernel 1/1 ... [2025-08-26 21:25:27.664793] 2025-08-26T21:25:27.6655457Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:25:27.6661818Z 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-26 21:25:27.664793] 2025-08-26T21:25:29.8843084Z 2025-08-26T21:25:29.8844007Z inductor/test_cutedsl_template 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_cutedsl_template_1.1_cbbfb688a41a1a02_.log 2025-08-26T21:25:29.8844736Z 2025-08-26T21:25:35.0983643Z Running export/test_cpp_serdes 1/1 ... [2025-08-26 21:25:35.093681] 2025-08-26T21:25:35.0984093Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:25:35.0990611Z 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-26 21:25:35.093681] 2025-08-26T21:25:37.8404127Z 2025-08-26T21:25:37.8405080Z 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_a27cc28fc2b546b6_.log 2025-08-26T21:25:37.8405751Z 2025-08-26T21:25:43.0164985Z Running dynamo/test_metrics_context 1/1 ... [2025-08-26 21:25:43.016312] 2025-08-26T21:25:43.0165760Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:25:43.0172577Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_metrics_context.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:25:43.016353] 2025-08-26T21:25:45.2317462Z 2025-08-26T21:25:45.2318339Z 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_64f37b323cc46547_.log 2025-08-26T21:25:45.2318988Z 2025-08-26T21:25:47.4265192Z 2025-08-26T21:25:47.4266264Z dynamo/test_metrics_context 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_metrics_context_1.1_5ef8b3030f61389d_.log 2025-08-26T21:25:47.4266931Z 2025-08-26T21:25:50.2946273Z Running dynamo/test_reconstruct 1/1 ... [2025-08-26 21:25:50.294223] 2025-08-26T21:25:50.2946721Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:25:50.2953001Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_reconstruct.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:25:50.294223] 2025-08-26T21:25:52.6111042Z Running inductor/test_profiler 1/1 ... [2025-08-26 21:25:52.610477] 2025-08-26T21:25:52.6111539Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:25:52.6117526Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_profiler.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:25:52.611587] 2025-08-26T21:26:00.5363677Z 2025-08-26T21:26:00.5364544Z dynamo/test_reconstruct 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_reconstruct_1.1_c2a74a4fae9415b3_.log 2025-08-26T21:26:00.5365187Z 2025-08-26T21:26:02.7014464Z 2025-08-26T21:26:02.7015360Z inductor/test_profiler 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_profiler_1.1_ef211ef640a45f22_.log 2025-08-26T21:26:02.7016025Z 2025-08-26T21:26:05.8757258Z Running dynamo/test_modules 1/1 ... [2025-08-26 21:26:05.873384] 2025-08-26T21:26:05.8757741Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:26:05.8763726Z 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-26 21:26:05.873384] 2025-08-26T21:26:07.9159549Z Running dynamo/test_global 1/1 ... [2025-08-26 21:26:07.915325] 2025-08-26T21:26:07.9160033Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:26:07.9166432Z 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-26 21:26:07.915937] 2025-08-26T21:26:12.4244998Z 2025-08-26T21:26:12.4246347Z dynamo/test_global 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_global_1.1_decdc7b26409f026_.log 2025-08-26T21:26:12.4247083Z 2025-08-26T21:26:16.0144299Z 2025-08-26T21:26:16.0145251Z dynamo/test_modules 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_modules_1.1_bef5545ba4fad9d1_.log 2025-08-26T21:26:16.0145897Z 2025-08-26T21:26:17.7027633Z Running inductor/test_aot_inductor_utils 1/1 ... [2025-08-26 21:26:17.695794] 2025-08-26T21:26:17.7028127Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:26:17.7034367Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_aot_inductor_utils.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:26:17.695794] 2025-08-26T21:26:21.2938918Z Running inductor/test_ordered_set 1/1 ... [2025-08-26 21:26:21.286936] 2025-08-26T21:26:21.2939429Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:26:21.2945670Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_ordered_set.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:26:21.286936] 2025-08-26T21:26:25.8527181Z 2025-08-26T21:26:25.8528105Z inductor/test_ordered_set 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_ordered_set_1.1_8b342fad5a103a38_.log 2025-08-26T21:26:25.8528767Z 2025-08-26T21:26:28.0229569Z 2025-08-26T21:26:28.0230467Z inductor/test_aot_inductor_utils 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_aot_inductor_utils_1.1_1a3ba69b0857caa9_.log 2025-08-26T21:26:28.0231308Z Running 0 items in this shard: 2025-08-26T21:26:28.0231721Z 2025-08-26T21:26:31.0903411Z Running inductor/test_custom_lowering 1/1 ... [2025-08-26 21:26:31.081150] 2025-08-26T21:26:31.0903930Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:26:31.0909952Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_custom_lowering.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:26:31.081150] 2025-08-26T21:26:33.0782242Z Running inductor/test_alignment 1/1 ... [2025-08-26 21:26:33.078037] 2025-08-26T21:26:33.0782844Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:26:33.0789535Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_alignment.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:26:33.078776] 2025-08-26T21:26:41.4036886Z 2025-08-26T21:26:41.4037831Z inductor/test_custom_lowering 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_custom_lowering_1.1_3b5302f13f3a9986_.log 2025-08-26T21:26:41.4038517Z 2025-08-26T21:26:43.5758037Z 2025-08-26T21:26:43.5759020Z inductor/test_alignment 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_alignment_1.1_0ec94c496aafcfe2_.log 2025-08-26T21:26:43.5759689Z 2025-08-26T21:26:46.6943574Z Running dynamo/test_install_free_tensors 1/1 ... [2025-08-26 21:26:46.694044] 2025-08-26T21:26:46.6944387Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:26:46.6953793Z 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-26 21:26:46.695154] 2025-08-26T21:26:49.0261527Z Running inductor/test_scatter_optimization 1/1 ... [2025-08-26 21:26:49.025963] 2025-08-26T21:26:49.0262289Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:26:49.0268172Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_scatter_optimization.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:26:49.026624] 2025-08-26T21:26:51.4944931Z 2025-08-26T21:26:51.4945900Z 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_03ac129befbdd880_.log 2025-08-26T21:26:51.4946715Z 2025-08-26T21:26:56.6190384Z Running inductor/test_torchinductor_codegen_config_overrides 1/1 ... [2025-08-26 21:26:56.618830] 2025-08-26T21:26:56.6191157Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:26:56.6199072Z 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-26 21:26:56.619426] 2025-08-26T21:26:59.3848202Z 2025-08-26T21:26:59.3849185Z inductor/test_scatter_optimization 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_scatter_optimization_1.1_0961a14ddb752af6_.log 2025-08-26T21:26:59.3849970Z 2025-08-26T21:27:00.2054477Z 2025-08-26T21:27:00.2055419Z functorch/test_aotdispatch 6/7 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_aotdispatch_6.7_556b134a3c0f1b42_.log 2025-08-26T21:27:00.2214220Z Running 329 items in this shard: test/functorch/test_aotdispatch.py::TestAOTAutograd::test_alias_of_intermediate_detach_backend_inductor_view_replay_for_aliased_outputs_True_dynamic_shapes_False, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_autocast_disable_guard, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_batchnorm, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_compilation_context, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_complex_linear, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_custom_autograd, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_custom_tensor_metadata, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_inplace_requires_grad_true, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_mutation_modifies_autograd_meta_of_aliases, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_mutation_multiple, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_mutation_noncontiguous, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_mutation_return, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_mutation_set__nop, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_mutation_storage_resize_before_set_, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_mutation_storage_resize_down_and_set_, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_multi_output_list, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_nested_subclasses_non_homogenous, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_output_aliases_input_view_meta_replay, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_output_aliases_intermediate_multiple, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_output_aliases_intermediate_returned_multiple_times, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_output_op_depending_on_symint, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_outputs_are_aliased, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_real_weights_in_symbolic_mode_with_inplace_ops, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_single_output, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_squeeze_mutation, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_view_detach, test/functorch/test_aotdispatch.py::TestAOTExport::test_aot_export_simplified_basic, test/functorch/test_aotdispatch.py::TestPartitioning::test_contiguous, test/functorch/test_aotdispatch.py::TestAOTDispatch::test_aot_dispatch_input_mutation, test/functorch/test_aotdispatch.py::TestAOTDispatch::test_aot_dispatch_simple, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_noncontig_nonmemformat_tangents_dynamic_shapes_True_test_subclasses_False_device_cpu, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_noncontig_nonmemformat_tangents_dynamic_shapes_True_test_subclasses_False_device_cuda, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_saved_tensors_hooks_base_saved_tensors_hooks_filtering_mode_no_static, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_tangent_type_coercion, test/functorch/test_aotdispatch.py::TestPythonKeyCPU::test_nnc_scalar_cpu, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive__batch_norm_with_update_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive__segment_reduce_lengths_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive__segment_reduce_offsets_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive__unsafe_masked_index_put_accumulate_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive__upsample_bilinear2d_aa_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_acosh_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_addbmm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_addcdiv_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_addmm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_addmm_decomposed_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_argwhere_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_as_strided_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_as_strided_partial_views_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_as_strided_scatter_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_atanh_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_baddbmm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_bernoulli_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_broadcast_shapes_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_chalf_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_conj_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_constant_pad_nd_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_contiguous_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_digamma_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_div_floor_rounding_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_dsplit_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_eq_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_exp_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_eye_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_floor_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_ge_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_hash_tensor_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_index_copy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_index_fill_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_index_reduce_mean_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_int_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_invoke_quant_packed_simple_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_isfinite_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_isinf_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_jiterator_unary_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_le_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_lgamma_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_cholesky_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_lstsq_grad_oriented_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_lu_factor_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_matrix_rank_hermitian_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_pinv_hermitian_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_solve_triangular_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_tensorsolve_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_vecdot_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linspace_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_log_normal_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_logdet_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_logical_not_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_lt_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_lu_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_masked_amax_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_masked_scatter_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_masked_std_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_max_pool2d_with_indices_backward_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_median_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_meshgrid_list_of_tensors_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_meshgrid_variadic_tensors_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_mm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_native_dropout_backward_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_gaussian_nll_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_grid_sample_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_hardsigmoid_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_hardswish_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_interpolate_trilinear_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_layer_norm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_max_pool1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_multi_head_attention_forward_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_pad_circular_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_pad_replicate_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_prelu_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_smooth_l1_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_softshrink_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_ones_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_polygamma_polygamma_n_4_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_rad2deg_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_reciprocal_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_remainder_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_renorm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_repeat_interleave_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_resolve_neg_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_round_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_signbit_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_sinh_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_airy_ai_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_bessel_j1_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_bessel_y1_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_split_list_args_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_squeeze_multiple_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_std_mean_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_svd_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_svd_lowrank_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_take_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_tanh_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_tensordot_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_true_divide_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_unique_consecutive_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_unique_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_var_mean_unbiased_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_view_as_complex_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_vstack_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive___getitem___cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive__batch_norm_with_update_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive__chunk_cat_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive__segment_reduce_offsets_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive__unsafe_masked_index_put_accumulate_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_argmin_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_as_strided_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_as_strided_scatter_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_atanh_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_atleast_2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_atleast_3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_broadcast_to_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_cat_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_clamp_min_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_contiguous_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_cov_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_cummax_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_diagonal_scatter_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_expand_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_fft_ihfft2_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_flex_attention_simple_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_floor_divide_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_grid_sampler_2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_hstack_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_hypot_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_index_add_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_index_reduce_amin_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_index_reduce_prod_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_invoke_subgraph_simple_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_jiterator_binary_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_lerp_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_cond_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_matrix_power_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_matrix_rank_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_solve_ex_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_tensorsolve_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_vander_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_vecdot_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_vector_norm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_logical_or_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_logspace_tensor_overload_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_long_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_lu_solve_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_map_triple_nested_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_masked_softmin_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_mvlgamma_mvlgamma_p_1_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_mvlgamma_mvlgamma_p_3_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nansum_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_native_batch_norm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_adaptive_avg_pool3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_adaptive_max_pool3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_conv2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_conv3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_cosine_embedding_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_cross_entropy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_embedding_bag_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_group_norm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_layer_norm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_max_pool2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_max_unpool3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_multi_head_attention_forward_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_relu_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_rrelu_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_softshrink_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_softsign_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_pca_lowrank_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_positive_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_reciprocal_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_round_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_round_decimals_0_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_round_decimals_3_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_scatter_reduce_amin_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_scatter_reduce_sum_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_short_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_signal_windows_bartlett_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_signal_windows_cosine_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_softmax_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_softmax_with_dtype_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_sparse_sampled_addmm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_airy_ai_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_i0e_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_shifted_chebyshev_polynomial_v_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_shifted_chebyshev_polynomial_w_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_sqrt_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_square_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_std_unbiased_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_sum_to_size_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_tan_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_tril_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_unsafe_chunk_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_unsafe_split_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_zeros_like_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_AdaptiveAvgPool1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_AdaptiveMaxPool3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_BatchNorm2d_train_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_ConvTranspose2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_ELU_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_FractionalMaxPool3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_GRU_eval_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_GaussianNLLLoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_Hardshrink_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_Hardswish_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_InstanceNorm1d_eval_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_InstanceNorm1d_train_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_InstanceNorm2d_eval_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_InstanceNorm3d_train_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_KLDivLoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_LazyConv2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_LazyConvTranspose2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_RMSNorm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_ReplicationPad1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_SiLU_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_Softmin_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_TransformerDecoderLayer_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_TransformerEncoder_train_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_AvgPool1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_BCELoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_BatchNorm1d_eval_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_CircularPad1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_GRUCell_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_GaussianNLLLoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_InstanceNorm1d_eval_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_InstanceNorm2d_train_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_LSTMCell_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_LayerNorm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_LeakyReLU_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_MultiLabelSoftMarginLoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_MultiMarginLoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_PoissonNLLLoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_ReflectionPad3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_Sigmoid_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_SoftMarginLoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_Softmax2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_Softsign_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_Transformer_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_ZeroPad1d_cpu_float32, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_alias_of_intermediate_detach_backend_aot_eager_view_replay_for_aliased_outputs_True_dynamic_shapes_False, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_buffer_copied_in_graph, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_complex_linear, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_custom_tensor_metadata, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_dupe_arg_returned_as_output, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_dupe_arg_torture, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_embedding_bag_view_dynamic, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_inference_mode, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_mutation_aliases_other_input, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_mutation_and_output_view, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_mutation_requires_grad_detach, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_mutation_return, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_mutation_storage_resize_before_set_, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_mutation_storage_resize_up, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_output_view_mutate_multiple, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_invalid_dupe_fake, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_invalid_requires_grad, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_mark_activations_dynamic, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_output_aliases_input_view_meta_replay, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_output_aliases_intermediate_and_returned, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_output_aliases_intermediate_mutation_linear, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_output_aliases_multiple_inputs_get_correct_one, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_set__and_data_mutation_bad, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_some_outputs_dont_require_grad_view, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_autocast_disable_guard, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_backward_mutation_forward_inputs, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_backward_pass_autocast_on, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_buffer_batch_norm, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_compilation_context, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_duplicated_arguments_on_tensor_overlap, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_dynamic_output_aliases_input_view_meta_replay, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_dynamic_shape_output_not_in_bw_graph, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_embedding_bag_view_dynamic, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_inner_grad, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_aliased_with_mutation_output_alias, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_mutation_aliases_and_output_alias, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_mutation_batchnorm, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_mutation_is_output, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_mutation_metadata2, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_mutation_multiple, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_mutation_simple_with_none_and_nontensor, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_invalid_requires_grad_fake, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_mark_activations_dynamic_with_nested, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_module, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_multi_output, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_nested_subclasses_complicated_inps_mixed, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_new_inp_requires_grad_now, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_no_grad_input_output, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_output_aliases_intermediate_inplace_view, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_output_aliases_intermediate_multiple_mixed, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_output_all_alias_types 2025-08-26T21:27:00.2366719Z 2025-08-26T21:27:04.5647624Z Running dynamo/test_sources 1/1 ... [2025-08-26 21:27:04.564326] 2025-08-26T21:27:04.5649369Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:27:04.5666630Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_sources.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:27:04.566113] 2025-08-26T21:27:05.3349670Z Running inductor/test_needs_exact_strides 1/1 ... [2025-08-26 21:27:05.332431] 2025-08-26T21:27:05.3350190Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:27:05.3356388Z 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-26 21:27:05.332431] 2025-08-26T21:27:06.7316540Z 2025-08-26T21:27:06.7317796Z 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_8d5e85762d1d68f8_.log 2025-08-26T21:27:06.7318675Z 2025-08-26T21:27:08.9251934Z 2025-08-26T21:27:08.9253140Z dynamo/test_sources 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_sources_1.1_1fac7795d8415fe0_.log 2025-08-26T21:27:08.9253768Z 2025-08-26T21:27:11.7589907Z Running dynamo/test_base_hop 1/1 ... [2025-08-26 21:27:11.758622] 2025-08-26T21:27:11.7590366Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:27:11.7596335Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_base_hop.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:27:11.758622] 2025-08-26T21:27:14.0406975Z Running dynamo/test_backward_higher_order_ops 1/1 ... [2025-08-26 21:27:14.031068] 2025-08-26T21:27:14.0407540Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:27:14.0416205Z 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-26 21:27:14.041290] 2025-08-26T21:27:15.2839458Z 2025-08-26T21:27:15.2840596Z 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_14087b5f9780a352_.log 2025-08-26T21:27:15.2841343Z 2025-08-26T21:27:16.3916022Z 2025-08-26T21:27:16.3917197Z dynamo/test_base_hop 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_base_hop_1.1_a878f1d73389090b_.log 2025-08-26T21:27:16.3917876Z 2025-08-26T21:27:18.6606494Z 2025-08-26T21:27:18.6607761Z 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_b9d71a2b6f41290c_.log 2025-08-26T21:27:18.6608564Z 2025-08-26T21:27:20.5868179Z Running dynamo/test_debug_utils 1/1 ... [2025-08-26 21:27:20.586629] 2025-08-26T21:27:20.5868761Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:27:20.5875912Z 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-26 21:27:20.587404] 2025-08-26T21:27:21.8372147Z Running dynamo/test_verify_correctness 1/1 ... [2025-08-26 21:27:21.836901] 2025-08-26T21:27:21.8372663Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:27:21.8379459Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_verify_correctness.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:27:21.837488] 2025-08-26T21:27:23.8993554Z Running dynamo/test_python_dispatcher 1/1 ... [2025-08-26 21:27:23.895468] 2025-08-26T21:27:23.8994090Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:27:23.9000478Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_python_dispatcher.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:27:23.895468] 2025-08-26T21:27:25.5645935Z 2025-08-26T21:27:25.5646991Z 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_506997cb541dcb3d_.log 2025-08-26T21:27:25.5647642Z 2025-08-26T21:27:26.4251645Z 2025-08-26T21:27:26.4252927Z dynamo/test_verify_correctness 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_verify_correctness_1.1_4eb615bc5003a306_.log 2025-08-26T21:27:26.4253647Z 2025-08-26T21:27:28.9710422Z 2025-08-26T21:27:28.9711427Z dynamo/test_python_dispatcher 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_python_dispatcher_1.1_01c85f30e07a4b69_.log 2025-08-26T21:27:28.9712128Z 2025-08-26T21:27:30.7641574Z Running inductor/test_efficient_conv_bn_eval 1/1 ... [2025-08-26 21:27:30.761848] 2025-08-26T21:27:30.7642115Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:27:30.7648339Z 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-26 21:27:30.761848] 2025-08-26T21:27:31.5383565Z Running dynamo/test_aot_autograd 1/1 ... [2025-08-26 21:27:31.536084] 2025-08-26T21:27:31.5384058Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:27:31.5390579Z 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-26 21:27:31.536084] 2025-08-26T21:27:34.2328604Z Running dynamo/test_unspec 1/1 ... [2025-08-26 21:27:34.230633] 2025-08-26T21:27:34.2329078Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:27:34.2335800Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_unspec.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:27:34.230633] 2025-08-26T21:27:36.1463296Z 2025-08-26T21:27:36.1464230Z 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_d6da6164486a9887_.log 2025-08-26T21:27:36.1464905Z 2025-08-26T21:27:39.3417898Z 2025-08-26T21:27:39.3418661Z dynamo/test_unspec 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_unspec_1.1_1f1aad6d0851ea2a_.log 2025-08-26T21:27:39.3419261Z 2025-08-26T21:27:40.9231307Z 2025-08-26T21:27:40.9232226Z 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_b9f65e15f81e920c_.log 2025-08-26T21:27:40.9232948Z 2025-08-26T21:27:41.2671856Z Running dynamo/test_cudagraphs_expandable_segments 1/1 ... [2025-08-26 21:27:41.266511] 2025-08-26T21:27:41.2672390Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:27:41.2679577Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_cudagraphs_expandable_segments.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:27:41.267699] 2025-08-26T21:27:44.5113512Z Running dynamo/test_input_attr_tracking 1/1 ... [2025-08-26 21:27:44.504623] 2025-08-26T21:27:44.5113974Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:27:44.5120148Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_input_attr_tracking.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:27:44.504623] 2025-08-26T21:27:46.0698126Z Running dynamo/test_einops 1/1 ... [2025-08-26 21:27:46.065886] 2025-08-26T21:27:46.0698562Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:27:46.0704686Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_einops.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:27:46.065886] 2025-08-26T21:27:46.2598152Z 2025-08-26T21:27:46.2599495Z dynamo/test_cudagraphs_expandable_segments 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_cudagraphs_expandable_segments_1.1_9c1838f1ab94ad10_.log 2025-08-26T21:27:46.2600474Z 2025-08-26T21:27:49.2321151Z 2025-08-26T21:27:49.2322194Z dynamo/test_input_attr_tracking 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_input_attr_tracking_1.1_72be623d080be04a_.log 2025-08-26T21:27:49.2322898Z 2025-08-26T21:27:50.4765716Z 2025-08-26T21:27:50.4766559Z dynamo/test_einops 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_einops_1.1_3c0c14320815a61b_.log 2025-08-26T21:27:50.4767427Z 2025-08-26T21:27:51.4719684Z Running dynamo/test_guard_manager 1/1 ... [2025-08-26 21:27:51.471532] 2025-08-26T21:27:51.4720167Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:27:51.4726495Z 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-26 21:27:51.472106] 2025-08-26T21:27:54.3610977Z Running dynamo/test_activation_checkpointing 1/1 ... [2025-08-26 21:27:54.360716] 2025-08-26T21:27:54.3611492Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:27:54.3617628Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_activation_checkpointing.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:27:54.360716] 2025-08-26T21:27:55.6448659Z Running dynamo/test_precompile_context 1/1 ... [2025-08-26 21:27:55.642672] 2025-08-26T21:27:55.6449175Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:27:55.6455610Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_precompile_context.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:27:55.642672] 2025-08-26T21:27:55.7572206Z 2025-08-26T21:27:55.7573045Z 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_b9360379e0b7b552_.log 2025-08-26T21:27:55.7573692Z 2025-08-26T21:28:01.1133600Z Running dynamo/test_reorder_logs 1/1 ... [2025-08-26 21:28:01.112823] 2025-08-26T21:28:01.1134063Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:28:01.1140811Z 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-26 21:28:01.113423] 2025-08-26T21:28:04.6121223Z 2025-08-26T21:28:04.6122205Z dynamo/test_activation_checkpointing 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_activation_checkpointing_1.1_eb2b3d71dfc491d5_.log 2025-08-26T21:28:04.6122951Z 2025-08-26T21:28:05.7172204Z 2025-08-26T21:28:05.7173558Z 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_35f033a6f00352aa_.log 2025-08-26T21:28:05.7174696Z 2025-08-26T21:28:06.7742311Z 2025-08-26T21:28:06.7743232Z dynamo/test_precompile_context 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_precompile_context_1.1_edfdfca4d84f3485_.log 2025-08-26T21:28:06.7744054Z 2025-08-26T21:28:09.7614561Z Running export/test_sparse 2/2 ... [2025-08-26 21:28:09.759740] 2025-08-26T21:28:09.7615024Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:28:09.7621108Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_sparse.py', '-m', 'not serial', '--shard-id=2', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:28:09.759740] 2025-08-26T21:28:10.8339977Z Running test_autograd 1/1 ... [2025-08-26 21:28:10.822332] 2025-08-26T21:28:10.8340399Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:28:10.8346771Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_autograd.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:28:10.822332] 2025-08-26T21:28:12.0932154Z Running test_ao_sparsity 1/1 ... [2025-08-26 21:28:12.093039] 2025-08-26T21:28:12.0932593Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:28:12.0939229Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ao_sparsity.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:28:12.093648] 2025-08-26T21:28:24.2770926Z 2025-08-26T21:28:24.2771771Z test_ao_sparsity 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_ao_sparsity_1.1_2652abfaf0bc0a32_.log 2025-08-26T21:28:24.2800592Z Running 88 items in this shard: test/test_ao_sparsity.py::TestQuantizedSparseKernels::test_sparse_qlinear, test/test_ao_sparsity.py::TestQuantizedSparseLayers::test_sparse_qlinear, test/test_ao_sparsity.py::TestQuantizedSparseLayers::test_sparse_qlinear_serdes, test/test_ao_sparsity.py::TestFakeSparsity::test_jit_trace, test/test_ao_sparsity.py::TestFakeSparsity::test_masking_logic, test/test_ao_sparsity.py::TestFakeSparsity::test_state_dict_preserved, test/test_ao_sparsity.py::TestFakeSparsity::test_weights_parametrized, test/test_ao_sparsity.py::TestCubicScheduler::test_constructor, test/test_ao_sparsity.py::TestCubicScheduler::test_step, test/test_ao_sparsity.py::TestScheduler::test_constructor, test/test_ao_sparsity.py::TestScheduler::test_lambda_scheduler, test/test_ao_sparsity.py::TestScheduler::test_order_of_steps, test/test_ao_sparsity.py::TestScheduler::test_step, test/test_ao_sparsity.py::TestBaseSparsifier::test_constructor, test/test_ao_sparsity.py::TestBaseSparsifier::test_convert, test/test_ao_sparsity.py::TestBaseSparsifier::test_mask_squash, test/test_ao_sparsity.py::TestBaseSparsifier::test_mask_squash_with_params1, test/test_ao_sparsity.py::TestBaseSparsifier::test_mask_squash_with_params2, test/test_ao_sparsity.py::TestBaseSparsifier::test_mask_squash_with_params3, test/test_ao_sparsity.py::TestBaseSparsifier::test_prepare_config, test/test_ao_sparsity.py::TestBaseSparsifier::test_state_dict, test/test_ao_sparsity.py::TestBaseSparsifier::test_step, test/test_ao_sparsity.py::TestNearlyDiagonalSparsifier::test_constructor, test/test_ao_sparsity.py::TestNearlyDiagonalSparsifier::test_mask_squash, test/test_ao_sparsity.py::TestNearlyDiagonalSparsifier::test_prepare, test/test_ao_sparsity.py::TestNearlyDiagonalSparsifier::test_sparsity_levels, test/test_ao_sparsity.py::TestNearlyDiagonalSparsifier::test_step, test/test_ao_sparsity.py::TestWeightNormSparsifier::test_constructor, test/test_ao_sparsity.py::TestWeightNormSparsifier::test_mask_squash, test/test_ao_sparsity.py::TestWeightNormSparsifier::test_prepare, test/test_ao_sparsity.py::TestWeightNormSparsifier::test_sparsity_levels, test/test_ao_sparsity.py::TestWeightNormSparsifier::test_step, test/test_ao_sparsity.py::TestWeightNormSparsifier::test_step_2_of_4, test/test_ao_sparsity.py::TestBaseStructuredSparsifier::test_complex_conv2d, test/test_ao_sparsity.py::TestBaseStructuredSparsifier::test_constructor, test/test_ao_sparsity.py::TestBaseStructuredSparsifier::test_prepare_conv2d, test/test_ao_sparsity.py::TestBaseStructuredSparsifier::test_prepare_linear, test/test_ao_sparsity.py::TestBaseStructuredSparsifier::test_prune_conv2d_activation_conv2d, test/test_ao_sparsity.py::TestBaseStructuredSparsifier::test_prune_conv2d_bias_conv2d, test/test_ao_sparsity.py::TestBaseStructuredSparsifier::test_prune_conv2d_conv2d, test/test_ao_sparsity.py::TestBaseStructuredSparsifier::test_prune_conv2d_padding_conv2d, test/test_ao_sparsity.py::TestBaseStructuredSparsifier::test_prune_conv2d_pool_conv2d, test/test_ao_sparsity.py::TestBaseStructuredSparsifier::test_prune_linear_activation_linear, test/test_ao_sparsity.py::TestBaseStructuredSparsifier::test_prune_linear_bias_linear, test/test_ao_sparsity.py::TestBaseStructuredSparsifier::test_prune_linear_linear, test/test_ao_sparsity.py::TestBaseStructuredSparsifier::test_prune_lstm_layernorm_linear_multiple_layer, test/test_ao_sparsity.py::TestBaseStructuredSparsifier::test_prune_lstm_layernorm_linear_single_layer, test/test_ao_sparsity.py::TestBaseStructuredSparsifier::test_prune_lstm_linear_multiple_layer, test/test_ao_sparsity.py::TestBaseStructuredSparsifier::test_prune_lstm_linear_single_layer, test/test_ao_sparsity.py::TestBaseStructuredSparsifier::test_step_conv2d, test/test_ao_sparsity.py::TestBaseStructuredSparsifier::test_step_linear, test/test_ao_sparsity.py::TestFPGMPruner::test_compute_distance, test/test_ao_sparsity.py::TestFPGMPruner::test_update_mask, test/test_ao_sparsity.py::TestSaliencyPruner::test_lstm_saliency_pruner_update_mask, test/test_ao_sparsity.py::TestSaliencyPruner::test_saliency_pruner_update_mask, test/test_ao_sparsity.py::TestComposability::test_convert_without_squash_mask, test/test_ao_sparsity.py::TestComposability::test_fusion_before_s_prep, test/test_ao_sparsity.py::TestComposability::test_q_prep_before_s_prep, test/test_ao_sparsity.py::TestComposability::test_qat_prep_before_s_prep, test/test_ao_sparsity.py::TestComposability::test_s_prep_before_fusion, test/test_ao_sparsity.py::TestComposability::test_s_prep_before_q_prep, test/test_ao_sparsity.py::TestComposability::test_s_prep_before_qat_prep, test/test_ao_sparsity.py::TestFxComposability::test_q_prep_fx_before_s_prep, test/test_ao_sparsity.py::TestFxComposability::test_q_prep_fx_s_prep_ref_conv, test/test_ao_sparsity.py::TestFxComposability::test_s_prep_before_q_prep_fx, test/test_ao_sparsity.py::TestFxComposability::test_s_prep_before_qat_prep_fx, test/test_ao_sparsity.py::TestFxComposability::test_s_prep_q_prep_fx_ref, test/test_ao_sparsity.py::TestActivationSparsifier::test_activation_sparsifier, test/test_ao_sparsity.py::TestBaseDataScheduler::test_constructor, test/test_ao_sparsity.py::TestBaseDataScheduler::test_order_of_steps, test/test_ao_sparsity.py::TestBaseDataScheduler::test_state_dict, test/test_ao_sparsity.py::TestBaseDataScheduler::test_step, test/test_ao_sparsity.py::TestBaseDataSparsifier::test_nn_embeddings, test/test_ao_sparsity.py::TestBaseDataSparsifier::test_nn_parameters, test/test_ao_sparsity.py::TestBaseDataSparsifier::test_tensors, test/test_ao_sparsity.py::TestNormDataSparsifiers::test_nn_embeddings, test/test_ao_sparsity.py::TestNormDataSparsifiers::test_nn_parameters, test/test_ao_sparsity.py::TestNormDataSparsifiers::test_tensors, test/test_ao_sparsity.py::TestQuantizationUtils::test_ptq_quantize_first, test/test_ao_sparsity.py::TestQuantizationUtils::test_ptq_sparsify_first, test/test_ao_sparsity.py::TestSparsityUtilFunctions::test_fqn_to_module, test/test_ao_sparsity.py::TestSparsityUtilFunctions::test_fqn_to_module_fail, test/test_ao_sparsity.py::TestSparsityUtilFunctions::test_fqn_to_module_for_tensors, test/test_ao_sparsity.py::TestSparsityUtilFunctions::test_get_arg_info_from_tensor_fqn, test/test_ao_sparsity.py::TestSparsityUtilFunctions::test_get_arg_info_from_tensor_fqn_fail, test/test_ao_sparsity.py::TestSparsityUtilFunctions::test_module_to_fqn, test/test_ao_sparsity.py::TestSparsityUtilFunctions::test_module_to_fqn_fail, test/test_ao_sparsity.py::TestSparsityUtilFunctions::test_module_to_fqn_root 2025-08-26T21:28:24.2826087Z 2025-08-26T21:28:29.8439524Z Running functorch/test_rearrange 1/1 ... [2025-08-26 21:28:29.839499] 2025-08-26T21:28:29.8439974Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:28:29.8446022Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_rearrange.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:28:29.839499] 2025-08-26T21:28:35.4867507Z 2025-08-26T21:28:35.4868511Z functorch/test_rearrange 1/1 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_rearrange_1.1_c365fc7f3125e829_.log 2025-08-26T21:28:35.4872143Z Running 10 items in this shard: test/functorch/test_rearrange.py::TestRearrange::test_0_dim_tensor, test/functorch/test_rearrange.py::TestRearrange::test_collapsed_ellipsis_errors_out, test/functorch/test_rearrange.py::TestRearrange::test_concatenations_and_stacking, test/functorch/test_rearrange.py::TestRearrange::test_dimension_mismatch_no_ellipsis, test/functorch/test_rearrange.py::TestRearrange::test_dimension_mismatch_with_ellipsis, test/functorch/test_rearrange.py::TestRearrange::test_ellipsis_ops, test/functorch/test_rearrange.py::TestRearrange::test_rearrange_consistency, test/functorch/test_rearrange.py::TestRearrange::test_rearrange_permutations, test/functorch/test_rearrange.py::TestRearrange::test_squeeze, test/functorch/test_rearrange.py::TestRearrange::test_unsqueeze 2025-08-26T21:28:35.4875285Z 2025-08-26T21:28:41.1843973Z Running functorch/test_parsing 1/1 ... [2025-08-26 21:28:41.178373] 2025-08-26T21:28:41.1844428Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:28:41.1850474Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_parsing.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:28:41.178373] 2025-08-26T21:28:46.2206691Z 2025-08-26T21:28:46.2207664Z functorch/test_parsing 1/1 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_parsing_1.1_56eeebb8372b48a0_.log 2025-08-26T21:28:46.2214238Z Running 12 items in this shard: test/functorch/test_parsing.py::TestAnonymousAxis::test_anonymous_axes, test/functorch/test_parsing.py::TestParsedExpression::test_elementary_axis_name, test/functorch/test_parsing.py::TestParsedExpression::test_invalid_expressions, test/functorch/test_parsing.py::TestParsedExpression::test_parse_expression, test/functorch/test_parsing.py::TestParsingUtils::test_ellipsis_invalid_identifier, test/functorch/test_parsing.py::TestParsingUtils::test_ellipsis_matching, test/functorch/test_parsing.py::TestParsingUtils::test_left_parenthesized_ellipsis, test/functorch/test_parsing.py::TestParsingUtils::test_parse_pattern_number_of_arrows, test/functorch/test_parsing.py::TestValidateRearrangeExpressions::test_identifier_mismatch, test/functorch/test_parsing.py::TestValidateRearrangeExpressions::test_non_unitary_anonymous_axes_raises_error, test/functorch/test_parsing.py::TestValidateRearrangeExpressions::test_unexpected_axes_lengths, test/functorch/test_parsing.py::TestValidateRearrangeExpressions::test_validate_axes_lengths_are_integers 2025-08-26T21:28:46.2218763Z 2025-08-26T21:28:51.3996969Z Running test_package 1/1 ... [2025-08-26 21:28:51.399481] 2025-08-26T21:28:51.3997711Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:28:51.4006989Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', '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-26 21:28:51.400069] 2025-08-26T21:28:57.5134593Z 2025-08-26T21:28:57.5135437Z test_package 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_package_1.1_e8a446d6dede18ff_.log 2025-08-26T21:28:57.5174066Z Running 137 items in this shard: test/test_package.py::TestAnalyze::test_trace_dependencies, test/test_package.py::TestDependencyAPI::test_allow_empty_with_error, test/test_package.py::TestDependencyAPI::test_broken_dependency, test/test_package.py::TestDependencyAPI::test_deny, test/test_package.py::TestDependencyAPI::test_deny_glob, test/test_package.py::TestDependencyAPI::test_extern, test/test_package.py::TestDependencyAPI::test_extern_glob, test/test_package.py::TestDependencyAPI::test_extern_glob_allow_empty, test/test_package.py::TestDependencyAPI::test_externing_c_extension, test/test_package.py::TestDependencyAPI::test_implicit_intern, test/test_package.py::TestDependencyAPI::test_intern_error, test/test_package.py::TestDependencyAPI::test_invalid_import, test/test_package.py::TestDependencyAPI::test_mock, test/test_package.py::TestDependencyAPI::test_mock_glob, test/test_package.py::TestDependencyAPI::test_mock_glob_allow_empty, test/test_package.py::TestDependencyAPI::test_pickle_mocked, test/test_package.py::TestDependencyAPI::test_pickle_mocked_all, test/test_package.py::TestDependencyAPI::test_repackage_mocked_module, test/test_package.py::TestDependencyHooks::test_extern_and_mock_hook, test/test_package.py::TestDependencyHooks::test_multiple_extern_hooks, test/test_package.py::TestDependencyHooks::test_multiple_mock_hooks, test/test_package.py::TestDependencyHooks::test_remove_hooks, test/test_package.py::TestDependencyHooks::test_single_hook, test/test_package.py::TestDiGraph::test_all_paths, test/test_package.py::TestDiGraph::test_contains, test/test_package.py::TestDiGraph::test_contains_non_hashable, test/test_package.py::TestDiGraph::test_edges, test/test_package.py::TestDiGraph::test_forward_closure, test/test_package.py::TestDiGraph::test_iter, test/test_package.py::TestDiGraph::test_node_attr_update, test/test_package.py::TestDiGraph::test_node_attrs, test/test_package.py::TestDiGraph::test_predecessor_not_in_graph, test/test_package.py::TestDiGraph::test_predecessors, test/test_package.py::TestDiGraph::test_successor_not_in_graph, test/test_package.py::TestDiGraph::test_successors, test/test_package.py::DirectoryReaderTest::test_importer_access, test/test_package.py::DirectoryReaderTest::test_loading_has_record, test/test_package.py::DirectoryReaderTest::test_loading_module, test/test_package.py::DirectoryReaderTest::test_loading_pickle, test/test_package.py::DirectoryReaderTest::test_package_resource_access, test/test_package.py::DirectoryReaderTest::test_resource_access_by_path, test/test_package.py::DirectoryReaderTest::test_resource_reader, test/test_package.py::DirectoryReaderTest::test_scriptobject_failure_message, test/test_package.py::TestGlobGroup::test_exclude, test/test_package.py::TestGlobGroup::test_exclude_from_all, test/test_package.py::TestGlobGroup::test_invalid_raw, test/test_package.py::TestGlobGroup::test_list_include_exclude, test/test_package.py::TestGlobGroup::test_one_star, test/test_package.py::TestGlobGroup::test_one_star_middle, test/test_package.py::TestGlobGroup::test_one_star_multiple_in_component, test/test_package.py::TestGlobGroup::test_one_star_partial, test/test_package.py::TestGlobGroup::test_one_star_partial_extension, test/test_package.py::TestGlobGroup::test_raw_two_star, test/test_package.py::TestGlobGroup::test_two_star, test/test_package.py::TestGlobGroup::test_two_star_end, test/test_package.py::TestGlobGroup::test_two_star_middle, test/test_package.py::TestGlobGroup::test_two_star_multiple, test/test_package.py::TestImporter::test_ordered_importer_basic, test/test_package.py::TestImporter::test_ordered_importer_whichmodule, test/test_package.py::TestImporter::test_package_importer_whichmodule_no_dunder_module, test/test_package.py::TestImporter::test_single_ordered_importer, test/test_package.py::TestImporter::test_sys_importer, test/test_package.py::TestImporter::test_sys_importer_roundtrip, test/test_package.py::TestLoadBCPackages::test_load_bc_packages_fx_module, test/test_package.py::TestLoadBCPackages::test_load_bc_packages_nn_module, test/test_package.py::TestLoadBCPackages::test_load_bc_packages_torchscript_module, test/test_package.py::TestMangling::test_demangle_base, test/test_package.py::TestMangling::test_demangler_multiple_manglers, test/test_package.py::TestMangling::test_is_mangled, test/test_package.py::TestMangling::test_mangle_empty_errors, test/test_package.py::TestMangling::test_mangle_prefix, test/test_package.py::TestMangling::test_mangler_is_consistent, test/test_package.py::TestMangling::test_package_mangler, test/test_package.py::TestMangling::test_roundtrip_mangling, test/test_package.py::TestMangling::test_unique_manglers, test/test_package.py::TestMangling::test_unique_module_names, test/test_package.py::TestMisc::test_dunder_package_present, test/test_package.py::TestMisc::test_dunder_package_works_from_package, test/test_package.py::TestMisc::test_exporter_content_lists, test/test_package.py::TestMisc::test_file_structure, test/test_package.py::TestMisc::test_file_structure_has_file, test/test_package.py::TestMisc::test_inspect_class, test/test_package.py::TestMisc::test_is_from_package, test/test_package.py::TestMisc::test_load_python_version_from_package, test/test_package.py::TestMisc::test_loaders_that_remap_files_work_ok, test/test_package.py::TestMisc::test_python_version, test/test_package.py::TestMisc::test_std_lib_sys_hackery_checks, test/test_package.py::ModelTest::test_model_save, test/test_package.py::ModelTest::test_resnet, test/test_package.py::ModelTest::test_script_resnet, test/test_package.py::TestPackageFX::test_package_fx_custom_tracer, test/test_package.py::TestPackageFX::test_package_fx_package, test/test_package.py::TestPackageFX::test_package_fx_simple, test/test_package.py::TestPackageFX::test_package_fx_with_imports, test/test_package.py::TestPackageFX::test_package_fx_wrap, test/test_package.py::TestPackageFX::test_package_gm_preserve_stack_trace, test/test_package.py::TestPackageFX::test_package_then_fx, test/test_package.py::TestPackageScript::test_different_package_interface, test/test_package.py::TestPackageScript::test_different_package_script_class, test/test_package.py::TestPackageScript::test_load_shared_scriptmodules, test/test_package.py::TestPackageScript::test_load_shared_tensors, test/test_package.py::TestPackageScript::test_load_shared_tensors_repackaged, test/test_package.py::TestPackageScript::test_mixing_packaged_and_inline_modules, test/test_package.py::TestPackageScript::test_mixing_packaged_and_inline_modules_shared_code, test/test_package.py::TestPackageScript::test_package_interface, test/test_package.py::TestPackageScript::test_package_script_class, test/test_package.py::TestPackageScript::test_package_script_class_referencing_self, test/test_package.py::TestPackageScript::test_save_eager_mods_sharing_scriptmodule, test/test_package.py::TestPackageScript::test_save_independent_scriptmodules, test/test_package.py::TestPackageScript::test_save_repeat_scriptmodules, test/test_package.py::TestPackageScript::test_save_scriptmodule, test/test_package.py::TestPackageScript::test_save_scriptmodule_file, test/test_package.py::TestPackageScript::test_save_scriptmodule_only_necessary_code, test/test_package.py::TestPackageScript::test_save_scriptmodule_with_submods, test/test_package.py::TestPackageScript::test_save_scriptmodules_in_container, test/test_package.py::TestPackageScript::test_save_scriptmodules_submod_redefinition, test/test_package.py::TestPackageScript::test_save_shared_tensors, test/test_package.py::TestPackageScript::test_saving_and_scripting_packaged_mod, test/test_package.py::TestPackageScript::test_scriptmodules_repeat_save, test/test_package.py::TestPackageScript::test_tensor_sharing_pickle, test/test_package.py::TestRepackage::test_repackage_import_indirectly_via_parent_module, test/test_package.py::TestResources::test_importer_access, test/test_package.py::TestResources::test_package_resource_access, test/test_package.py::TestResources::test_resource_access_by_path, test/test_package.py::TestResources::test_resource_reader, test/test_package.py::TestSaveLoad::test_bad_dunder_imports, test/test_package.py::TestSaveLoad::test_dunder_imports, test/test_package.py::TestSaveLoad::test_exporting_mismatched_code, test/test_package.py::TestSaveLoad::test_pickle, test/test_package.py::TestSaveLoad::test_pickle_long_name_with_protocol_4, test/test_package.py::TestSaveLoad::test_save_imported_module, test/test_package.py::TestSaveLoad::test_save_imported_module_using_package_importer, test/test_package.py::TestSaveLoad::test_save_load_fp8, test/test_package.py::TestSaveLoad::test_save_module, test/test_package.py::TestSaveLoad::test_save_module_binary, test/test_package.py::TestSaveLoad::test_saving_source, test/test_package.py::TestSaveLoad::test_saving_string 2025-08-26T21:28:57.5205751Z 2025-08-26T21:29:02.5930178Z Running profiler/test_kineto 1/1 ... [2025-08-26 21:29:02.592553] 2025-08-26T21:29:02.5930797Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:29:02.5937081Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'profiler/test_kineto.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:29:02.593156] 2025-08-26T21:29:09.1581508Z 2025-08-26T21:29:09.1582387Z test_autograd 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_autograd_1.1_a6877e476accf53d_.log 2025-08-26T21:29:09.1789106Z Running 649 items in this shard: test/test_autograd.py::TestAutograd::test_access_saved_tensor_twice_without_recomputation_works, test/test_autograd.py::TestAutograd::test_accumulate_grad, test/test_autograd.py::TestAutograd::test_accumulate_grad_posthooks_can_observe_tensor_prehook, test/test_autograd.py::TestAutograd::test_accumulate_grad_posthooks_should_not_execute, test/test_autograd.py::TestAutograd::test_accumulate_grad_tensor_reference, test/test_autograd.py::TestAutograd::test_accumulate_grad_with_zero_numel_grad, test/test_autograd.py::TestAutograd::test_anomaly_assign_parent_cleanup, test/test_autograd.py::TestAutograd::test_anomaly_detect_nan, test/test_autograd.py::TestAutograd::test_anomaly_grad_warnings, test/test_autograd.py::TestAutograd::test_anomaly_mode_no_check_nan, test/test_autograd.py::TestAutograd::test_attribute_deletion, test/test_autograd.py::TestAutograd::test_autograd_inplace_view_of_view, test/test_autograd.py::TestAutograd::test_autograd_inplace_views_creation_meta, test/test_autograd.py::TestAutograd::test_autograd_inplace_views_cross_dtype, test/test_autograd.py::TestAutograd::test_autograd_multiple_views_python, test/test_autograd.py::TestAutograd::test_autograd_node_isinstance, test/test_autograd.py::TestAutograd::test_autograd_print_tensor, test/test_autograd.py::TestAutograd::test_autograd_python_custom_function_inplace, test/test_autograd.py::TestAutograd::test_autograd_simple_views_python, test/test_autograd.py::TestAutograd::test_autograd_views_codegen, test/test_autograd.py::TestAutograd::test_backward, test/test_autograd.py::TestAutograd::test_backward_badcalls, test/test_autograd.py::TestAutograd::test_backward_copy, test/test_autograd.py::TestAutograd::test_backward_create_graph_warns, test/test_autograd.py::TestAutograd::test_backward_hook_relative_ordering, test/test_autograd.py::TestAutograd::test_backward_no_grad, test/test_autograd.py::TestAutograd::test_backward_to_node, test/test_autograd.py::TestAutograd::test_backward_twice_retained_graph_with_saved_values, test/test_autograd.py::TestAutograd::test_backward_twice_retained_graph_without_saved_values, test/test_autograd.py::TestAutograd::test_backward_twice_with_saved_values, test/test_autograd.py::TestAutograd::test_backward_twice_without_saved_values, test/test_autograd.py::TestAutograd::test_backward_with_inputs, test/test_autograd.py::TestAutograd::test_backward_with_nonleaf_inputs, test/test_autograd.py::TestAutograd::test_backward_with_scalar_input, test/test_autograd.py::TestAutograd::test_calculate_shape_util, test/test_autograd.py::TestAutograd::test_callback_adds_callback, test/test_autograd.py::TestAutograd::test_callback_propagates_errors_from_device_thread, test/test_autograd.py::TestAutograd::test_cant_create_saved_tensors, test/test_autograd.py::TestAutograd::test_checkpoint_detects_non_determinism, test/test_autograd.py::TestAutograd::test_checkpoint_sequential_warns_if_use_reentrant_not_passed_explcitly, test/test_autograd.py::TestAutograd::test_checkpoint_valid_reset_on_error, test/test_autograd.py::TestAutograd::test_checkpoint_warns_if_use_reentrant_not_passed_explcitly, test/test_autograd.py::TestAutograd::test_checkpointing, test/test_autograd.py::TestAutograd::test_checkpointing_non_reentrant_autocast_cpu, test/test_autograd.py::TestAutograd::test_checkpointing_non_reentrant_autocast_gpu, test/test_autograd.py::TestAutograd::test_checkpointing_without_reentrant_arbitrary_input_output, test/test_autograd.py::TestAutograd::test_checkpointing_without_reentrant_correct_grad, test/test_autograd.py::TestAutograd::test_checkpointing_without_reentrant_custom_function_works, test/test_autograd.py::TestAutograd::test_checkpointing_without_reentrant_dataparallel, test/test_autograd.py::TestAutograd::test_checkpointing_without_reentrant_detached_tensor_use_reentrant_False, test/test_autograd.py::TestAutograd::test_checkpointing_without_reentrant_detached_tensor_use_reentrant_True, test/test_autograd.py::TestAutograd::test_checkpointing_without_reentrant_input_requires_grad_False, test/test_autograd.py::TestAutograd::test_checkpointing_without_reentrant_input_requires_grad_True, test/test_autograd.py::TestAutograd::test_checkpointing_without_reentrant_memory_savings, test/test_autograd.py::TestAutograd::test_checkpointing_without_reentrant_parameter_used_in_an_out, test/test_autograd.py::TestAutograd::test_checkpointing_without_reentrant_saved_object_identity, test/test_autograd.py::TestAutograd::test_checkpointing_without_reentrant_with_context_fn, test/test_autograd.py::TestAutograd::test_copy_slices_graph_task_updates, test/test_autograd.py::TestAutograd::test_create_graph_and_full_backward_hook_cycle, test/test_autograd.py::TestAutograd::test_current_graph_task_execution_order, test/test_autograd.py::TestAutograd::test_current_graph_task_id, test/test_autograd.py::TestAutograd::test_current_node, test/test_autograd.py::TestAutograd::test_custom_autograd_no_early_free, test/test_autograd.py::TestAutograd::test_custom_autograd_repeated_grad_grad, test/test_autograd.py::TestAutograd::test_custom_function_cycle, test/test_autograd.py::TestAutograd::test_custom_function_error, test/test_autograd.py::TestAutograd::test_custom_function_exception, test/test_autograd.py::TestAutograd::test_custom_function_forward_mode_forward_is_no_op, test/test_autograd.py::TestAutograd::test_custom_function_forward_mode_inplace_checks, test/test_autograd.py::TestAutograd::test_custom_function_forward_mode_non_differentiable, test/test_autograd.py::TestAutograd::test_custom_function_forward_mode_non_tensor_before_tensor_args, test/test_autograd.py::TestAutograd::test_custom_function_forward_mode_view_checks, test/test_autograd.py::TestAutograd::test_custom_function_forward_mode_wrong_formula, test/test_autograd.py::TestAutograd::test_custom_function_inplace_on_non_default_view, test/test_autograd.py::TestAutograd::test_custom_function_inplace_on_view_of_leaf, test/test_autograd.py::TestAutograd::test_custom_function_local_inplace, test/test_autograd.py::TestAutograd::test_custom_function_mark_dirty_not_differentiable, test/test_autograd.py::TestAutograd::test_custom_function_mark_output_view_of_intermediate, test/test_autograd.py::TestAutograd::test_custom_function_no_tensors, test/test_autograd.py::TestAutograd::test_custom_function_non_tensor_inputs_outputs, test/test_autograd.py::TestAutograd::test_custom_function_preserve_torch_function_when_return_as_is, test/test_autograd.py::TestAutograd::test_custom_function_return_view_in_nograd, test/test_autograd.py::TestAutograd::test_custom_function_save_for_forward, test/test_autograd.py::TestAutograd::test_custom_function_saved_tensors, test/test_autograd.py::TestAutograd::test_custom_function_setup_context_multi_input, test/test_autograd.py::TestAutograd::test_custom_function_setup_context_multi_output, test/test_autograd.py::TestAutograd::test_custom_function_setup_context_simple, test/test_autograd.py::TestAutograd::test_custom_function_vmap_defaults, test/test_autograd.py::TestAutograd::test_deep_reentrant, test/test_autograd.py::TestAutograd::test_default_saved_tensors_hooks_double_backward, test/test_autograd.py::TestAutograd::test_dep_nograd, test/test_autograd.py::TestAutograd::test_dependent_backward, test/test_autograd.py::TestAutograd::test_detach, test/test_autograd.py::TestAutograd::test_detach_base, test/test_autograd.py::TestAutograd::test_detach_then_inplace_raises_in_autograd, test/test_autograd.py::TestAutograd::test_diagonal_expanded_v, test/test_autograd.py::TestAutograd::test_dir, test/test_autograd.py::TestAutograd::test_disabling_saved_tensor_hooks, test/test_autograd.py::TestAutograd::test_disabling_saved_tensor_hooks_nested, test/test_autograd.py::TestAutograd::test_dont_materialize_grads, test/test_autograd.py::TestAutograd::test_duplicate_backward_root, test/test_autograd.py::TestAutograd::test_enable_grad_decorator_no_paren, test/test_autograd.py::TestAutograd::test_first_grad_fn_access_in_no_grad_mode, test/test_autograd.py::TestAutograd::test_free_deep_graph, test/test_autograd.py::TestAutograd::test_free_deep_graph_complicated, test/test_autograd.py::TestAutograd::test_free_deep_graph_pyfunction, test/test_autograd.py::TestAutograd::test_full_backward_hook_double_backward, test/test_autograd.py::TestAutograd::test_function, test/test_autograd.py::TestAutograd::test_function_returns_input, test/test_autograd.py::TestAutograd::test_function_returns_undefined_tensor, test/test_autograd.py::TestAutograd::test_gc_in_destructor, test/test_autograd.py::TestAutograd::test_grad, test/test_autograd.py::TestAutograd::test_grad_badcalls, test/test_autograd.py::TestAutograd::test_grad_batched_grad, test/test_autograd.py::TestAutograd::test_grad_empty_inputs, test/test_autograd.py::TestAutograd::test_grad_fn_attr_bindings, test/test_autograd.py::TestAutograd::test_grad_fn_badcalls, test/test_autograd.py::TestAutograd::test_grad_fn_input_metadata, test/test_autograd.py::TestAutograd::test_grad_fn_prehooks, test/test_autograd.py::TestAutograd::test_grad_fn_prehooks_multiple_outputs, test/test_autograd.py::TestAutograd::test_grad_fn_prehooks_remove_hooks, test/test_autograd.py::TestAutograd::test_grad_materialize_grads, test/test_autograd.py::TestAutograd::test_grad_mode_class_decoration, test/test_autograd.py::TestAutograd::test_grad_mode_restored_reentrant, test/test_autograd.py::TestAutograd::test_grad_nonleaf, test/test_autograd.py::TestAutograd::test_grad_nonleaf_many_outputs, test/test_autograd.py::TestAutograd::test_grad_nonleaf_register_hook, test/test_autograd.py::TestAutograd::test_grad_to_node, test/test_autograd.py::TestAutograd::test_grad_to_node_inplace, test/test_autograd.py::TestAutograd::test_grad_to_node_materialize, test/test_autograd.py::TestAutograd::test_grad_to_node_multi, test/test_autograd.py::TestAutograd::test_grad_to_node_set, test/test_autograd.py::TestAutograd::test_grad_unreachable, test/test_autograd.py::TestAutograd::test_grad_unreachable_discovery, test/test_autograd.py::TestAutograd::test_gradcheck_backward_mul_by_grad_output, test/test_autograd.py::TestAutograd::test_gradcheck_check_batched_grad, test/test_autograd.py::TestAutograd::test_gradcheck_check_forward_or_backward_only, test/test_autograd.py::TestAutograd::test_gradcheck_check_no_differentiable_outputs, test/test_autograd.py::TestAutograd::test_gradcheck_complex_non_complex_outputs, test/test_autograd.py::TestAutograd::test_gradcheck_custom_error, test/test_autograd.py::TestAutograd::test_gradcheck_default_device_placement_context, test/test_autograd.py::TestAutograd::test_gradcheck_dense_and_sparse_inputs, test/test_autograd.py::TestAutograd::test_gradcheck_forward_ad, test/test_autograd.py::TestAutograd::test_gradcheck_forward_ad_batched_grad, test/test_autograd.py::TestAutograd::test_gradcheck_forward_ad_respects_requires_grad, test/test_autograd.py::TestAutograd::test_gradcheck_forward_ad_runs_with_no_requires_grad, test/test_autograd.py::TestAutograd::test_gradcheck_get_analytical_jacobian, test/test_autograd.py::TestAutograd::test_gradcheck_get_numerical_jacobian, test/test_autograd.py::TestAutograd::test_gradcheck_input_layout0, test/test_autograd.py::TestAutograd::test_gradcheck_input_layout1, test/test_autograd.py::TestAutograd::test_gradcheck_input_layout2, test/test_autograd.py::TestAutograd::test_gradcheck_input_layout3, test/test_autograd.py::TestAutograd::test_gradcheck_input_layout4, test/test_autograd.py::TestAutograd::test_gradcheck_jacobian_mismatch, test/test_autograd.py::TestAutograd::test_gradcheck_multiple_mkldnn_inputs, test/test_autograd.py::TestAutograd::test_gradcheck_nondeterministic, test/test_autograd.py::TestAutograd::test_gradcheck_output_shape_or_dtype_depend_on_values, test/test_autograd.py::TestAutograd::test_gradcheck_single_input, test/test_autograd.py::TestAutograd::test_gradcheck_test_outputs, test/test_autograd.py::TestAutograd::test_gradcheck_undefined_grad, test/test_autograd.py::TestAutograd::test_gradcheck_validates_input_mkldnn, test/test_autograd.py::TestAutograd::test_gradcheck_validates_inputs, test/test_autograd.py::TestAutograd::test_gradient_edge_graph_ownership, test/test_autograd.py::TestAutograd::test_gradient_edge_output, test/test_autograd.py::TestAutograd::test_graph_save_on_cpu, test/test_autograd.py::TestAutograd::test_graph_save_on_cpu_cuda, test/test_autograd.py::TestAutograd::test_hessian_vector, test/test_autograd.py::TestAutograd::test_hook_closure_cycle_use_custom_function_False_use_tensor_hook_False, test/test_autograd.py::TestAutograd::test_hook_closure_cycle_use_custom_function_False_use_tensor_hook_True, test/test_autograd.py::TestAutograd::test_hook_closure_cycle_use_custom_function_True_use_tensor_hook_False, test/test_autograd.py::TestAutograd::test_hook_closure_cycle_use_custom_function_True_use_tensor_hook_True, test/test_autograd.py::TestAutograd::test_hook_edge_case_when_called_with_grad, test/test_autograd.py::TestAutograd::test_hook_none, test/test_autograd.py::TestAutograd::test_hook_with_no_name, test/test_autograd.py::TestAutograd::test_hooks, test/test_autograd.py::TestAutograd::test_hooks_cpp, test/test_autograd.py::TestAutograd::test_increment_version, test/test_autograd.py::TestAutograd::test_index_backward_does_not_save_tensor, test/test_autograd.py::TestAutograd::test_indexing, test/test_autograd.py::TestAutograd::test_indexing_duplicates, test/test_autograd.py::TestAutograd::test_inplace, test/test_autograd.py::TestAutograd::test_inplace_not_requires_grad, test/test_autograd.py::TestAutograd::test_inplace_on_view_backward, test/test_autograd.py::TestAutograd::test_inplace_on_view_leaf_errors, test/test_autograd.py::TestAutograd::test_inplace_on_view_saved_output, test/test_autograd.py::TestAutograd::test_inplace_on_view_weak_grad_fn, test/test_autograd.py::TestAutograd::test_input_buffer_accum, test/test_autograd.py::TestAutograd::test_integer_outputs, test/test_autograd.py::TestAutograd::test_invalid_gradients, test/test_autograd.py::TestAutograd::test_isolated_node, test/test_autograd.py::TestAutograd::test_leaf_assignment, test/test_autograd.py::TestAutograd::test_legacy_function_deprecation_exception, test/test_autograd.py::TestAutograd::test_lobpcg, test/test_autograd.py::TestAutograd::test_mark_non_differentiable, test/test_autograd.py::TestAutograd::test_mark_non_differentiable_mixed, test/test_autograd.py::TestAutograd::test_mark_non_differentiable_none, test/test_autograd.py::TestAutograd::test_materialize_grads, test/test_autograd.py::TestAutograd::test_multi_backward, test/test_autograd.py::TestAutograd::test_multi_backward_no_grad, test/test_autograd.py::TestAutograd::test_multi_grad_all_hooks, test/test_autograd.py::TestAutograd::test_multi_grad_any_hooks, test/test_autograd.py::TestAutograd::test_multi_grad_hooks_invalid_mode, test/test_autograd.py::TestAutograd::test_multiple_insert_removal_caching, test/test_autograd.py::TestAutograd::test_named_tensor_for_complex_views, test/test_autograd.py::TestAutograd::test_naughty_anomaly_access, test/test_autograd.py::TestAutograd::test_naughty_autograd_function_attribute_access, test/test_autograd.py::TestAutograd::test_naughty_autograd_function_stashing_ctx, test/test_autograd.py::TestAutograd::test_nested_anomaly_detect_nan, test/test_autograd.py::TestAutograd::test_nested_anomaly_printstack_cleanup, test/test_autograd.py::TestAutograd::test_next_functions, test/test_autograd.py::TestAutograd::test_no_grad, test/test_autograd.py::TestAutograd::test_no_grad_assignment, test/test_autograd.py::TestAutograd::test_no_grad_copy, test/test_autograd.py::TestAutograd::test_no_grad_copy_sparse, test/test_autograd.py::TestAutograd::test_no_grad_input, test/test_autograd.py::TestAutograd::test_no_grad_modifies_version, test/test_autograd.py::TestAutograd::test_no_grad_python_function, test/test_autograd.py::TestAutograd::test_no_requires_grad_inplace, test/test_autograd.py::TestAutograd::test_no_unnecessary_save, test/test_autograd.py::TestAutograd::test_no_unnecessary_unwrapping, test/test_autograd.py::TestAutograd::test_node_ordering_when_none_returned, test/test_autograd.py::TestAutograd::test_node_post_hook_registered_during_unpack_hook, test/test_autograd.py::TestAutograd::test_not_implemented_fwad, test/test_autograd.py::TestAutograd::test_not_implemented_grad, test/test_autograd.py::TestAutograd::test_numpy_requires_grad, test/test_autograd.py::TestAutograd::test_once_differentiable, test/test_autograd.py::TestAutograd::test_out_variant_raises_when_inputs_require_grad, test/test_autograd.py::TestAutograd::test_pack_hook_with_inplace_modification_should_fail, test/test_autograd.py::TestAutograd::test_pickle, test/test_autograd.py::TestAutograd::test_post_accumulate_grad_hook_e2e, test/test_autograd.py::TestAutograd::test_post_accumulate_grad_hook_gets_cleaned_up, test/test_autograd.py::TestAutograd::test_post_accumulate_grad_hook_multiple_hooks, test/test_autograd.py::TestAutograd::test_post_accumulate_grad_hook_multiple_tensors, test/test_autograd.py::TestAutograd::test_post_accumulate_grad_hook_on_non_leaf, test/test_autograd.py::TestAutograd::test_post_accumulate_grad_hook_ordering, test/test_autograd.py::TestAutograd::test_post_accumulate_grad_hook_returns_not_None, test/test_autograd.py::TestAutograd::test_pow_zero_tensor_gradient, test/test_autograd.py::TestAutograd::test_power_function, test/test_autograd.py::TestAutograd::test_prehook_ordering, test/test_autograd.py::TestAutograd::test_profiler, test/test_autograd.py::TestAutograd::test_profiler_aggregation_fake, test/test_autograd.py::TestAutograd::test_profiler_aggregation_lstm, test/test_autograd.py::TestAutograd::test_profiler_aggregation_table, test/test_autograd.py::TestAutograd::test_profiler_function_event_avg, test/test_autograd.py::TestAutograd::test_profiler_propagation, test/test_autograd.py::TestAutograd::test_profiler_seq_nr, test/test_autograd.py::TestAutograd::test_profiler_shapes, test/test_autograd.py::TestAutograd::test_profiler_unboxed_only, test/test_autograd.py::TestAutograd::test_pynode_destruction_deadlock, test/test_autograd.py::TestAutograd::test_record_function, test/test_autograd.py::TestAutograd::test_record_function_callbacks, test/test_autograd.py::TestAutograd::test_record_function_legacy, test/test_autograd.py::TestAutograd::test_record_function_multithreaded, test/test_autograd.py::TestAutograd::test_reentrant_child_error, test/test_autograd.py::TestAutograd::test_reentrant_priority, test/test_autograd.py::TestAutograd::test_reentrant_with_callbacks_both_depths, test/test_autograd.py::TestAutograd::test_reentrant_with_callbacks_depth_0, test/test_autograd.py::TestAutograd::test_reentrant_with_callbacks_depth_1, test/test_autograd.py::TestAutograd::test_reentrant_with_leaf_variable_hook, test/test_autograd.py::TestAutograd::test_reentrant_with_non_leaf_variable_hook, test/test_autograd.py::TestAutograd::test_requires_grad, test/test_autograd.py::TestAutograd::test_requires_grad_, test/test_autograd.py::TestAutograd::test_requires_grad_inplace, test/test_autograd.py::TestAutograd::test_retain_grad, test/test_autograd.py::TestAutograd::test_retain_grad_cycle, test/test_autograd.py::TestAutograd::test_retain_grad_inplace, test/test_autograd.py::TestAutograd::test_retain_grad_inplace_over_view, test/test_autograd.py::TestAutograd::test_retains_grad_can_always_observe_tensor_prehook, test/test_autograd.py::TestAutograd::test_retains_grad_inplace_multiple_outputs, test/test_autograd.py::TestAutograd::test_return_duplicate, test/test_autograd.py::TestAutograd::test_return_duplicate_inplace, test/test_autograd.py::TestAutograd::test_return_leaf, test/test_autograd.py::TestAutograd::test_return_leaf_inplace, test/test_autograd.py::TestAutograd::test_save_none_for_backward, test/test_autograd.py::TestAutograd::test_save_on_cpu_and_checkpoint, test/test_autograd.py::TestAutograd::test_save_output_nr, test/test_autograd.py::TestAutograd::test_saved_tensor_hooks_custom_error_propagation, test/test_autograd.py::TestAutograd::test_saved_tensor_hooks_custom_function_intermediates, test/test_autograd.py::TestAutograd::test_saved_tensor_hooks_extra_enter_during_bw_no_leak, test/test_autograd.py::TestAutograd::test_saved_tensor_hooks_extra_exit_during_bw_no_crash, test/test_autograd.py::TestAutograd::test_saved_tensors_hook_version_counter_not_shared, test/test_autograd.py::TestAutograd::test_saved_variable_packing_unpacking_did_not_save_original_with_default_hooks, test/test_autograd.py::TestAutograd::test_saved_variable_packing_unpacking_did_not_save_original_with_hooks, test/test_autograd.py::TestAutograd::test_saved_variable_packing_unpacking_saved_original_with_default_hooks, test/test_autograd.py::TestAutograd::test_saved_variable_packing_unpacking_saved_original_with_hooks, test/test_autograd.py::TestAutograd::test_saved_variable_saved_original_inplace_detach, test/test_autograd.py::TestAutograd::test_saved_variable_version_counter, test/test_autograd.py::TestAutograd::test_saved_variables_deprecated, test/test_autograd.py::TestAutograd::test_saving_variable_to_disk, test/test_autograd.py::TestAutograd::test_scalar_grad_mixed_device, test/test_autograd.py::TestAutograd::test_select_expanded_v, test/test_autograd.py::TestAutograd::test_select_sum, test/test_autograd.py::TestAutograd::test_set_data_preserve_pyobj, test/test_autograd.py::TestAutograd::test_set_data_self_requires_grad, test/test_autograd.py::TestAutograd::test_set_data_tensorimpl_type, test/test_autograd.py::TestAutograd::test_set_grad_coroutines, test/test_autograd.py::TestAutograd::test_set_grad_coroutines_benign_exceptions, test/test_autograd.py::TestAutograd::test_set_grad_coroutines_critical_exceptions, test/test_autograd.py::TestAutograd::test_set_grad_coroutines_exit, test/test_autograd.py::TestAutograd::test_set_grad_enabled, test/test_autograd.py::TestAutograd::test_set_grad_enabled_wraps, test/test_autograd.py::TestAutograd::test_set_grad_generator_functions, test/test_autograd.py::TestAutograd::test_set_grad_generator_functions_recursive, test/test_autograd.py::TestAutograd::test_set_materialize_non_diff_grads, test/test_autograd.py::TestAutograd::test_setitem, test/test_autograd.py::TestAutograd::test_setitem_mask, test/test_autograd.py::TestAutograd::test_setting_default_saved_variable_hooks_twice_should_not_fail, test/test_autograd.py::TestAutograd::test_setting_default_saved_variable_hooks_twice_should_use_inner, test/test_autograd.py::TestAutograd::test_setup_context_when_forward_has_default_args, test/test_autograd.py::TestAutograd::test_shape, test/test_autograd.py::TestAutograd::test_sharded_grad, test/test_autograd.py::TestAutograd::test_simple_reentrant, test/test_autograd.py::TestAutograd::test_slice_expanded_v, test/test_autograd.py::TestAutograd::test_sparse_gather_both_scalar, test/test_autograd.py::TestAutograd::test_sparse_gather_dim0, test/test_autograd.py::TestAutograd::test_sparse_gather_dim1, test/test_autograd.py::TestAutograd::test_sparse_gather_dim_neg, test/test_autograd.py::TestAutograd::test_sparse_gather_ind_scalar, test/test_autograd.py::TestAutograd::test_sparse_gather_x_scalar, test/test_autograd.py::TestAutograd::test_sparse_mm_backward, test/test_autograd.py::TestAutograd::test_tensor_grad_warnings, test/test_autograd.py::TestAutograd::test_tensor_hooks_inplace, test/test_autograd.py::TestAutograd::test_tensor_hooks_inplace_multiple_outputs, test/test_autograd.py::TestAutograd::test_tensor_hooks_inplace_over_view, test/test_autograd.py::TestAutograd::test_thread_shutdown, test/test_autograd.py::TestAutograd::test_to_sparse_backward, test/test_autograd.py::TestAutograd::test_too_many_grads, test/test_autograd.py::TestAutograd::test_type_conversions, test/test_autograd.py::TestAutograd::test_unpack_hooks_exec_count, test/test_autograd.py::TestAutograd::test_unrelated_inputs, test/test_autograd.py::TestAutograd::test_unsafe_set_version_counter, test/test_autograd.py::TestAutograd::test_unused_output, test/test_autograd.py::TestAutograd::test_var_mean_differentiable, test/test_autograd.py::TestAutograd::test_variable_traverse, test/test_autograd.py::TestAutograd::test_version_counter, test/test_autograd.py::TestAutograd::test_view_func_replay, test/test_autograd.py::TestAutograd::test_view_func_replay_with_modified_state, test/test_autograd.py::TestAutograd::test_view_replay_enabled, test/test_autograd.py::TestAutograd::test_volatile_deprecated, test/test_autograd.py::TestAutograd::test_will_engine_execute_node, test/test_autograd.py::TestAutograd::test_wrapped_number_saved_tensors_hooks, test/test_autograd.py::TestAutogradForwardModeBatchedGrad::test_inplace_on_view_not_same_layout, test/test_autograd.py::TestAutogradForwardModeBatchedGrad::test_inplace_on_view_same_layout, test/test_autograd.py::TestAutogradForwardModeBatchedGrad::test_metadata_check_for_storage_numel_skipped, test/test_autograd.py::TestAutogradForwardModeBatchedGrad::test_out_of_place_basic, test/test_autograd.py::TestAutogradForwardModeBatchedGrad::test_out_of_place_not_same_layout, test/test_autograd.py::TestAutogradForwardMode::test_advanced_packing_unpacking, test/test_autograd.py::TestAutogradForwardMode::test_backward_graph_destruction, test/test_autograd.py::TestAutogradForwardMode::test_basic_packing_unpacking, test/test_autograd.py::TestAutogradForwardMode::test_codegen_ignores_undefined_outputs, test/test_autograd.py::TestAutogradForwardMode::test_create_new_zeros_with_same_meta, test/test_autograd.py::TestAutogradForwardMode::test_default_level, test/test_autograd.py::TestAutogradForwardMode::test_detach_view_tracking, test/test_autograd.py::TestAutogradForwardMode::test_forward_level_cleanup, test/test_autograd.py::TestAutogradForwardMode::test_fwd_grad_enabled, test/test_autograd.py::TestAutogradForwardMode::test_grad_cleanup, test/test_autograd.py::TestAutogradForwardMode::test_make_dual_forbid_integral_dtype, test/test_autograd.py::TestAutogradForwardMode::test_make_dual_inference_tensor_in_inference_mode, test/test_autograd.py::TestAutogradForwardMode::test_make_dual_torch_dispatch, test/test_autograd.py::TestAutogradForwardMode::test_metadata_check_check_conj, test/test_autograd.py::TestAutogradForwardMode::test_metadata_check_checks_ignores_size_zero, test/test_autograd.py::TestAutogradForwardMode::test_metadata_check_checks_storage_numel, test/test_autograd.py::TestAutogradForwardMode::test_metadata_check_ignore_storage_offset_for_zero_numel_tensor, test/test_autograd.py::TestAutogradForwardMode::test_metadata_check_when_primal_has_conj_bit, test/test_autograd.py::TestAutogradForwardMode::test_metadata_check_when_primal_has_neg_bit, test/test_autograd.py::TestAutogradForwardMode::test_nested_level, test/test_autograd.py::TestAutogradForwardMode::test_non_differentiable, test/test_autograd.py::TestAutogradForwardMode::test_out_variant, test/test_autograd.py::TestAutogradForwardMode::test_print, test/test_autograd.py::TestAutogradForwardMode::test_set_fw_grad_having_own_fw_grad_at_same_level, test/test_autograd.py::TestAutogradForwardMode::test_set_fwd_grad_enabled, test/test_autograd.py::TestAutogradForwardMode::test_size_check, test/test_autograd.py::TestAutogradForwardMode::test_view_inplace_always_creates_a_view, test/test_autograd.py::TestAutogradForwardMode::test_view_inplace_differentiable_views, test/test_autograd.py::TestAutogradForwardMode::test_view_inplace_non_differentiable_views, test/test_autograd.py::TestAllowMutationOnSaved::test_backward_out_of_context, test/test_autograd.py::TestAllowMutationOnSaved::test_basic, test/test_autograd.py::TestAllowMutationOnSaved::test_disallow_nesting, test/test_autograd.py::TestAllowMutationOnSaved::test_double_backward, test/test_autograd.py::TestAllowMutationOnSaved::test_inplace_foreach, test/test_autograd.py::TestAllowMutationOnSaved::test_save_base_and_modify_view, test/test_autograd.py::TestAllowMutationOnSaved::test_save_view_modify_base, test/test_autograd.py::TestAllowMutationOnSaved::test_saved_but_not_anymore, test/test_autograd.py::TestAllowMutationOnSaved::test_saved_same_tensor_different_versions, test/test_autograd.py::TestAllowMutationOnSaved::test_saved_same_tensor_many_times, test/test_autograd.py::TestAllowMutationOnSaved::test_views, test/test_autograd.py::TestAllowMutationOnSaved::test_with_math_views, test/test_autograd.py::TestAllowMutationOnSaved::test_with_out_variant, test/test_autograd.py::TestAutogradInferenceMode::test_inference_mode_context_manager, test/test_autograd.py::TestAutogradInferenceMode::test_inference_mode_decorator, test/test_autograd.py::TestAutogradInferenceMode::test_inference_mode_existing_autograd_session, test/test_autograd.py::TestAutogradInferenceMode::test_inference_mode_handle_direct_view_on_rebase, test/test_autograd.py::TestAutogradInferenceMode::test_inference_mode_handle_indirect_view_on_rebase, test/test_autograd.py::TestAutogradInferenceMode::test_inference_mode_inf_tensor_in_inf_mode_functional_op, test/test_autograd.py::TestAutogradInferenceMode::test_inference_mode_inf_tensor_in_inf_mode_inplace_op, test/test_autograd.py::TestAutogradInferenceMode::test_inference_mode_inf_tensor_in_inf_mode_view_op, test/test_autograd.py::TestAutogradInferenceMode::test_inference_mode_inf_tensor_in_normal_mode_functional_op, test/test_autograd.py::TestAutogradInferenceMode::test_inference_mode_inf_tensor_in_normal_mode_inplace_op, test/test_autograd.py::TestAutogradInferenceMode::test_inference_mode_inf_tensor_in_normal_mode_view_op, test/test_autograd.py::TestAutogradInferenceMode::test_inference_mode_tensor_creation, test/test_autograd.py::TestAutogradInferenceMode::test_mix_inference_and_normal_tensor_functional_op, test/test_autograd.py::TestAutogradInferenceMode::test_mix_inference_and_normal_tensor_inplace_op, test/test_autograd.py::TestAutogradInferenceMode::test_mix_inference_and_normal_tensor_view_op, test/test_autograd.py::TestAutogradInferenceMode::test_normal_tensor_inplace_output_in_inference_mode, test/test_autograd.py::TestAutogradInferenceMode::test_normal_tensor_inplace_output_in_normal_mode, test/test_autograd.py::TestAutogradInferenceMode::test_normal_tensor_view_output_in_inference_mode, test/test_autograd.py::TestAutogradInferenceMode::test_normal_tensor_view_output_in_normal_mode, test/test_autograd.py::TestAutogradStreamSynchronization::test_consumer_to_multi_producer_case_4_correctness, test/test_autograd.py::TestAutogradStreamSynchronization::test_consumer_to_single_producer_case_2_correctness, test/test_autograd.py::TestAutogradStreamSynchronization::test_consumer_to_single_producer_case_3_correctness, test/test_autograd.py::TestAutogradStreamSynchronization::test_consumer_to_single_producer_case_3_correctness_non_default_ambient_stream, test/test_autograd.py::TestAutogradStreamSynchronization::test_consumer_to_single_producer_case_4_correctness, test/test_autograd.py::TestAutogradStreamSynchronization::test_side_stream_backward_overlap, test/test_autograd.py::TestMultithreadAutograd::test_cat_stack_r_to_c, test/test_autograd.py::TestMultithreadAutograd::test_custom_function_propagates_errors_from_device_thread, test/test_autograd.py::TestMultithreadAutograd::test_dataparallel_saved_tensors_hooks, test/test_autograd.py::TestMultithreadAutograd::test_fork_join_in_middle, test/test_autograd.py::TestMultithreadAutograd::test_multi_grad_all_hooks, test/test_autograd.py::TestMultithreadAutograd::test_multi_grad_any_hooks, test/test_autograd.py::TestMultithreadAutograd::test_multithreaded_exception_propagation, test/test_autograd.py::TestMultithreadAutograd::test_preserve_backtrace, test/test_autograd.py::TestMultithreadAutograd::test_python_thread_in_middle, test/test_autograd.py::TestMultithreadAutograd::test_set_multithreading_enabled_as_context_manager_and_function, test/test_autograd.py::TestMultithreadAutograd::test_simple_backward, test/test_autograd.py::TestMultithreadAutograd::test_simple_backward_same_input, test/test_autograd.py::TestNestedCheckpoint::test_nested_checkpoint_early_stop_False, test/test_autograd.py::TestNestedCheckpoint::test_nested_checkpoint_early_stop_True, test/test_autograd.py::TestNestedCheckpoint::test_nested_checkpoint_kwargs_early_stop_False, test/test_autograd.py::TestNestedCheckpoint::test_nested_checkpoint_kwargs_early_stop_True, test/test_autograd.py::TestNestedCheckpoint::test_nested_checkpoint_non_tensor_inputs_and_outputs_early_stop_False, test/test_autograd.py::TestNestedCheckpoint::test_nested_checkpoint_non_tensor_inputs_and_outputs_early_stop_True, test/test_autograd.py::TestNestedCheckpoint::test_nested_checkpoint_reentrant_backwards_early_stop_False, test/test_autograd.py::TestNestedCheckpoint::test_nested_checkpoint_reentrant_backwards_early_stop_True, test/test_autograd.py::TestNestedCheckpoint::test_nested_checkpoint_same_graph_early_stop_False, test/test_autograd.py::TestNestedCheckpoint::test_nested_checkpoint_same_graph_early_stop_True, test/test_autograd.py::TestNestedCheckpoint::test_nested_checkpoint_set_early_stop, test/test_autograd.py::TestNestedCheckpoint::test_nested_checkpoint_set_early_stop_no_recompution_needed, test/test_autograd.py::TestNestedCheckpoint::test_nested_checkpoint_two_children_early_stop_False, test/test_autograd.py::TestNestedCheckpoint::test_nested_checkpoint_two_children_early_stop_True, test/test_autograd.py::TestSelectiveActivationCheckpoint::test_bad_inputs, test/test_autograd.py::TestSelectiveActivationCheckpoint::test_can_only_trigger_recompute_once, test/test_autograd.py::TestSelectiveActivationCheckpoint::test_flops_and_mem, test/test_autograd.py::TestSelectiveActivationCheckpoint::test_function_with_more_than_one_output, test/test_autograd.py::TestSelectiveActivationCheckpoint::test_function_with_non_tensor_output, test/test_autograd.py::TestSelectiveActivationCheckpoint::test_output_already_has_autograd_meta, test/test_autograd.py::TestSelectiveActivationCheckpoint::test_policy_with_state, test/test_autograd.py::TestSelectiveActivationCheckpoint::test_storage_lifetime, test/test_autograd.py::TestSelectiveActivationCheckpoint::test_subclass_dispatching_sizes, test/test_autograd.py::TestSelectiveActivationCheckpoint::test_version_counter, test/test_autograd.py::TestAutogradComplex::test_view_func_for_complex_views, test/test_autograd.py::TestAutogradComplex::test_view_with_multi_output, test/test_autograd.py::TestAutogradFunctional::test_construct_standard_basis_for_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_construct_standard_basis_for_cuda_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_construct_standard_basis_for_cuda_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_construct_standard_basis_for_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_create_graph_vectorize_False_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_create_graph_vectorize_False_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_create_graph_vectorize_True_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_create_graph_vectorize_True_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_err_check_strict_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_err_check_strict_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_err_check_strict_vectorize_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_err_check_strict_vectorize_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_err_check_vectorize_False_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_err_check_vectorize_False_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_err_check_vectorize_True_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_err_check_vectorize_True_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_match_vhp_hvp_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_match_vhp_hvp_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_no_grad_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_no_grad_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_output_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_output_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_output_vectorized_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_output_vectorized_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_scalar_vectorize_False_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_scalar_vectorize_False_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_scalar_vectorize_True_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_scalar_vectorize_True_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_vectorize_correctness_multi_input_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_vectorize_correctness_multi_input_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_vectorize_correctness_simple_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_vectorize_correctness_simple_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_vectorize_correctness_unrelated_outputs_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_vectorize_correctness_unrelated_outputs_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_vectorize_raises_no_warnings_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_hessian_vectorize_raises_no_warnings_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_hvp_create_graph_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_hvp_create_graph_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_hvp_err_check_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_hvp_err_check_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_hvp_err_check_strict_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_hvp_err_check_strict_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_hvp_no_grad_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_hvp_no_grad_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_hvp_output_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_hvp_output_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_hvp_scalar_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_hvp_scalar_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_create_graph_vectorize_False_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_create_graph_vectorize_False_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_create_graph_vectorize_True_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_create_graph_vectorize_True_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_err_check_strict_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_err_check_strict_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_err_check_strict_vectorize_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_err_check_strict_vectorize_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_err_check_vectorize_False_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_err_check_vectorize_False_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_err_check_vectorize_True_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_err_check_vectorize_True_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_match_vjp_jvp_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_match_vjp_jvp_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_no_grad_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_no_grad_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_output_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_output_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_output_vectorized_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_output_vectorized_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_scalar_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_scalar_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_scalar_vectorized_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_scalar_vectorized_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_vectorize_correctness_different_devices_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_vectorize_correctness_different_devices_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_vectorize_correctness_different_dtype_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_vectorize_correctness_different_dtype_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_vectorize_correctness_multi_input_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_vectorize_correctness_multi_input_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_vectorize_correctness_multi_input_multi_output_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_vectorize_correctness_multi_input_multi_output_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_vectorize_correctness_simple_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_vectorize_correctness_simple_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_vectorize_correctness_unrelated_outputs_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_vectorize_correctness_unrelated_outputs_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_vectorize_correctness_zero_dim_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_vectorize_correctness_zero_dim_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_vectorize_raises_no_warnings_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jacobian_vectorize_raises_no_warnings_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jvp_create_graph_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jvp_create_graph_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jvp_err_check_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jvp_err_check_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jvp_err_check_strict_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jvp_err_check_strict_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jvp_no_grad_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jvp_no_grad_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jvp_output_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jvp_output_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_jvp_scalar_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_jvp_scalar_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_vhp_create_graph_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_vhp_create_graph_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_vhp_err_check_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_vhp_err_check_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_vhp_err_check_strict_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_vhp_err_check_strict_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_vhp_no_grad_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_vhp_no_grad_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_vhp_output_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_vhp_output_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_vhp_scalar_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_vhp_scalar_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_vjp_create_graph_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_vjp_create_graph_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_vjp_err_check_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_vjp_err_check_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_vjp_err_check_strict_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_vjp_err_check_strict_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_vjp_no_grad_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_vjp_no_grad_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_vjp_output_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_vjp_output_logging_tensor, test/test_autograd.py::TestAutogradFunctional::test_vjp_scalar_base_tensor, test/test_autograd.py::TestAutogradFunctional::test_vjp_scalar_logging_tensor, test/test_autograd.py::TestAutogradLogging::test_logging, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_advanced_indexing_backwards_large_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_advanced_indexing_backwards_memory_format_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_backward_device_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_complex_scalar_backward_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_copy__cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_copy_forward_ad_broadcasting_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_copy_forward_ad_same_layout_copies_grad_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_copy_r_to_c_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_cross_device_reentrant_autograd_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_free_unneeded_tensor_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_grad_assignment_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_gradcheck_input_output_different_device_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_inplace_multiple_output_view_of_view_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_inplace_on_view_backprop_base_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_inplace_on_view_backprop_view_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_inplace_on_view_backprop_view_of_view_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_inplace_on_view_gradcheck_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_inplace_on_view_makes_base_require_grad_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_inplace_on_view_modify_base_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_inplace_on_view_multi_output_safe_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_inplace_on_view_multi_output_unsafe_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_inplace_on_view_multiple_outputs_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_inplace_on_view_non_contig_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_inplace_on_view_of_multiple_output_view_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_inplace_on_view_of_view_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_inplace_on_view_python_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_inplace_on_view_then_no_grad_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_inplace_on_view_undefined_grad_output_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_inputbuffer_add_multidevice_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_min_max_median_backprops_to_all_values_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_mv_grad_stride_0_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_non_differentiable_ops_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_parameter_resize_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_pin_memory_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_pow_real_negative_base_complex_exponent_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_profiler_emit_itt_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_profiler_emit_nvtx_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_pyscalar_conversions_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_reentrant_parent_error_on_cpu_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_requires_grad_factory_cpu_float32, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_requires_grad_factory_cpu_float64, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_resize_version_bump_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_rnn_backward_to_input_but_not_parameters_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_scatter_index_reduce_amin_amax_backprops_to_all_values_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_scatter_index_reduce_prod_gradgrad_error_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_set_requires_grad_only_for_floats_cpu_float32, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_set_requires_grad_only_for_floats_cpu_float64, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_set_requires_grad_only_for_floats_cpu_int16, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_set_requires_grad_only_for_floats_cpu_int32, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_set_requires_grad_only_for_floats_cpu_int64, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_set_requires_grad_only_for_floats_cpu_int8, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_simple_reentrant_cross_device_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_sparse_backward_cpu_complex128, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_sparse_backward_cpu_float64, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_sparse_ctor_getter_backward_cpu_complex128, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_sparse_ctor_getter_backward_cpu_float64, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_sparse_mask_autograd_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_strided_leaf_grad_layout_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_to_r_to_c_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_unused_output_device_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_warning_in_backward_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_where_functional_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_where_scalar_cpu, test/test_autograd.py::TestAutogradDeviceTypeCPU::test_zero_dim_param_mixed_device_grad_cpu, test/test_autograd.py::TestAutogradMultipleDispatchCPU::test_autograd_composite_implicit_and_dispatch_registration_cpu, test/test_autograd.py::TestAutogradMultipleDispatchCPU::test_autograd_multiple_dispatch_registrations_cpu, test/test_autograd.py::TestAutogradMultipleDispatchCPU::test_backward_single_threaded_cpu, test/test_autograd.py::TestAutogradMultipleDispatchCPU::test_backward_tls_stash_cpu, test/test_autograd.py::TestAutogradMultipleDispatchCPU::test_foward_mode_AD_cpu, test/test_autograd.py::TestAutogradMultipleDispatchCPU::test_is_retain_graph_cpu, test/test_autograd.py::TestAutogradMultipleDispatchCPU::test_per_dispatch_key_input_saving_cpu, test/test_autograd.py::TestAutogradMultipleDispatchCPU::test_set_sequence_nr_cpu, test/test_autograd.py::TestAutogradMultipleDispatchCPU::test_view_copy_cpu 2025-08-26T21:29:09.1978875Z 2025-08-26T21:29:09.9947405Z 2025-08-26T21:29:09.9948313Z profiler/test_kineto 1/1 was successful, full logs can be found in artifacts with path test/test-reports/profiler.test_kineto_1.1_daf28c362312ab2b_.log 2025-08-26T21:29:09.9949560Z Running 1 items in this shard: test/profiler/test_kineto.py::SimpleKinetoInitializationTest::test_kineto_profiler_with_environment_variable 2025-08-26T21:29:09.9950199Z 2025-08-26T21:29:14.3087015Z Running higher_order_ops/test_invoke_subgraph 1/1 ... [2025-08-26 21:29:14.308168] 2025-08-26T21:29:14.3087598Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:29:14.3094437Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'higher_order_ops/test_invoke_subgraph.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:29:14.309272] 2025-08-26T21:29:15.1761912Z Running test_comparison_utils 1/1 ... [2025-08-26 21:29:15.172781] 2025-08-26T21:29:15.1762408Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:29:15.1768726Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_comparison_utils.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:29:15.172781] 2025-08-26T21:29:19.9676470Z 2025-08-26T21:29:19.9677545Z test_comparison_utils 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_comparison_utils_1.1_91a9118345fe199c_.log 2025-08-26T21:29:19.9680216Z Running 7 items in this shard: test/test_comparison_utils.py::TestComparisonUtils::test_all_equal_no_assert, test/test_comparison_utils.py::TestComparisonUtils::test_all_equal_no_assert_nones, test/test_comparison_utils.py::TestComparisonUtils::test_assert_device, test/test_comparison_utils.py::TestComparisonUtils::test_assert_dtype, test/test_comparison_utils.py::TestComparisonUtils::test_assert_layout, test/test_comparison_utils.py::TestComparisonUtils::test_assert_sizes, test/test_comparison_utils.py::TestComparisonUtils::test_assert_strides 2025-08-26T21:29:19.9682344Z 2025-08-26T21:29:25.0596902Z Running functorch/test_ac_logging 1/1 ... [2025-08-26 21:29:25.059377] 2025-08-26T21:29:25.0597548Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:29:25.0603327Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_ac_logging.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:29:25.059956] 2025-08-26T21:29:29.4692456Z 2025-08-26T21:29:29.4693393Z functorch/test_ac_logging 1/1 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_ac_logging_1.1_e3ef9b43675b02c2_.log 2025-08-26T21:29:29.4695667Z Running 4 items in this shard: test/functorch/test_ac_logging.py::TestAcLogging::test_create_activation_checkpointing_logging_structure_payload, test/functorch/test_ac_logging.py::TestAcLogging::test_create_joint_graph_edges, test/functorch/test_ac_logging.py::TestAcLogging::test_create_joint_graph_node_information, test/functorch/test_ac_logging.py::TestAcLogging::test_create_structured_trace_for_min_cut_info 2025-08-26T21:29:29.4697459Z 2025-08-26T21:29:35.1283370Z Running test_mkl_verbose 1/1 ... [2025-08-26 21:29:35.127753] 2025-08-26T21:29:35.1283881Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:29:35.1290355Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_mkl_verbose.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:29:35.128866] 2025-08-26T21:29:43.8971201Z 2025-08-26T21:29:43.8972147Z test_mkl_verbose 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_mkl_verbose_1.1_2f2c383fe84df97b_.log 2025-08-26T21:29:43.8973303Z Running 2 items in this shard: test/test_mkl_verbose.py::TestMKLVerbose::test_verbose_off, test/test_mkl_verbose.py::TestMKLVerbose::test_verbose_on 2025-08-26T21:29:43.8973988Z 2025-08-26T21:29:48.9993217Z Running test_decomp 1/17 ... [2025-08-26 21:29:48.998236] 2025-08-26T21:29:48.9993700Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:29:48.9999693Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'not serial', '--shard-id=1', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:29:48.998236] 2025-08-26T21:32:08.0962849Z 2025-08-26T21:32:08.0964332Z higher_order_ops/test_invoke_subgraph 1/1 was successful, full logs can be found in artifacts with path test/test-reports/higher_order_ops.test_invoke_subgraph_1.1_f38a34106f13a753_.log 2025-08-26T21:32:08.1012001Z Running 67 items in this shard: test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraph::test_aot_function, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraph::test_multiple, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraph::test_simple, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_ac, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_ac_rng, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_ac_rng_cudagraphs, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_auto_functionalize, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_autograd_function, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_buffer_mutation_errors_under_training, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_buffer_mutation_works_under_no_grad, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_bwd_partitioning, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_complex, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_const_tensor, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_dce, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_dedupe, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_different_strides_in_backward, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_different_symint, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_differing_strides_for_grad_outs, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_div, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_dropout_checks_joint_graph, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_dropout_checks_joint_graph_inference, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_dynamic, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_fail_with_direct_invoke_subgraph, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_fake_tensor_checking, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_gen_schema, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_gen_schema_with_buffer_mutation, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_input_input_aliasing, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_input_mutation, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_input_mutation_inference_mode, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_input_mutation_mutiple_times, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_input_mutation_mutiple_times_fake_tensor_cahche_hit, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_input_output_aliasing, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_kwargs_only, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_list, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_mod_attr_aliasing, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_module, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_module_forward, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_module_method, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_nonlocal_update, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_normalize_gm, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_output_output_aliasing, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_pending_unbacked, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_preserves_output_strides, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_preserves_strides, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_redundant_compile_region, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_return_none, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_return_none_from_fwd, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_sdpa, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_simple, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_simple_module, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_symint_from_fwd_to_bwd, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_triton_kernel_native, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_tuple_of_tuple, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_unbacked, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_unbacked_symbol, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_view_to_reshape, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphExportNonstrict::test_multiple_module, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphExportNonstrict::test_pending_unbacked, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphExportNonstrict::test_simple_func, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphExportNonstrict::test_simple_method, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphExportNonstrict::test_unbacked, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphExportStrict::test_multiple_module, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphExportStrict::test_pending_unbacked, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphExportStrict::test_simple_func, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphExportStrict::test_simple_method, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphExportStrict::test_unbacked, test/higher_order_ops/test_invoke_subgraph.py::NegativeTesting::test_graph_break 2025-08-26T21:32:08.1044944Z 2025-08-26T21:32:12.2889834Z 2025-08-26T21:32:12.2891297Z export/test_sparse 2/2 was successful, full logs can be found in artifacts with path test/test-reports/export.test_sparse_2.2_b4107bb3efaac44d_.log 2025-08-26T21:32:12.2947048Z Running 97 items in this shard: test/export/test_sparse.py::TestSparseProp::test_activation_coo, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_bfloat16_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_bfloat16_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_bfloat16_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_bfloat16_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_bfloat16_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float16_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float16_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float16_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float16_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float16_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float16_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float32_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float32_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float32_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float32_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float64_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float64_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float64_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float64_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float64_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float64_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_int64_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_int64_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_int64_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_int64_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_int64_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_int64_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_idnet_bfloat16_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_idnet_bfloat16_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_idnet_bfloat16_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_idnet_float16_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_idnet_float16_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_idnet_float16_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_idnet_float16_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_idnet_float16_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_idnet_float16_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_idnet_float16_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_idnet_float32_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_idnet_float32_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_idnet_float32_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_idnet_float32_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_idnet_float32_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_idnet_float32_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_idnet_float64_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_idnet_float64_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_idnet_float64_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_idnet_int64_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_idnet_int64_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_idnet_int64_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_bfloat16_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_bfloat16_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_bfloat16_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_float16_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_float16_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_float16_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_float16_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_float16_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_float16_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_float32_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_float32_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_float32_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_float32_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_sumnet_float32_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_float64_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_float64_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_float64_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_float64_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_sumnet_int64_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_int64_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_sumnet_int64_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_int64_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_int64_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_sumnet_int64_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_bfloat16_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_bfloat16_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_bfloat16_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_bfloat16_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_bfloat16_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_todensenet_bfloat16_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_float16_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_todensenet_float16_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_float16_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_float16_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_todensenet_float32_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_float32_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_float32_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_float32_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_todensenet_float64_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_float64_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_float64_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_float64_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_int64_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_int64_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_int64_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_todensenet_int64_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_int64_int64_SparseBSC 2025-08-26T21:32:12.3000447Z 2025-08-26T21:32:13.5387928Z Running test_decomp 5/17 ... [2025-08-26 21:32:13.538436] 2025-08-26T21:32:13.5388373Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:32:13.5394753Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'not serial', '--shard-id=5', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:32:13.539022] 2025-08-26T21:32:17.6130878Z Running test_decomp 6/17 ... [2025-08-26 21:32:17.612743] 2025-08-26T21:32:17.6131528Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:32:17.6142726Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'not serial', '--shard-id=6', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:32:17.613950] 2025-08-26T21:38:19.3253318Z 2025-08-26T21:38:19.3254722Z test_decomp 1/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_1.17_6fbccc7801f2e6e9_.log 2025-08-26T21:38:19.3515302Z Running 514 items in this shard: test/test_decomp.py::TestDecompCPU::test_cat_single_input_cpu, test/test_decomp.py::TestDecompCPU::test_comprehensive_H_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_T_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive___getitem___cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive___getitem___cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive___radd___cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive___rdiv___cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive___rmatmul___cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive___ror___cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive___rpow___cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive___rpow___cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive___rpow___cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive___rsub___cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive__chunk_cat_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive__softmax_backward_data_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive__unsafe_masked_index_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_abs_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_add_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_add_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_addbmm_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_addcmul_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_addcmul_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_addcmul_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmv_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_addr_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_addr_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_alias_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_all_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_all_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_allclose_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_amax_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_amin_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_amin_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_amin_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_aminmax_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_angle_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_argmax_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_argsort_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_argsort_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_argwhere_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_argwhere_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_scatter_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_scatter_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_scatter_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_asinh_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_asinh_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_atan_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_2d_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_baddbmm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_bernoulli_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_and_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_not_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_or_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_xor_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_xor_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_bmm_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_tensors_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_tensors_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_to_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_to_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_to_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_byte_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_byte_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_cartesian_prod_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cartesian_prod_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_cat_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ceil_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_ceil_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_chalf_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_cholesky_inverse_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_chunk_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_min_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_clone_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_clone_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_clone_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_physical_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_corrcoef_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cos_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cosh_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_count_nonzero_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_cov_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cummin_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumsum_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumulative_trapezoid_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_embed_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagflat_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagflat_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_dsplit_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_einsum_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_like_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_like_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_like_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_permuted_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_eq_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_eq_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_equal_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_equal_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_erf_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_erf_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_erfinv_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_eye_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fft2_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fft_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fftshift_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfft2_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfft2_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfft_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfft_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifft2_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifft2_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifftshift_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ihfft_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ihfftn_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_rfftn_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fill_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_flatten_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_flatten_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_flip_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_float_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_float_power_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_float_power_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmax_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmin_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmod_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_geqrf_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_geqrf_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_histc_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_histogramdd_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_hsplit_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_hstack_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_fill_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_fill_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_fill_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_fill_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_amin_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_select_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_int_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_isinf_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isposinf_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_item_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_4inputs_with_extra_args_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_return_by_ref_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_unary_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_le_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_le_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_cholesky_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_eigvals_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_eigvals_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_householder_product_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_inv_ex_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_lstsq_grad_oriented_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_multi_dot_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_norm_subgradients_at_zero_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_qr_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_tensorsolve_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_vander_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linspace_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linspace_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_log10_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_softmax_with_dtype_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_softmax_with_dtype_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_softmax_with_dtype_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_logaddexp2_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_logaddexp_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_and_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_not_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_not_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_lu_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_cumprod_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_cumprod_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_fill_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_median_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_scatter_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_std_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_var_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_var_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_var_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_reduction_no_dim_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_reduction_no_dim_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_reduction_with_dim_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_reduction_with_dim_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_maximum_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_list_of_tensors_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_list_of_tensors_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_variadic_tensors_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_variadic_tensors_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_binary_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_reduction_no_dim_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_minimum_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_mm_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_multinomial_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_1_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_3_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nan_to_num_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_nanmedian_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_neg_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_empty_strided_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_full_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_full_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_zeros_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_adaptive_avg_pool2d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_avg_pool3d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_bilinear_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_binary_cross_entropy_with_logits_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_celu_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv2d_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv_transpose3d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_cosine_similarity_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_elu_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_feature_alpha_dropout_without_train_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_group_norm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_hardshrink_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_hardswish_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_l1_loss_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_layer_norm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_linear_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_local_response_norm_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_pool3d_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_unpool1d_grad_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_unpool2d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_nll_loss_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_normalize_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_circular_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_constant_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_reflect_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_reflect_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_reflect_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_replicate_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_replicate_negative_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_replicate_negative_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pairwise_distance_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pixel_shuffle_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pixel_shuffle_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pixel_shuffle_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_relu_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softmin_with_dtype_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softmin_with_dtype_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softshrink_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_tanhshrink_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_tanhshrink_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_threshold_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_threshold_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nonzero_static_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nonzero_static_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_normal_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_like_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_outer_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_outer_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_outer_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_outer_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_permute_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_1_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_1_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_3_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_pow_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_prod_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_prod_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_rad2deg_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_real_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_real_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_reciprocal_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_renorm_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_renorm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_renorm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_reshape_as_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_reshape_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_resize_as__cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_resolve_conj_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_resolve_conj_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_resolve_neg_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_roll_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_rot90_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_rot90_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_round_decimals_neg_3_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_rsqrt_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_scalar_tensor_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_amax_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_mean_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_searchsorted_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_select_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_select_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_select_scatter_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_short_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_signal_windows_cosine_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_signal_windows_nuttall_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sinc_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sort_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sparse_mm_reduce_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_y0_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_u_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_u_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_w_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_w_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_entr_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_hermite_polynomial_he_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i1_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_log_ndtr_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_log_ndtr_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_i0_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_i0_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_i1_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_i1_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_k0_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_ndtri_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_ndtri_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_t_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_v_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_with_sizes_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_square_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_multiple_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_multiple_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sum_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_svd_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_t_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_take_along_dim_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensor_split_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_to_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_to_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_to_sparse_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_to_sparse_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_topk_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_trace_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_trace_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_trapezoid_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_trapezoid_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_trapezoid_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_tril_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_tril_indices_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_triu_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_unbind_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unflatten_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unflatten_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unflatten_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_unfold_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unravel_index_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsafe_split_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_var_mean_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_var_unbiased_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_vdot_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_as_complex_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_as_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_zeros_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_zeros_like_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_zeros_like_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick__chunk_cat_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick__chunk_cat_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_acosh_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_acosh_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_add_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_addcdiv_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_addmm_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_addr_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_all_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_amin_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_amin_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_amin_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_any_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_any_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_arange_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_scatter_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_asin_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_asinh_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_atan_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_atan_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_atanh_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_atanh_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_baddbmm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_not_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_or_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_right_shift_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_clamp_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_clamp_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_clamp_max_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_clone_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_complex_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_bernoulli_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_block_diag_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_linalg_cross_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_std_unbiased_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_unsafe_split_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_cos_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_cos_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_cosh_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_count_nonzero_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_count_nonzero_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_cumsum_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_diag_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_diag_embed_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_scatter_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_scatter_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_div_no_rounding_mode_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_exp2_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_exp_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_expm1_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_eye_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_fft_fft2_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_fft_fft_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_fft_fft_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfft_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfftn_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_fft_rfft2_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_fft_rfft_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_fill_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_flip_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_floor_divide_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_full_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_geometric_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_i0_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_i0_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_index_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_isinf_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_item_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_item_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_linalg_diagonal_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_linalg_vector_norm_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_log2_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_log_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_logaddexp_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_logical_not_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_logical_or_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_logspace_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_logsumexp_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_logsumexp_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_masked_fill_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_maximum_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_maximum_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_mean_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_meshgrid_list_of_tensors_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_1_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_5_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_narrow_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_native_batch_norm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_neg_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_neg_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_new_empty_strided_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_new_ones_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_new_ones_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_new_zeros_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_binary_cross_entropy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_gelu_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_glu_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_hardsigmoid_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_leaky_relu_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_logsigmoid_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_max_unpool3d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_mse_loss_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_relu6_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_relu_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_norm_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_norm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_norm_fro_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_ones_like_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_permute_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_permute_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_permute_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_rad2deg_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_reciprocal_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_roll_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_rot90_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_rot90_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_round_decimals_3_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_rsqrt_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_select_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_select_scatter_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_sigmoid_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_signbit_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_sinh_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_special_erfcx_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_special_i0e_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_special_i1_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_split_list_args_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_stack_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_std_unbiased_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_sub_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_sub_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_t_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_t_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_t_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_t_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_t_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_take_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_tan_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_trace_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_transpose_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_transpose_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_transpose_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_transpose_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_tril_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_unbind_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_unbind_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_unsafe_split_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_var_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_view_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_zeros_like_cpu_bool, test/test_decomp.py::DecompOneOffTestsCPU::test_threshold_backward_dtype_cpu 2025-08-26T21:38:19.3767842Z 2025-08-26T21:38:24.5406613Z Running test_decomp 7/17 ... [2025-08-26 21:38:24.535773] 2025-08-26T21:38:24.5407082Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:38:24.5413439Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'not serial', '--shard-id=7', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:38:24.535773] 2025-08-26T21:38:57.0921161Z 2025-08-26T21:38:57.0922945Z test_decomp 5/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_5.17_11e90566b19b3cb0_.log 2025-08-26T21:38:57.1074772Z Running 529 items in this shard: test/test_decomp.py::TestDecompCPU::test_comprehensive_T_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive___getitem___cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive___radd___cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive___rand___cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive___rand___cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive___rpow___cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive___rsub___cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive__segment_reduce_offsets_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive__softmax_backward_data_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive__unsafe_masked_index_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive__unsafe_masked_index_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive__unsafe_masked_index_put_accumulate_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_add_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_add_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_add_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_addcdiv_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_addcdiv_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_addcdiv_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_addcmul_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_addcmul_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmm_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_addr_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_alias_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_aminmax_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_angle_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_angle_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_any_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_any_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_argmax_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_argmin_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_argwhere_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_argwhere_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_argwhere_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_scatter_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_asin_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_atan2_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_atan_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_atanh_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_1d_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_2d_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_3d_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_baddbmm_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_and_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_left_shift_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_right_shift_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_block_diag_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_bmm_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_bmm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_bool_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_tensors_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_byte_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ceil_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_max_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_max_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_min_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_clone_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_clone_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_combinations_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_contiguous_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_copysign_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_copysign_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_corrcoef_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_corrcoef_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_corrcoef_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_corrcoef_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_cos_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cosh_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cosh_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cummin_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_deg2rad_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_embed_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_scatter_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_diff_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_digamma_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_digamma_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_floor_rounding_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_double_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_dsplit_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_dsplit_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_einsum_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_like_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_permuted_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_strided_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_eq_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_eq_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_equal_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_erfc_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_erfc_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_erfc_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_erfinv_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_exp2_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_expm1_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_exponential_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_eye_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_eye_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_eye_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fft_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fftn_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfft_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfftn_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfft2_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfft_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfftn_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfftn_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_rfftn_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_flatten_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_flatten_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_flip_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_flip_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fliplr_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_float_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_float_power_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_floor_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmax_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_frac_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_like_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_like_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ge_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ge_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_half_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_hash_tensor_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_histogramdd_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_hstack_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_i0_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_mean_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_mean_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_inner_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isclose_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_isclose_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_isfinite_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_isin_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_isinf_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_isneginf_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_isposinf_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_4inputs_with_extra_args_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_le_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_lerp_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_lerp_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_diagonal_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_inv_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_inv_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_lstsq_grad_oriented_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_matrix_norm_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_matrix_power_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_matrix_power_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_matrix_rank_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_matrix_rank_hermitian_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_qr_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_log2_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_logaddexp2_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logcumsumexp_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_and_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_not_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_or_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_xor_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_logspace_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_logspace_tensor_overload_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_logspace_tensor_overload_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_mH_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_argmin_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_fill_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_fill_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_fill_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_log_softmax_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_logsumexp_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_mean_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_scatter_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_var_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_var_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_binary_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_binary_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_reduction_with_dim_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_reduction_with_dim_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_variadic_tensors_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_variadic_tensors_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_binary_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_reduction_no_dim_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_minimum_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_mm_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_mode_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_1_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nanmedian_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nanmedian_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nansum_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_native_dropout_backward_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_native_dropout_backward_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ne_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_neg_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_empty_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_empty_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_ones_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_ones_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_ones_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nextafter_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nextafter_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_adaptive_max_pool2d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_adaptive_max_pool3d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_alpha_dropout_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_avg_pool2d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_binary_cross_entropy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_channel_shuffle_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv2d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv2d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv_transpose1d_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_ctc_loss_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_dropout3d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_embedding_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_feature_alpha_dropout_without_train_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_grid_sample_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_bicubic_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_bicubic_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_nearest_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_margin_ranking_loss_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_margin_ranking_loss_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_pool3d_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_unpool1d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_unpool3d_grad_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_mish_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_multilabel_soft_margin_loss_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_normalize_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_circular_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_reflect_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_replicate_negative_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pixel_unshuffle_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_relu6_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_relu_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_rms_norm_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_tanhshrink_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_triplet_margin_loss_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_upsample_nearest_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nonzero_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_like_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_like_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_outer_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_0_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_3_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_positive_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_rand_like_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_randint_like_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_randn_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_ravel_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_repeat_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_repeat_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_repeat_interleave_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_reshape_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_resize__cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_resize__cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_resolve_neg_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_roll_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_scalar_tensor_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_add_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_add_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_amax_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_mean_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_searchsorted_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sigmoid_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sigmoid_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_signal_windows_cosine_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_signbit_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sin_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_softmax_with_dtype_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_softmax_with_dtype_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sparse_sampled_addmm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sparse_sampled_addmm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_airy_ai_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_j0_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_y0_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_t_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_t_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_u_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_hermite_polynomial_h_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_hermite_polynomial_h_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i0e_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i0e_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i0e_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i0e_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_i1_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_k0_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_k1_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_polygamma_special_polygamma_n_0_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_polygamma_special_polygamma_n_0_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_scaled_modified_bessel_k0_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_v_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_list_args_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sqrt_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_sqrt_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_square_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_square_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_stack_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_std_mean_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_t_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_take_along_dim_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_take_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_take_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_tan_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_tanh_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensor_split_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensordot_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_to_sparse_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_tril_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_tril_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_tril_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_triu_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unbind_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_unfold_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unique_consecutive_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unique_consecutive_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_unique_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsafe_chunk_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsafe_split_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_var_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_var_mean_unbiased_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_as_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_xlogy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_zero__cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_zero__cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_zeros_like_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_zeros_like_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick__unsafe_masked_index_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick__unsafe_masked_index_put_accumulate_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick__unsafe_masked_index_put_accumulate_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_abs_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_acos_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_acos_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_acosh_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_acosh_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_add_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_addcdiv_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_addmv_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_addmv_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_addr_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_all_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_all_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_amin_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_asin_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_asin_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_asinh_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_asinh_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_asinh_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_atan2_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_atanh_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_cat_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_cauchy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_ceil_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_clamp_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_clamp_min_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_clone_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_constant_pad_nd_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_copysign_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_copysign_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_native_dropout_backward_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_nn_functional_binary_cross_entropy_with_logits_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_nn_functional_unfold_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_sgn_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_take_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_cos_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_cosh_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_cosh_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_cosh_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_cumprod_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_deg2rad_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_deg2rad_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_diag_embed_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_diag_embed_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_digamma_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_div_no_rounding_mode_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_empty_like_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_empty_like_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_empty_like_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_empty_strided_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_empty_strided_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_exp_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_expand_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_expand_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_expand_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_exponential_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_fft_fft2_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifft_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifftn_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifftn_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_fft_ihfft_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfft2_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_fft_rfft_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_fill_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_fill_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_fill_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_fmax_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_ge_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_heaviside_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_index_select_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_isin_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_isinf_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_isinf_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_isneginf_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_le_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_le_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_le_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_linalg_cross_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_linalg_diagonal_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_linalg_vector_norm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_log1p_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_log1p_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_log2_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_log2_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_log2_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_log_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_logical_or_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_logical_xor_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_logical_xor_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_logical_xor_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_logspace_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_logspace_tensor_overload_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_logsumexp_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_lt_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_lt_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_masked_fill_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_masked_fill_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_masked_fill_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_meshgrid_list_of_tensors_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_meshgrid_list_of_tensors_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_meshgrid_variadic_tensors_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_mul_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_1_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_3_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_narrow_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_ne_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_new_empty_strided_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_new_zeros_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_binary_cross_entropy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_hardshrink_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_pad_constant_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_relu_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_norm_nuc_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_normal_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_normal_in_place_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_ones_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_ones_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_ones_like_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_permute_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_permute_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_permute_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_permute_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_permute_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_permute_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_polar_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_prod_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_reciprocal_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_repeat_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_round_decimals_3_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_round_decimals_neg_3_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_rsub_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_rsub_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_select_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_select_scatter_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_sgn_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_sgn_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_sgn_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_sigmoid_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_sign_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_sign_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_sin_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_sinc_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_sinc_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_sinc_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_slice_scatter_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_slice_scatter_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_special_entr_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_special_erfcx_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_special_i0e_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_special_i1e_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_special_log_ndtr_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_special_ndtri_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_split_list_args_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_sqrt_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_sqrt_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_multiple_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_stack_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_std_mean_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_sum_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_sum_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_t_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_take_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_transpose_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_tril_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_trunc_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_unbind_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_unfold_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_unfold_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_unsafe_split_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_unsafe_split_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_var_mean_unbiased_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_var_mean_unbiased_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_vdot_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_vdot_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_view_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_view_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_view_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_where_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_zero__cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_zeros_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_zeros_like_cpu_int16 2025-08-26T21:38:57.1218349Z 2025-08-26T21:39:02.7329632Z Running test_decomp 11/17 ... [2025-08-26 21:39:02.732586] 2025-08-26T21:39:02.7330592Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:39:02.7337725Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'not serial', '--shard-id=11', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:39:02.733170] 2025-08-26T21:41:20.9508882Z 2025-08-26T21:41:20.9509682Z test_decomp 6/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_6.17_03d03034e934ab56_.log 2025-08-26T21:41:20.9665849Z Running 518 items in this shard: test/test_decomp.py::TestDecompCPU::test_comprehensive_H_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_H_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_T_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive___radd___cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive___radd___cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive___rdiv___cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive___rmatmul___cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive___rmul___cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive___ror___cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive___rpow___cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive__batch_norm_with_update_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive__chunk_cat_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive__segment_reduce_lengths_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive__unsafe_masked_index_put_accumulate_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive__unsafe_masked_index_put_accumulate_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_abs_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_acos_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_add_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_addbmm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmm_decomposed_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmv_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_alias_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_alias_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_all_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_all_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_amax_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_any_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_argmin_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_partial_views_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_scatter_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_asinh_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_asinh_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_atanh_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_1d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_2d_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_baddbmm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_not_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_or_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_right_shift_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_block_diag_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_bmm_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bool_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_bool_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_tensors_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_byte_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_cartesian_prod_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cat_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cdouble_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cholesky_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_chunk_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_min_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_combinations_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_complex_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_physical_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_constant_pad_nd_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_contiguous_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_contiguous_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_contiguous_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cos_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_count_nonzero_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_count_nonzero_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_cov_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cross_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cummax_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumprod_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumprod_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_embed_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagflat_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagflat_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_scatter_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_diff_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_digamma_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_no_rounding_mode_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_trunc_rounding_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_trunc_rounding_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_dot_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_double_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_dsplit_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_dstack_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_like_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_erfinv_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_exp_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_expm1_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_exponential_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fft2_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fft2_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fftn_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fftn_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfftn_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfftn_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifftn_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifftshift_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifftshift_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifftshift_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ihfft2_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfft_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_rfft2_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_rfft_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_rfftn_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fill_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fill_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_flatten_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_fliplr_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fliplr_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_flipud_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_floor_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmax_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmin_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmin_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmod_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_like_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_gather_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_gather_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_gcd_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_geometric_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_gradient_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_hash_tensor_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_hsplit_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_igammac_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_add_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_add_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_put_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_mean_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_mean_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_int_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_isclose_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_isclose_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isinf_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_isreal_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_2inputs_2outputs_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_4inputs_with_extra_args_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ldexp_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_ldexp_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_ldexp_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_lgamma_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_lgamma_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_diagonal_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_ldl_factor_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_lu_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_matrix_power_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_matrix_rank_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_norm_subgradients_at_zero_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_solve_ex_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_tensorinv_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_tensorsolve_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linspace_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linspace_tensor_overload_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linspace_tensor_overload_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_log2_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_normal_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_softmax_with_dtype_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_logaddexp_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_not_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_not_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_xor_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_logspace_tensor_overload_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logsumexp_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_long_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_lt_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_mH_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_mT_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mT_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_amin_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_amin_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_cumsum_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_cumsum_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_cumsum_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_cumsum_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_fill_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_log_softmax_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_logsumexp_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_normalize_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_prod_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_select_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_select_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_std_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_std_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_sum_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mean_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_reduction_no_dim_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_minimum_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_minimum_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_movedim_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_ne_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_ones_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_avg_pool1d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_channel_shuffle_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv_transpose3d_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_cosine_embedding_loss_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_dropout2d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_embedding_bag_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_feature_alpha_dropout_without_train_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_feature_alpha_dropout_without_train_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_fractional_max_pool2d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_gaussian_nll_loss_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_gelu_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_glu_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_grid_sample_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_hardtanh_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_huber_loss_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_linear_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_margin_ranking_loss_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_pool2d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_pool2d_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_unpool3d_grad_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_unpool3d_grad_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_mse_loss_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_multilabel_margin_loss_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_circular_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_reflect_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_replicate_negative_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pairwise_distance_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pixel_unshuffle_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pixel_unshuffle_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_poisson_nll_loss_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_poisson_nll_loss_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_relu6_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_selu_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_soft_margin_loss_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softplus_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_tanhshrink_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_threshold_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_triplet_margin_loss_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_unfold_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_upsample_bilinear_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_upsample_nearest_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nonzero_static_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nonzero_static_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_norm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_norm_fro_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_norm_inf_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_like_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_like_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_like_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_outer_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_permute_copy_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_permute_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_pinverse_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_1_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_1_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_2_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_3_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_pow_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_put_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_randint_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_randn_like_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ravel_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_renorm_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_repeat_interleave_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_reshape_as_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_reshape_as_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_resize__cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_resolve_conj_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_resolve_conj_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_roll_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_roll_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_rot90_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_rot90_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_round_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_round_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_rsqrt_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_mean_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_searchsorted_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_select_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sigmoid_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sigmoid_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_sign_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_sign_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sign_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sign_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_sin_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sin_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_sinc_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_slice_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_softmax_with_dtype_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sort_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_sort_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_j1_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_t_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_v_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_v_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_w_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_laguerre_polynomial_l_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_log_ndtr_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_i0_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_k1_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_ndtri_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_ndtri_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_u_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_spherical_bessel_j0_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_with_sizes_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_square_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_stack_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_std_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_std_mean_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_std_mean_unbiased_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_std_unbiased_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_stft_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_svd_lowrank_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_t_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_t_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_take_along_dim_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_to_sparse_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_trace_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_copy_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_trapezoid_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_trapezoid_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_trapz_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_tril_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_tril_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_triu_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_triu_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_true_divide_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_trunc_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unbind_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unbind_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unbind_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unbind_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_unflatten_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unflatten_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_unflatten_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unflatten_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unfold_copy_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unfold_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsafe_split_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_vdot_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_as_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_vsplit_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_vstack_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_vstack_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_where_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_zero__cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_zeros_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_acos_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_acosh_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_addmm_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_addmv_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_addmv_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_alias_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_alias_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_all_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_amin_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_scatter_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_scatter_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_atan_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_atan_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_left_shift_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_right_shift_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_cat_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_clamp_max_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_clamp_min_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_clone_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_conj_physical_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_constant_pad_nd_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_clamp_max_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_nn_functional_max_unpool2d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_rad2deg_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_rot90_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_sinc_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_cumprod_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_cumsum_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_deg2rad_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_div_floor_rounding_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_div_floor_rounding_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_div_trunc_rounding_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_empty_like_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_eq_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_erf_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_erfinv_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_expm1_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_fft_fft2_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_fft_fft_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_fft_fft_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_fft_fftn_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_fft_fftn_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifft2_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifft_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifft_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_fft_ihfft2_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_fft_ihfft2_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_fft_ihfft_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfftn_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_fft_rfft_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_fft_rfftn_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_fill_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_flip_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_floor_divide_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_frexp_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_full_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_heaviside_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_i0_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_index_add_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_index_fill_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_isin_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_isinf_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_isposinf_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_item_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_linalg_diagonal_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_linspace_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_linspace_tensor_overload_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_log10_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_log1p_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_logical_not_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_logical_not_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_logical_not_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_logical_xor_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_logit_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_logsumexp_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_logsumexp_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_lt_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_meshgrid_list_of_tensors_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_meshgrid_list_of_tensors_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_meshgrid_variadic_tensors_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_meshgrid_variadic_tensors_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_meshgrid_variadic_tensors_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_minimum_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_mul_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_3_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_nan_to_num_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_nansum_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_narrow_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_native_dropout_backward_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_native_dropout_backward_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_native_dropout_backward_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_new_empty_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_new_empty_strided_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_new_zeros_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_new_zeros_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_embedding_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_hardsigmoid_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_max_unpool3d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_pad_constant_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_relu6_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_relu_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_silu_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_unfold_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_unfold_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_norm_inf_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_norm_inf_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_normal_number_mean_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_ones_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_ones_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_ones_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_ones_like_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_pow_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_prod_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_randn_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_renorm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_roll_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_rsqrt_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_rsub_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_rsub_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_sgn_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_sgn_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_sinh_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_slice_scatter_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_special_i1e_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_split_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_split_list_args_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_split_list_args_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_stack_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_sub_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_t_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_take_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_tan_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_trace_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_transpose_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_tril_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_triu_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_triu_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_trunc_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_unbind_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_unbind_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_unbind_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_unfold_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_unfold_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_unfold_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_var_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_var_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_var_mean_unbiased_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_view_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_where_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_where_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_zero__cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_zero__cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_zeros_like_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_rnn_decomp_module_nn_LSTM_train_mode_cpu_float32, test/test_decomp.py::DecompOneOffTestsCPU::test_contiguous_log_softmax_cpu, test/test_decomp.py::DecompOneOffTestsCPU::test_sdpa_nn_functional_scaled_dot_product_attention_cpu_float32 2025-08-26T21:41:20.9807761Z 2025-08-26T21:41:26.2945018Z Running test_decomp 12/17 ... [2025-08-26 21:41:26.293056] 2025-08-26T21:41:26.2945661Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:41:26.2951634Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'not serial', '--shard-id=12', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:41:26.293056] 2025-08-26T21:46:08.2112878Z 2025-08-26T21:46:08.2113952Z test_decomp 11/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_11.17_b32bf75a67e99736_.log 2025-08-26T21:46:08.2263221Z Running 490 items in this shard: test/test_decomp.py::TestDecompCPU::test_broadcasting_index_copy_cpu, test/test_decomp.py::TestDecompCPU::test_comprehensive_H_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_T_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive___radd___cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive___rmatmul___cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive___rmod___cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive___rmod___cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive__chunk_cat_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive__chunk_cat_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive__native_batch_norm_legit_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive__unsafe_masked_index_put_accumulate_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_abs_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_abs_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_add_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmm_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmv_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_addr_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_alias_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_alias_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_all_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_all_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_amin_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_angle_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_angle_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_arange_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_argmin_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_argsort_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_argsort_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_asinh_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_atan2_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_3d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_3d_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_baddbmm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_baddbmm_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_bincount_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_bmm_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_tensors_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bucketize_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_byte_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cat_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_chalf_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_char_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cholesky_inverse_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_cholesky_inverse_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_max_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_column_stack_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_column_stack_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_column_stack_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_physical_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_corrcoef_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_count_nonzero_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_count_nonzero_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cov_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumsum_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumulative_trapezoid_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_deg2rad_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagflat_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagflat_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_scatter_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_digamma_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_dist_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_dot_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_dot_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_dstack_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_dstack_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_dstack_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_strided_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_erf_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_erf_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_erfc_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_exp2_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_exp_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_as_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fft2_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fftn_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fftshift_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fftshift_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfft_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifft_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifftn_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ihfft_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfft2_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfft_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfft_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfftn_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_rfft2_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_rfft2_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_rfft_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fill_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_flatten_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fliplr_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_floor_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_floor_divide_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_floor_divide_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_gcd_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_gradient_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_grid_sampler_2d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_gt_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_gt_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_hsplit_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_hstack_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_i0_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_igammac_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_add_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_amin_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_prod_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_prod_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_prod_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_select_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_isclose_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isin_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_isin_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_isinf_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_isreal_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_2inputs_2outputs_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_kron_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_kthvalue_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_lgamma_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_cholesky_ex_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_cholesky_ex_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_ldl_factor_ex_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_ldl_solve_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_lu_factor_ex_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_matrix_power_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_pinv_singular_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_vander_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_log1p_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_log2_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_log2_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logcumsumexp_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logcumsumexp_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logdet_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_or_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_logspace_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logsumexp_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_logsumexp_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_long_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_long_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_long_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_lt_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_lu_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_lu_solve_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mH_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mH_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_amax_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_amin_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_argmax_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_argmin_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_argmin_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_cumprod_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_fill_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_logsumexp_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_logsumexp_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_prod_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_scatter_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_softmin_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_sum_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_sum_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_sum_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_var_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_matmul_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_binary_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_pool2d_with_indices_backward_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_list_of_tensors_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_variadic_tensors_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_mm_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_movedim_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_movedim_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_movedim_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_msort_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_msort_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_mul_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mul_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_mv_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nanmedian_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nansum_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_native_dropout_backward_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ne_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_neg_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_empty_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_full_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_full_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_ones_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_zeros_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_zeros_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_adaptive_max_pool1d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_adaptive_max_pool2d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_avg_pool2d_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_avg_pool3d_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_bilinear_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_celu_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv2d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv3d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_cosine_embedding_loss_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_feature_alpha_dropout_with_train_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_fractional_max_pool3d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_hardshrink_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_huber_loss_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_bilinear_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_nearest_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_nearest_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_trilinear_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_l1_loss_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_linear_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_local_response_norm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_logsigmoid_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_pool1d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_pool2d_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_multi_margin_loss_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_constant_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_constant_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_reflect_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_replicate_negative_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pairwise_distance_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pairwise_distance_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pixel_shuffle_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pixel_unshuffle_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_relu6_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_relu6_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_rms_norm_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_rms_norm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_rrelu_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_silu_complex_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_silu_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_soft_margin_loss_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softmin_with_dtype_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softmin_with_dtype_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softmin_with_dtype_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softsign_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_threshold_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_unfold_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nonzero_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_norm_nuc_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_permute_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_2_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_positive_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_prod_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_put_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_qr_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_qr_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_rand_like_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_randint_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_real_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_real_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_repeat_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_repeat_interleave_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_repeat_interleave_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_reshape_as_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_resize_as__cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_resolve_conj_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_resolve_neg_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_resolve_neg_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_resolve_neg_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_roll_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_round_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_rsub_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_add_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_prod_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_prod_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_sum_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_sum_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_select_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sgn_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sigmoid_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_signal_windows_bartlett_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_signal_windows_exponential_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_signal_windows_hamming_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_signal_windows_hann_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sinh_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_slice_scatter_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_softmax_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_softmax_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_softmax_with_dtype_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_j0_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_j1_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_y0_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_legendre_polynomial_p_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_log_ndtr_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_ndtr_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_ndtri_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_scaled_modified_bessel_k1_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_w_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_w_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_spherical_bessel_j0_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_xlog1py_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_zeta_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_zeta_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_with_sizes_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sqrt_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_t_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_t_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_t_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_take_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_tan_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_tan_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensordot_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensordot_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_topk_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_tril_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_tril_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_true_divide_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unbind_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_unflatten_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unflatten_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_uniform_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unique_consecutive_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unique_consecutive_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unique_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unique_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsafe_chunk_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsafe_chunk_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsafe_split_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_var_mean_unbiased_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_vdot_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_vdot_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_as_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_vsplit_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_vstack_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_vstack_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_where_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_where_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_zero__cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_zeros_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick__chunk_cat_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick__upsample_bilinear2d_aa_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick__upsample_bilinear2d_aa_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_addcdiv_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_addcmul_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_addmm_decomposed_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_alias_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_alias_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_amin_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_any_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_arange_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_arange_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_scatter_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_atanh_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_and_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_and_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_right_shift_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_cat_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_cat_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_cauchy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_clamp_min_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_complex_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_copysign_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_index_fill_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_vdot_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_cos_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_cos_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_cosh_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_cumprod_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_cumsum_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_diag_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_diag_embed_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_digamma_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_digamma_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_dot_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_dot_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_dot_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_erf_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_erfinv_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_erfinv_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_expand_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_expand_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_expand_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_expand_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_eye_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfftn_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifft_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_fft_ihfft_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_fft_ihfft_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfftn_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_fft_rfft2_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_flip_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_floor_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_floor_divide_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_fmax_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_full_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_gt_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_heaviside_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_i0_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_index_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_index_fill_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_index_select_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_isnan_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_lgamma_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_linalg_cross_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_linalg_cross_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_linalg_diagonal_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_linspace_tensor_overload_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_log1p_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_log_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_log_normal_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_log_softmax_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_logaddexp2_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_logaddexp2_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_logical_and_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_logical_not_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_logical_not_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_logical_or_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_logspace_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_logsumexp_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_minimum_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_minimum_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_minimum_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_mul_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_1_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nan_to_num_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_nan_to_num_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_narrow_copy_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_native_dropout_backward_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_new_empty_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_new_full_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_new_ones_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_nextafter_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_binary_cross_entropy_with_logits_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_hardshrink_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_hardtanh_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_mse_loss_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_relu6_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_relu6_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_relu_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_softplus_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_unfold_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_norm_nuc_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_normal_in_place_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_normal_number_mean_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_permute_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_reciprocal_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_reciprocal_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_renorm_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_renorm_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_repeat_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_rot90_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_rot90_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_round_decimals_neg_3_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_rsqrt_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_select_scatter_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_sgn_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_sin_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_slice_scatter_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_special_i0e_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_special_i1_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_special_i1e_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_special_i1e_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_special_log_ndtr_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_special_ndtr_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_special_xlog1py_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_special_xlog1py_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_stack_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_std_mean_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_std_mean_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_std_mean_unbiased_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_t_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_tan_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_tanh_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_transpose_copy_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_tril_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_unbind_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_view_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_view_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_where_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_xlogy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_zero__cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_zeros_cpu_float32 2025-08-26T21:46:08.2399014Z 2025-08-26T21:46:13.8314292Z Running test_decomp 14/17 ... [2025-08-26 21:46:13.817308] 2025-08-26T21:46:13.8315012Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:46:13.8324033Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'not serial', '--shard-id=14', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:46:13.817308] 2025-08-26T21:49:22.1023345Z 2025-08-26T21:49:22.1024430Z test_decomp 7/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_7.17_f3b5fda7469cd811_.log 2025-08-26T21:49:22.1202479Z Running 541 items in this shard: test/test_decomp.py::TestDecompCPU::test_comprehensive_T_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive___rand___cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive___rpow___cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive___rsub___cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive__unsafe_masked_index_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive__unsafe_masked_index_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive__unsafe_masked_index_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive__unsafe_masked_index_put_accumulate_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_acosh_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_acosh_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_acosh_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_addcdiv_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmv_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_addr_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_addr_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_aminmax_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_aminmax_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_aminmax_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_argwhere_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_partial_views_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_asin_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_1d_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_3d_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_bernoulli_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bfloat16_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bfloat16_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_bincount_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_right_shift_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_xor_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_block_diag_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_block_diag_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_tensors_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_tensors_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_to_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_to_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_byte_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_byte_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cauchy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cfloat_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_chalf_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_char_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_char_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_min_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_clone_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_complex_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_physical_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_constant_pad_nd_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_contiguous_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_copysign_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_copysign_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_corrcoef_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cross_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cummax_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumprod_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumsum_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumsum_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumulative_trapezoid_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumulative_trapezoid_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_embed_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_scatter_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_diff_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_diff_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_dist_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_dist_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_no_rounding_mode_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_no_rounding_mode_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_trunc_rounding_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_dot_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_double_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_double_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_dsplit_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_dstack_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_like_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_like_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_permuted_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_eq_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_erfinv_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_exp_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_eye_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fft2_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fft2_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fftn_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfft_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfftn_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfftn_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifftn_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ihfft_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfft2_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_rfft2_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_rfft_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_rfftn_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_rfftn_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fill_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_flatten_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_flatten_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_flipud_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_float_power_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_floor_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_floor_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_like_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_ge_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_geometric_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_geqrf_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_grid_sampler_2d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_grid_sampler_3d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_gt_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_hash_tensor_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_hsplit_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_hsplit_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_hstack_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_i0_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_igamma_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_imag_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_add_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_put_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_put_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_prod_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_inner_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_isfinite_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isfinite_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_isnan_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isnan_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_isnan_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_isneginf_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_isreal_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_isreal_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_item_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_2inputs_2outputs_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_return_by_ref_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_kron_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_ldexp_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_det_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_inv_ex_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_lu_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_matrix_rank_hermitian_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_multi_dot_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_norm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_solve_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_solve_triangular_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_svd_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_tensorinv_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_vecdot_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linspace_tensor_overload_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_log10_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_log1p_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_log2_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_softmax_with_dtype_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_and_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_and_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_or_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_xor_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logspace_tensor_overload_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_lt_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_mT_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_argmin_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_fill_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_fill_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_fill_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_mean_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_median_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_select_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_select_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_select_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_std_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_std_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_binary_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_maximum_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_list_of_tensors_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_variadic_tensors_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_variadic_tensors_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_reduction_no_dim_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_reduction_no_dim_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_minimum_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_movedim_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_movedim_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_movedim_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_mul_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_mul_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_1_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_5_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nansum_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_native_layer_norm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_neg_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_neg_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_full_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_zeros_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_binary_cross_entropy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_channel_shuffle_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv2d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv_transpose3d_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_dropout_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_gelu_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_hardshrink_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_hardsigmoid_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_hardtanh_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_margin_ranking_loss_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_pool2d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_pool2d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_pool2d_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_pool3d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_unpool2d_grad_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_normalize_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_circular_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_constant_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_reflect_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_replicate_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_replicate_negative_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pixel_unshuffle_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_relu6_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_rms_norm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_scaled_dot_product_attention_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_silu_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_smooth_l1_loss_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softmin_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softshrink_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softsign_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_threshold_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_triplet_margin_with_distance_loss_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_upsample_nearest_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_norm_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_norm_nuc_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_normal_in_place_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_outer_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_pca_lowrank_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_polar_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_0_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_2_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_positive_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_pow_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_rad2deg_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_randn_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_ravel_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ravel_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_ravel_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_renorm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_reshape_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_resize_as__cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_rot90_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_rot90_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_round_decimals_0_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_rsqrt_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_scalar_tensor_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_scalar_tensor_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_amax_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_prod_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_sum_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_sum_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_select_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sigmoid_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_sign_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_signal_windows_gaussian_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_signbit_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_sinc_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_sinh_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_slice_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sparse_mm_reduce_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_j0_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_j1_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_j1_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_y0_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_w_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_entr_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_erfcx_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_erfcx_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_hermite_polynomial_h_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_hermite_polynomial_h_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_hermite_polynomial_he_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i0e_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i1_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i1_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i1e_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i1e_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_i0_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_k0_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_k0_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_ndtr_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_ndtri_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_xlog1py_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_zeta_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_zeta_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_with_sizes_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_with_sizes_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sqrt_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sqrt_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_square_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_multiple_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_stack_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sub_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sub_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sub_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sum_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sum_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_take_along_dim_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_take_along_dim_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_tan_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_tanh_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensor_split_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensor_split_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensor_split_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensordot_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensordot_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensordot_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_to_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_topk_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_torch_ops_aten__safe_softmax_default_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_trace_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_trapz_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_triangular_solve_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_triu_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_trunc_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_trunc_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_unbind_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unfold_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unfold_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unfold_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unique_consecutive_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsafe_chunk_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsafe_split_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_as_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_vsplit_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_vstack_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_where_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_zero__cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_zeros_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick__chunk_cat_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick__softmax_backward_data_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick__unsafe_masked_index_put_accumulate_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick__unsafe_masked_index_put_accumulate_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_abs_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_abs_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_abs_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_add_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_addmm_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_addr_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_amax_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_aminmax_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_any_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_atan_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_atanh_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_baddbmm_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_bernoulli_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_not_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_cat_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_ceil_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_ceil_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_clamp_max_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_conj_physical_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_conj_physical_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_diag_embed_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_dot_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_logaddexp2_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_special_entr_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_t_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_cosh_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_cosh_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_count_nonzero_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_cumprod_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_cumsum_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_deg2rad_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_scatter_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_dist_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_div_trunc_rounding_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_dot_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_empty_strided_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_empty_strided_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_empty_strided_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_eq_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_eq_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_erf_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_erf_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_erf_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_exp2_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_expand_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_expand_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_exponential_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_eye_cpu_float8_e5m2fnuz, test/test_decomp.py::TestDecompCPU::test_quick_fft_fft2_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfft2_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_fft_ihfft2_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_fft_ihfftn_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfft_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfft_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_flip_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_fmin_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_fmin_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_full_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_gcd_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_geometric_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_gt_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_hypot_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_i0_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_igamma_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_igamma_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_igammac_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_index_add_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_index_add_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_index_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_index_fill_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_index_fill_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_isnan_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_isneginf_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_le_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_linalg_diagonal_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_linalg_diagonal_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_linalg_diagonal_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_linspace_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_linspace_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_linspace_tensor_overload_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_linspace_tensor_overload_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_log10_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_logical_and_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_logical_or_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_logspace_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_masked_fill_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_masked_fill_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_meshgrid_list_of_tensors_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_1_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_5_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_nan_to_num_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nan_to_num_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_narrow_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_native_batch_norm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_native_dropout_backward_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_neg_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_new_empty_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_new_zeros_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_hardshrink_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_max_unpool3d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_max_unpool3d_grad_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_mish_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_pad_constant_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_relu6_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_softshrink_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_normal_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_ones_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_ones_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_ones_like_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_permute_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_reciprocal_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_repeat_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_repeat_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_repeat_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_roll_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_roll_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_rot90_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_round_decimals_0_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_rsub_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_rsub_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_sign_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_signbit_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_sin_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_sinc_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_slice_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_slice_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_slice_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_slice_scatter_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_special_i0e_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_special_i1e_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_special_i1e_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_special_i1e_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_special_ndtr_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_special_ndtri_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_special_xlog1py_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_special_xlog1py_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_special_zeta_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_sqrt_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_multiple_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_sub_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_sub_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_sum_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_t_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_tan_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_tan_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_trace_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_transpose_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_transpose_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_unbind_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_unfold_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_unsafe_split_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_var_mean_unbiased_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_var_unbiased_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_var_unbiased_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_vdot_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_view_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_view_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_where_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_where_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_where_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_zeros_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_zeros_like_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_rnn_decomp_module_nn_RNN_train_mode_cpu_float64, test/test_decomp.py::DecompOneOffTestsCPU::test_native_layer_norm_cpu_decomp_cpu 2025-08-26T21:49:22.1350540Z 2025-08-26T21:49:27.6924473Z Running test_transformers 1/2 ... [2025-08-26 21:49:27.692158] 2025-08-26T21:49:27.6925379Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:49:27.6936409Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_transformers.py', '-m', 'not serial', '--shard-id=1', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:49:27.693364] 2025-08-26T21:50:28.6525731Z 2025-08-26T21:50:28.6527222Z test_decomp 12/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_12.17_8f8d8e46b9b24909_.log 2025-08-26T21:50:28.6751319Z Running 513 items in this shard: test/test_decomp.py::TestDecompCPU::test_comprehensive_H_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_T_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive___getitem___cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive___radd___cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive___ror___cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive___rxor___cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive__chunk_cat_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive__native_batch_norm_legit_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive__native_batch_norm_legit_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_abs_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_acos_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_addbmm_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_addbmm_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_addcmul_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmm_decomposed_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmm_decomposed_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_addr_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_alias_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_amin_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_arange_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_argmin_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_argsort_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_argwhere_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_argwhere_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_copy_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_partial_views_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_scatter_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_asinh_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_atan2_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_atan_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_atan_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_2d_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_3d_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_baddbmm_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bernoulli_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_bincount_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_and_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_block_diag_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_tensors_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_tensors_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_to_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_to_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_byte_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cartesian_prod_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cfloat_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_chalf_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_chalf_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_chunk_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_chunk_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_clone_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_column_stack_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_combinations_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_physical_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_constant_pad_nd_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_copysign_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_corrcoef_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cov_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cummax_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cummax_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumprod_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumprod_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumsum_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumsum_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_digamma_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_double_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_einsum_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_einsum_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_permuted_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_permuted_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_strided_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_strided_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_erf_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_exp_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_eye_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifft2_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifft_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ihfft_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ihfftn_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfft2_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfft_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fill_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_flip_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_flip_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_float_power_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_floor_divide_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmax_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmod_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_frexp_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_like_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_like_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_like_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_gather_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_gather_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_ge_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ge_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_geometric_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_geqrf_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_gradient_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_gt_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_gt_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_hstack_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_hypot_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_i0_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_i0_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_igamma_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_imag_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_fill_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_fill_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_amax_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_amax_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_mean_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_select_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_select_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_inner_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_int_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_int_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_isfinite_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_isfinite_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isfinite_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_isinf_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_isinf_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isnan_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_isposinf_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_item_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_item_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_4inputs_with_extra_args_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_unary_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_kron_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_le_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_cross_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_diagonal_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_eig_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_eigvals_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_inv_ex_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_matrix_norm_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_multi_dot_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_pinv_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_pinv_hermitian_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_tensorsolve_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linspace_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linspace_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linspace_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_linspace_tensor_overload_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_log10_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_log10_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_xor_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_logspace_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_logsumexp_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_amax_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_cumprod_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_cumsum_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_norm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_prod_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_prod_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_scatter_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_select_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_softmin_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_matmul_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_matmul_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_binary_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_reduction_no_dim_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_reduction_no_dim_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_mean_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_mean_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_median_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_list_of_tensors_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_binary_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_reduction_no_dim_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_msort_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mv_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mv_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mv_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_5_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nan_to_num_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nanmean_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_native_dropout_backward_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_ne_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_ne_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_full_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_zeros_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_adaptive_avg_pool1d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_adaptive_avg_pool2d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_alpha_dropout_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_alpha_dropout_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_celu_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_channel_shuffle_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv3d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv_transpose1d_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv_transpose2d_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_cosine_similarity_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_dropout2d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_dropout_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_feature_alpha_dropout_without_train_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_fractional_max_pool3d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_fractional_max_pool3d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_gaussian_nll_loss_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_hinge_embedding_loss_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_layer_norm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_leaky_relu_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_linear_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_local_response_norm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_pool1d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_pool3d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_unpool2d_grad_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_unpool3d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_nll_loss_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_normalize_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_constant_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_replicate_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pairwise_distance_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pairwise_distance_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pixel_unshuffle_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pixel_unshuffle_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_poisson_nll_loss_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_relu6_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_relu6_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_silu_complex_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softsign_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_triplet_margin_with_distance_loss_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_triplet_margin_with_distance_loss_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nonzero_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nonzero_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nonzero_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_norm_fro_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_like_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_outer_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_permute_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_0_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_3_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_4_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_pow_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_rand_like_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_ravel_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_real_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_real_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_reciprocal_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_resize_as__cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_resolve_conj_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_rot90_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_rot90_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_round_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_round_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_round_decimals_0_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_round_decimals_3_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_rsqrt_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_rsqrt_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_rsub_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_rsub_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_scalar_tensor_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_amax_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_prod_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_sum_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_select_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_sgn_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_short_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_short_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_short_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sinh_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sinh_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_slice_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_slice_scatter_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sort_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sort_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_airy_ai_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_j0_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_y1_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_u_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_v_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_v_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_w_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_erfcx_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_erfcx_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i0e_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_i0_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_i1_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_ndtr_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_scaled_modified_bessel_k0_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_scaled_modified_bessel_k0_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_u_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_v_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_v_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_w_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_w_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_xlog1py_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_with_sizes_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_square_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_square_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_stack_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_std_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_std_unbiased_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sub_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_sub_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_sum_to_size_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_tan_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_tanh_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensor_split_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensor_split_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensor_split_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_tile_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_to_sparse_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_to_sparse_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_trace_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_triu_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_true_divide_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_true_divide_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unfold_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unfold_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_uniform_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsafe_split_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_var_mean_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_as_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_vstack_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_xlogy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_zero__cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick__native_batch_norm_legit_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick__unsafe_masked_index_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick__unsafe_masked_index_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick__unsafe_masked_index_put_accumulate_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_abs_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_acos_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_acos_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_acosh_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_addcmul_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_addcmul_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_addmm_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_addmm_decomposed_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_addmv_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_addr_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_alias_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_all_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_arange_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_scatter_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_asin_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_asinh_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_atan2_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_atanh_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_and_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_not_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_or_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_block_diag_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_bucketize_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_bucketize_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_cauchy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_ceil_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_clamp_max_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_clamp_min_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_clamp_min_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_clone_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_conj_physical_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_conj_physical_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_conj_physical_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_copysign_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward__unsafe_masked_index_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward__unsafe_masked_index_put_accumulate_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_logit_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_split_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_squeeze_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_unfold_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_count_nonzero_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_cumprod_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_digamma_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_div_no_rounding_mode_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_div_no_rounding_mode_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_empty_like_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_empty_like_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_empty_strided_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_eq_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_erf_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_erfc_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_erfinv_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_exp_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_exp_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_expand_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_expm1_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_fft_fft2_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_fft_fft_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_fft_fftn_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfft2_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfftn_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfftn_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_fft_ihfft2_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_fft_ihfft2_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_fft_ihfft_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_fft_ihfft_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfft2_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfft_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_fill_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_flip_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_flip_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_floor_divide_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_fmax_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_fmod_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_frac_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_full_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_full_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_ge_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_isin_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_isinf_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_isnan_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_isneginf_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_isneginf_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_isposinf_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_lgamma_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_linalg_cross_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_log10_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_log1p_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_log_normal_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_logical_and_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_logical_not_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_logical_xor_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_logspace_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_lt_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_meshgrid_variadic_tensors_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_mv_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_nansum_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_narrow_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_narrow_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_narrow_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_native_layer_norm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_ne_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_neg_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_new_empty_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_new_empty_strided_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_new_empty_strided_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_new_full_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_new_ones_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_new_ones_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_binary_cross_entropy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_elu_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_gelu_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_hardshrink_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_max_unpool2d_grad_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_mish_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_relu6_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_relu_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_norm_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_pow_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_rad2deg_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_reciprocal_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_renorm_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_round_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_rsqrt_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_rsub_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_select_scatter_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_sgn_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_sigmoid_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_sinc_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_sinh_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_sinh_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_slice_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_special_entr_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_special_i0e_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_special_log_ndtr_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_special_ndtr_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_special_xlog1py_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_copy_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_multiple_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_multiple_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_multiple_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_sub_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_sum_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_t_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_take_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_tanh_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_trace_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_transpose_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_transpose_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_transpose_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_tril_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_tril_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_unbind_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_unfold_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_uniform_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_copy_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_var_mean_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_vdot_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_view_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_view_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_view_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_where_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_zero__cpu_uint8, test/test_decomp.py::TestDecompCPU::test_rnn_decomp_module_nn_GRU_train_mode_cpu_float32, test/test_decomp.py::TestDecompCPU::test_rnn_decomp_module_nn_GRU_train_mode_cpu_float64, test/test_decomp.py::DecompOneOffTestsCPU::test_rms_norm_decomp_cuda_cpu 2025-08-26T21:50:28.6892399Z 2025-08-26T21:50:35.4466935Z Running test_transformers 2/2 ... [2025-08-26 21:50:35.444341] 2025-08-26T21:50:35.4467768Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:50:35.4476374Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_transformers.py', '-m', 'not serial', '--shard-id=2', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:50:35.447387] 2025-08-26T21:56:20.3430569Z 2025-08-26T21:56:20.3431966Z test_decomp 14/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_14.17_0284a3de9f9ac314_.log 2025-08-26T21:56:20.3665516Z Running 520 items in this shard: test/test_decomp.py::TestDecompCPU::test_comprehensive_T_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_T_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive___radd___cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive___rdiv___cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive___rmatmul___cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive___rmatmul___cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive___rsub___cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive___rsub___cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive__chunk_cat_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive__chunk_cat_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive__segment_reduce_lengths_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive__upsample_bilinear2d_aa_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_abs_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_add_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmm_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmm_decomposed_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_amax_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_amax_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_amax_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_angle_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_any_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_arange_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_arange_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_argmin_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_argsort_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_argwhere_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_1d_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_2d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_3d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_3d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_bfloat16_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_bfloat16_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_and_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_block_diag_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_block_diag_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bmm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bool_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_bool_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_bucketize_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_bucketize_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cartesian_prod_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_ceil_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cholesky_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cholesky_solve_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_chunk_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_clone_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_clone_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_physical_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_contiguous_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cos_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cosh_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_cosh_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cosh_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_cov_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cross_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_deg2rad_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_embed_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_scatter_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_diff_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_digamma_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_dist_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_floor_rounding_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_dot_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_permuted_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_eq_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_erfinv_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_exp2_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_exp_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_exp_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_as_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_exponential_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_eye_cpu_float8_e5m2, test/test_decomp.py::TestDecompCPU::test_comprehensive_eye_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fftshift_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fftshift_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfft_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfftn_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifft2_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifft2_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifft_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifft_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifftn_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifftshift_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifftshift_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifftshift_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfftn_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfftn_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_flip_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_floor_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmin_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmod_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmod_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_like_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_gcd_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_geometric_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_gradient_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_gradient_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_grid_sampler_2d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_half_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_heaviside_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_hsplit_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_hstack_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_i0_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_copy_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_put_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_put_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_amax_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_mean_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_prod_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_select_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_isclose_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_isinf_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_isinf_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_isneginf_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_isneginf_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_isneginf_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_isreal_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isreal_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_item_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_4inputs_with_extra_args_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_return_by_ref_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_return_by_ref_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_unary_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_kthvalue_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_lcm_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_ldexp_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_ldexp_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_ldexp_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_le_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_le_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_cross_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_eigh_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_inv_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_lu_solve_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_pinv_hermitian_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_solve_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_solve_ex_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_vander_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_vector_norm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linspace_tensor_overload_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linspace_tensor_overload_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_log10_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_log1p_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_log2_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_log2_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logdet_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_and_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_and_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_long_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_long_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_long_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_lt_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_amax_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_amax_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_logaddexp_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_mean_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_normalize_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_sum_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_matmul_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_matmul_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_reduction_with_dim_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_maximum_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_maximum_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_median_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_median_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_median_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_list_of_tensors_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_binary_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_reduction_with_dim_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_reduction_with_dim_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_reduction_with_dim_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_mode_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_msort_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_mul_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mul_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_multinomial_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_1_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_5_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nan_to_num_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nanquantile_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nansum_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_copy_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_neg_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_zeros_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_adaptive_avg_pool2d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_adaptive_avg_pool3d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_batch_norm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv_transpose1d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv_transpose2d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_cosine_embedding_loss_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_cross_entropy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_dropout3d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_elu_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_embedding_bag_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_feature_alpha_dropout_without_train_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_hardtanh_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_linear_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_nearest_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_leaky_relu_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_logsigmoid_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_pool2d_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_unpool1d_grad_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_circular_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_constant_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_constant_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_replicate_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_replicate_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_replicate_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_replicate_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pixel_shuffle_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softshrink_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_tanhshrink_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_upsample_bilinear_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nonzero_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nonzero_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nonzero_static_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_norm_inf_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_norm_inf_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_norm_nuc_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_ormqr_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_outer_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_polar_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_0_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_1_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_1_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_3_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_4_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_positive_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_pow_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_put_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_put_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_qr_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_rad2deg_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_randint_like_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_randn_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_randn_like_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_randn_like_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_ravel_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_reciprocal_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_remainder_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_remainder_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_repeat_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_repeat_interleave_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_repeat_interleave_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_resize__cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_resolve_neg_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_roll_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_round_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_round_decimals_neg_3_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_rsqrt_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_rsub_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_rsub_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_rsub_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_scalar_tensor_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scalar_tensor_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_scalar_tensor_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_scalar_tensor_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_amin_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_amin_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_select_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_select_scatter_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_select_scatter_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sgn_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sign_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_signal_windows_gaussian_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_signal_windows_kaiser_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_signal_windows_kaiser_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_signbit_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sin_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_slice_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_slice_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_softmax_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_erfcx_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_hermite_polynomial_h_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i1e_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i1e_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_laguerre_polynomial_l_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_ndtr_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_polygamma_special_polygamma_n_0_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_xlog1py_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_xlog1py_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_list_args_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_with_sizes_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_square_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_stack_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_std_mean_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_std_unbiased_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sub_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sub_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sum_to_size_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_svd_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_t_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_take_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_tanh_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_tanh_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_tile_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_torch__scaled_mm_cpu_float8_e4m3fnuz, test/test_decomp.py::TestDecompCPU::test_comprehensive_torch_ops_aten__safe_softmax_default_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_trapz_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_trapz_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_tril_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unbind_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_unbind_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_unravel_index_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_as_real_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_vsplit_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_vsplit_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_vstack_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_zeros_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_zeros_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick__unsafe_masked_index_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_acos_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_acosh_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_add_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_addcmul_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_addmv_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_addr_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_alias_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_amax_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_amin_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_aminmax_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_aminmax_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_atan_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_baddbmm_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_and_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_left_shift_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_xor_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_block_diag_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_bucketize_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_cat_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_clamp_max_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_clone_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_conj_physical_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_addcmul_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_clamp_min_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_masked_fill_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_nn_functional_glu_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_nn_functional_hardshrink_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_squeeze_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_t_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_triu_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_cosh_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_cosh_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_count_nonzero_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_count_nonzero_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_cumprod_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_cumsum_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_diag_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_scatter_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_scatter_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_dist_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_div_floor_rounding_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_div_floor_rounding_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_div_floor_rounding_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_div_trunc_rounding_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_div_trunc_rounding_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_empty_like_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_empty_strided_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_empty_strided_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_eq_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_erfc_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_erfinv_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_exp_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_exp_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_expand_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_expand_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_fft_fft2_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_fft_fftn_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_fft_fftn_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfft2_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfft_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfft_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfftn_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_fft_rfft_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_fft_rfftn_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_fill_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_floor_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_floor_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_fmax_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_fmax_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_fmin_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_fmin_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_fmin_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_frac_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_ge_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_geometric_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_grid_sampler_2d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_gt_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_gt_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_gt_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_gt_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_index_add_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_index_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_index_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_isnan_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_isneginf_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_isneginf_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_isneginf_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_isposinf_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_item_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_lerp_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_linspace_tensor_overload_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_log10_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_log1p_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_log2_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_log_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_log_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_log_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_log_softmax_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_logical_and_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_logical_and_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_logical_or_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_logical_or_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_logical_xor_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_logit_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_logspace_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_logspace_tensor_overload_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_maximum_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_maximum_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_mean_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_meshgrid_list_of_tensors_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_meshgrid_variadic_tensors_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_mul_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_mv_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_1_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_1_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_5_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_nan_to_num_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_narrow_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_ne_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_new_empty_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_new_full_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_leaky_relu_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_mish_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_pad_constant_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_pad_constant_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_rrelu_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_silu_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_norm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_norm_fro_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_norm_inf_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_norm_inf_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_norm_inf_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_norm_nuc_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_ones_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_ones_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_ones_like_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_pow_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_pow_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_prod_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_rad2deg_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_rad2deg_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_rad2deg_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_randn_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_reciprocal_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_repeat_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_rot90_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_round_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_round_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_sgn_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_sinh_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_special_entr_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_special_erfcx_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_special_i1_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_special_log_ndtr_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_special_log_ndtr_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_special_ndtri_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_special_ndtri_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_split_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_split_list_args_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_sqrt_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_stack_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_stack_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_sum_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_sum_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_t_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_tan_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_trace_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_transpose_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_triu_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_trunc_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_unfold_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_unfold_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_unfold_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_unsafe_split_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_var_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_view_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_where_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_xlogy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_rnn_decomp_module_nn_LSTM_eval_mode_cpu_float64, test/test_decomp.py::TestDecompCPU::test_uniform_cpu, test/test_decomp.py::DecompOneOffTestsCPU::test_contiguous_softmax_cpu 2025-08-26T21:56:20.3896588Z 2025-08-26T21:56:27.9193218Z Running test_modules 2/2 ... [2025-08-26 21:56:27.916349] 2025-08-26T21:56:27.9193813Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T21:56:27.9203349Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_modules.py', '-m', 'not serial', '--shard-id=2', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 21:56:27.916349] 2025-08-26T22:00:00.8260604Z 2025-08-26T22:00:00.8262319Z test_transformers 1/2 was successful, full logs can be found in artifacts with path test/test-reports/test_transformers_1.2_f3a8012e22dba117_.log 2025-08-26T22:00:01.0927068Z Running 1705 items in this shard: test/test_transformers.py::TestTransformersCPU::test_bias_is_none_cpu, test/test_transformers.py::TestTransformersCPU::test_decoder_only_layer_cpu, test/test_transformers.py::TestTransformersCPU::test_encoder_padding_and_src_mask_bool_cpu, test/test_transformers.py::TestTransformersCPU::test_is_causal_gpu_cpu, test/test_transformers.py::TestTransformersCPU::test_kpm_mask_trailing_column_with_nested_tensor_cpu, test/test_transformers.py::TestTransformersCPU::test_mask_check_fastpath_cpu, test/test_transformers.py::TestTransformersCPU::test_mha_native_args_nb_heads_1_bias_False_cpu, test/test_transformers.py::TestTransformersCPU::test_mha_native_args_nb_heads_8_bias_True_cpu, test/test_transformers.py::TestTransformersCPU::test_multiheadattention_fastpath_attn_mask_attn_mask_dim2_key_padding_mask_dim1_bool_cpu, test/test_transformers.py::TestTransformersCPU::test_multiheadattention_fastpath_attn_mask_attn_mask_dim2_key_padding_mask_dim_2_float32_cpu, test/test_transformers.py::TestTransformersCPU::test_multiheadattention_fastpath_attn_mask_attn_mask_dim_2_key_padding_mask_dim_2_bool_cpu, test/test_transformers.py::TestTransformersCPU::test_multiheadattention_fastpath_attn_mask_attn_mask_dim_2_key_padding_mask_dim_2_float32_cpu, test/test_transformers.py::TestTransformersCPU::test_multiheadattention_fastpath_attn_mask_attn_mask_dim_3_key_padding_mask_dim1_bool_cpu, test/test_transformers.py::TestTransformersCPU::test_multiheadattention_fastpath_attn_mask_attn_mask_dim_3_key_padding_mask_dim1_float32_cpu, test/test_transformers.py::TestTransformersCPU::test_multiheadattention_fastpath_attn_mask_attn_mask_dim_3_key_padding_mask_dim_2_bool_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_3D_input_dim_2D_attn_mask_dropout_p_0_0_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_3D_input_dim_2D_causal_attn_mask_dropout_p_0_2_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_3D_input_dim_2D_causal_attn_mask_dropout_p_0_5_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_3D_input_dim_3D_attn_mask_dropout_p_0_5_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_3D_input_dim_3D_causal_attn_mask_dropout_p_0_0_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_3D_input_dim_3D_causal_attn_mask_dropout_p_0_5_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_3D_input_dim_no_attn_mask_dropout_p_0_0_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_3D_input_dim_no_attn_mask_dropout_p_0_5_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_4D_input_dim_2D_attn_mask_dropout_p_0_0_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_4D_input_dim_2D_attn_mask_dropout_p_0_5_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_4D_input_dim_2D_causal_attn_mask_dropout_p_0_0_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_4D_input_dim_4D_attn_mask_dropout_p_0_2_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_4D_input_dim_4D_attn_mask_dropout_p_0_5_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_4D_input_dim_4D_causal_attn_mask_dropout_p_0_5_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_4D_input_dim_no_attn_mask_dropout_p_0_2_cpu, test/test_transformers.py::TestTransformersCPU::test_script_mha_in_proj_weight_none_cpu, test/test_transformers.py::TestTransformersCPU::test_self_attn_TxT_attn_mask_cpu, test/test_transformers.py::TestTransformersCPU::test_train_with_pad_and_catch_error_cpu, test/test_transformers.py::TestTransformersCPU::test_transformer_bias_is_none_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoder_batch_first_False_training_False_enable_nested_tensor_False_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoder_batch_first_False_training_False_enable_nested_tensor_True_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoder_batch_first_False_training_True_enable_nested_tensor_False_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoder_batch_first_False_training_True_enable_nested_tensor_True_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoder_batch_first_True_training_True_enable_nested_tensor_True_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoder_fastpath_use_torchscript_False_enable_nested_tensor_False_use_autocast_False_d_model_12_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoder_fastpath_use_torchscript_False_enable_nested_tensor_False_use_autocast_False_d_model_256_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoder_fastpath_use_torchscript_False_enable_nested_tensor_False_use_autocast_True_d_model_12_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoder_fastpath_use_torchscript_False_enable_nested_tensor_False_use_autocast_True_d_model_256_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoder_fastpath_use_torchscript_False_enable_nested_tensor_True_use_autocast_False_d_model_256_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoder_square_input_with_no_grad_False_training_True_enable_nested_tensor_False_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoderlayer_src_mask_nhead_4_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoderlayer_subclass_model_cpu, test/test_transformers.py::TestTransformersCPU::test_with_nested_tensor_input_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_flash_atteention_large_bf16_nan_values_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_flash_attention_fail_with_non_square_causal_attention_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_flash_backward_failure_sm86plus_head_dim_193_dropout_p_0_0_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_flash_backward_failure_sm86plus_head_dim_256_dropout_p_0_2_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_flash_fail_fp32_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_fused_kernels_nested_broadcasting_error_cases_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_fused_kernels_nested_broadcasting_requires_grad_failure_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_fused_kernels_seq_len_0_inputs_fused_kernel0_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_invalid_fused_inputs_attn_mask_present_kernel0_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_invalid_fused_inputs_broadcast_kernel0_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_invalid_fused_inputs_dim_3_kernel0_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_invalid_fused_inputs_invalid_dtype_kernel0_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_invalid_inputs_1_dimensional_inputs_kernel1_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_invalid_inputs_1_dimensional_inputs_kernel2_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_invalid_inputs_different_datatypes_kernel1_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_invalid_inputs_different_datatypes_kernel2_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_invalid_inputs_different_devices_kernel1_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_invalid_inputs_different_devices_kernel2_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_invalid_last_dim_stride_kernel0_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_invalid_sequence_lengths_kernel0_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_mem_eff_attention_fail_with_batch_size_geq_65536_error_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_mem_efficient_fail_bfloat16_less_than_sm80_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_nested_fails_on_padding_head_dim_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_unaligned_tensors_cpu, test/test_transformers.py::TestSDPACpuOnlyCPU::test_cpu_flash_attn_nan_propagation_float16_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fully_masked_out_rows_backend0_seq_len_128_head_dim_16_float16_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fully_masked_out_rows_backend0_seq_len_128_head_dim_16_float32_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fully_masked_out_rows_backend0_seq_len_128_head_dim_32_float16_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fully_masked_out_rows_backend0_seq_len_128_head_dim_32_float32_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fully_masked_out_rows_backend0_seq_len_32_head_dim_32_float16_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fully_masked_out_rows_backend0_seq_len_32_head_dim_32_float32_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fully_masked_out_rows_backend0_seq_len_64_head_dim_16_float16_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fully_masked_out_rows_backend0_seq_len_64_head_dim_16_float32_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fully_masked_out_rows_backend0_seq_len_64_head_dim_32_float32_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fully_masked_out_rows_backend1_seq_len_128_head_dim_16_float32_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fully_masked_out_rows_backend1_seq_len_32_head_dim_16_float32_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fused_sdp_choice_cpu_type_dense_dropout_0_0_float16_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fused_sdp_choice_cpu_type_dense_dropout_0_0_float32_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fused_sdp_choice_cpu_type_dense_dropout_0_0_float64_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fused_sdp_choice_cpu_type_dense_dropout_0_7_float64_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fused_sdp_choice_cpu_type_nested_dropout_0_0_bfloat16_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fused_sdp_choice_cpu_type_nested_dropout_0_7_bfloat16_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fused_sdp_choice_cpu_type_nested_dropout_0_7_float32_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fused_sdp_choice_cpu_type_nested_dropout_0_7_float64_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_non_masked_rows_nan_props_float32_fill_val_inf_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_attention_math_with_negative_scale_kernel0_cpu, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_bfloat16_n_heads0_train_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_bfloat16_n_heads1_train_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_float16_n_heads0_train_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_float16_n_heads0_train_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_float16_n_heads1_train_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_float16_n_heads1_train_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_float16_n_heads2_train_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_float32_n_heads0_train_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_float32_n_heads2_train_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_float32_n_heads2_train_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_float32_n_heads3_train_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_float64_n_heads1_train_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestAttnBiasCPU::test_causal_variants_causal_variant_CausalVariant_LOWER_RIGHT_shape0_cpu, test/test_transformers.py::TestAttnBiasCPU::test_causal_variants_causal_variant_CausalVariant_LOWER_RIGHT_shape1_cpu, test/test_transformers.py::TestAttnBiasCPU::test_causal_variants_causal_variant_CausalVariant_LOWER_RIGHT_shape2_cpu, test/test_transformers.py::TestAttnBiasCPU::test_causal_variants_causal_variant_CausalVariant_LOWER_RIGHT_shape3_cpu, test/test_transformers.py::TestAttnBiasCPU::test_causal_variants_causal_variant_CausalVariant_UPPER_LEFT_shape1_cpu, test/test_transformers.py::TestAttnBiasCPU::test_causal_variants_compile_causal_variant_CausalVariant_LOWER_RIGHT_shape0_cpu, test/test_transformers.py::TestAttnBiasCPU::test_causal_variants_compile_causal_variant_CausalVariant_LOWER_RIGHT_shape1_cpu, test/test_transformers.py::TestAttnBiasCPU::test_causal_variants_compile_causal_variant_CausalVariant_LOWER_RIGHT_shape2_cpu, test/test_transformers.py::TestAttnBiasCPU::test_causal_variants_compile_causal_variant_CausalVariant_UPPER_LEFT_shape1_cpu, test/test_transformers.py::TestAttnBiasCPU::test_causal_variants_compile_causal_variant_CausalVariant_UPPER_LEFT_shape3_cpu, test/test_transformers.py::TestAttnBiasCPU::test_is_causal_and_mask_fails_cpu, test/test_transformers.py::TestAttnBiasCPU::test_is_causal_equals_upper_left_shape3_cpu 2025-08-26T22:00:01.3395615Z 2025-08-26T22:00:08.7610848Z Running test_appending_byte_serializer 1/1 ... [2025-08-26 22:00:08.753534] 2025-08-26T22:00:08.7611581Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:00:08.7634955Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_appending_byte_serializer.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 22:00:08.753534] 2025-08-26T22:00:15.1497557Z 2025-08-26T22:00:15.1499211Z test_appending_byte_serializer 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_appending_byte_serializer_1.1_ad4c7d433b14223f_.log 2025-08-26T22:00:15.1500274Z 2025-08-26T22:00:22.8678610Z Running test_matmul_cuda 1/1 ... [2025-08-26 22:00:22.860694] 2025-08-26T22:00:22.8679365Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:00:22.8690828Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_matmul_cuda.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 22:00:22.860694] 2025-08-26T22:00:30.2082876Z 2025-08-26T22:00:30.2083925Z test_matmul_cuda 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_matmul_cuda_1.1_280cd1bcc9382c1a_.log 2025-08-26T22:00:30.2086068Z Running 0 items in this shard: 2025-08-26T22:00:30.2086382Z 2025-08-26T22:00:38.3092973Z Running test_license 1/1 ... [2025-08-26 22:00:38.298096] 2025-08-26T22:00:38.3093727Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:00:38.3102995Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_license.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 22:00:38.298096] 2025-08-26T22:00:45.0822715Z 2025-08-26T22:00:45.0824189Z test_license 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_license_1.1_d0789e5d3c5b0b53_.log 2025-08-26T22:00:45.0828291Z Running 2 items in this shard: test/test_license.py::TestLicense::test_distinfo_license, test/test_license.py::TestLicense::test_license_for_wheel 2025-08-26T22:00:45.0829610Z 2025-08-26T22:00:52.6364689Z Running test_autoload 1/1 ... [2025-08-26 22:00:52.635812] 2025-08-26T22:00:52.6365582Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:00:52.6372208Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_autoload.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 22:00:52.635812] 2025-08-26T22:00:58.5561427Z 2025-08-26T22:00:58.5562595Z test_transformers 2/2 was successful, full logs can be found in artifacts with path test/test-reports/test_transformers_2.2_d33a20204550723d_.log 2025-08-26T22:00:58.7120820Z Running 1598 items in this shard: test/test_transformers.py::TestTransformersCPU::test_decoder_padding_and_src_mask_bool_cpu, test/test_transformers.py::TestTransformersCPU::test_disable_fastpath_cpu, test/test_transformers.py::TestTransformersCPU::test_encoder_is_causal_cpu, test/test_transformers.py::TestTransformersCPU::test_math_backend_high_precision_cpu, test/test_transformers.py::TestTransformersCPU::test_mha_native_args_nb_heads_1_bias_True_cpu, test/test_transformers.py::TestTransformersCPU::test_mha_native_args_nb_heads_8_bias_False_cpu, test/test_transformers.py::TestTransformersCPU::test_multiheadattention_fastpath_attn_mask_attn_mask_dim2_key_padding_mask_dim1_float32_cpu, test/test_transformers.py::TestTransformersCPU::test_multiheadattention_fastpath_attn_mask_attn_mask_dim2_key_padding_mask_dim_2_bool_cpu, test/test_transformers.py::TestTransformersCPU::test_multiheadattention_fastpath_attn_mask_attn_mask_dim_2_key_padding_mask_dim1_bool_cpu, test/test_transformers.py::TestTransformersCPU::test_multiheadattention_fastpath_attn_mask_attn_mask_dim_2_key_padding_mask_dim1_float32_cpu, test/test_transformers.py::TestTransformersCPU::test_multiheadattention_fastpath_attn_mask_attn_mask_dim_3_key_padding_mask_dim_2_float32_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_3D_input_dim_2D_attn_mask_dropout_p_0_2_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_3D_input_dim_2D_attn_mask_dropout_p_0_5_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_3D_input_dim_2D_causal_attn_mask_dropout_p_0_0_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_3D_input_dim_3D_attn_mask_dropout_p_0_0_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_3D_input_dim_3D_attn_mask_dropout_p_0_2_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_3D_input_dim_3D_causal_attn_mask_dropout_p_0_2_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_3D_input_dim_no_attn_mask_dropout_p_0_2_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_4D_input_dim_2D_attn_mask_dropout_p_0_2_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_4D_input_dim_2D_causal_attn_mask_dropout_p_0_2_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_4D_input_dim_2D_causal_attn_mask_dropout_p_0_5_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_4D_input_dim_4D_attn_mask_dropout_p_0_0_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_4D_input_dim_4D_causal_attn_mask_dropout_p_0_0_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_4D_input_dim_4D_causal_attn_mask_dropout_p_0_2_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_4D_input_dim_no_attn_mask_dropout_p_0_0_cpu, test/test_transformers.py::TestTransformersCPU::test_scaled_dot_product_attention_4D_input_dim_no_attn_mask_dropout_p_0_5_cpu, test/test_transformers.py::TestTransformersCPU::test_script_encoder_subclass_cpu, test/test_transformers.py::TestTransformersCPU::test_train_with_is_causal_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoder_batch_first_True_training_False_enable_nested_tensor_False_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoder_batch_first_True_training_False_enable_nested_tensor_True_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoder_batch_first_True_training_True_enable_nested_tensor_False_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoder_fastpath_use_torchscript_False_enable_nested_tensor_True_use_autocast_False_d_model_12_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoder_fastpath_use_torchscript_False_enable_nested_tensor_True_use_autocast_True_d_model_12_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoder_fastpath_use_torchscript_False_enable_nested_tensor_True_use_autocast_True_d_model_256_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoder_square_input_with_no_grad_False_training_False_enable_nested_tensor_False_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoder_square_input_with_no_grad_True_training_False_enable_nested_tensor_False_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoder_square_input_with_no_grad_True_training_True_enable_nested_tensor_False_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoderlayer_no_fastpath_with_hooks_nhead_3_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoderlayer_no_fastpath_with_hooks_nhead_4_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoderlayer_src_mask_nhead_1_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoderlayer_src_mask_nhead_8_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoderlayer_subclass_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_dispatch_fails_no_backend_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_flash_autocast_fp32_bfloat16_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_flash_autocast_fp32_float16_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_flash_backward_failure_sm86plus_head_dim_193_dropout_p_0_2_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_flash_backward_failure_sm86plus_head_dim_256_dropout_p_0_0_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_invalid_fused_inputs_head_dim_kernel0_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_invalid_inputs_1_dimensional_inputs_kernel0_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_invalid_inputs_different_datatypes_kernel0_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_invalid_inputs_different_devices_kernel0_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_invalid_sdpa_kernel_grouped_query_attention_cuda_fused_kernel0_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_mask_invalid_last_dim_stride_kernel0_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_mask_invalid_last_dim_stride_kernel1_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_mem_eff_attention_fail_with_batch_size_geq_65536_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_mem_eff_attention_large_seq_len_uniform_attention_cpu, test/test_transformers.py::TestSDPACPU::test_scaled_dot_product_attention_math_with_negative_scale_kernel0_cpu, test/test_transformers.py::TestSDPACPU::test_sdp_math_gradcheck_contiguous_inputs_False_cpu, test/test_transformers.py::TestSDPACPU::test_sdp_math_gradcheck_contiguous_inputs_True_cpu, test/test_transformers.py::TestSDPACpuOnlyCPU::test_cpu_flash_attn_nan_propagation_float32_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fully_masked_out_rows_backend0_seq_len_32_head_dim_16_float16_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fully_masked_out_rows_backend0_seq_len_32_head_dim_16_float32_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fully_masked_out_rows_backend0_seq_len_64_head_dim_32_float16_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fully_masked_out_rows_backend1_seq_len_128_head_dim_16_float16_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fully_masked_out_rows_backend1_seq_len_128_head_dim_32_float16_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fully_masked_out_rows_backend1_seq_len_128_head_dim_32_float32_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fully_masked_out_rows_backend1_seq_len_32_head_dim_16_float16_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fully_masked_out_rows_backend1_seq_len_32_head_dim_32_float16_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fully_masked_out_rows_backend1_seq_len_32_head_dim_32_float32_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fully_masked_out_rows_backend1_seq_len_64_head_dim_16_float16_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fully_masked_out_rows_backend1_seq_len_64_head_dim_16_float32_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fully_masked_out_rows_backend1_seq_len_64_head_dim_32_float16_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fully_masked_out_rows_backend1_seq_len_64_head_dim_32_float32_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fused_sdp_choice_cpu_type_dense_dropout_0_0_bfloat16_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fused_sdp_choice_cpu_type_dense_dropout_0_7_bfloat16_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fused_sdp_choice_cpu_type_dense_dropout_0_7_float16_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fused_sdp_choice_cpu_type_dense_dropout_0_7_float32_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fused_sdp_choice_cpu_type_nested_dropout_0_0_float16_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fused_sdp_choice_cpu_type_nested_dropout_0_0_float32_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fused_sdp_choice_cpu_type_nested_dropout_0_0_float64_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_fused_sdp_choice_cpu_type_nested_dropout_0_7_float16_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_non_masked_rows_nan_props_float16_fill_val_inf_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_bfloat16_n_heads0_train_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_bfloat16_n_heads1_train_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_bfloat16_n_heads2_train_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_bfloat16_n_heads2_train_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_bfloat16_n_heads3_train_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_bfloat16_n_heads3_train_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_float16_n_heads2_train_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_float16_n_heads3_train_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_float16_n_heads3_train_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_float32_n_heads0_train_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_float32_n_heads1_train_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_float32_n_heads1_train_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_float32_n_heads3_train_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_float64_n_heads0_train_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_float64_n_heads0_train_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_float64_n_heads1_train_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_float64_n_heads2_train_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_float64_n_heads2_train_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_float64_n_heads3_train_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_gqa_vs_math_cpu_fused_kernel0_float64_n_heads3_train_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_bfloat16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_bfloat16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float16_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float16, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float32_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float32, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_12_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_1030_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_11_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_17_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_1_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_2_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_False_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_False_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_False_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_False_casual_False_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_False_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_scaled_dot_product_fused_attention_mask_vs_math_cpu_fused_kernel0_float64_batch_size_2_q_seq_len_514_kv_seq_len_514_n_head_3_head_dim_8_mask_dim_4_bool_mask_True_train_True_casual_True_set_attn_mask_True_cpu_float64, test/test_transformers.py::TestSDPACpuOnlyCPU::test_sdpa_backward_with_gradient_cpu, test/test_transformers.py::TestSDPACpuOnlyCPU::test_sdpa_with_inf_cpu, test/test_transformers.py::TestAttnBiasCPU::test_causal_variants_causal_variant_CausalVariant_UPPER_LEFT_shape0_cpu, test/test_transformers.py::TestAttnBiasCPU::test_causal_variants_causal_variant_CausalVariant_UPPER_LEFT_shape2_cpu, test/test_transformers.py::TestAttnBiasCPU::test_causal_variants_causal_variant_CausalVariant_UPPER_LEFT_shape3_cpu, test/test_transformers.py::TestAttnBiasCPU::test_causal_variants_compile_causal_variant_CausalVariant_LOWER_RIGHT_shape3_cpu, test/test_transformers.py::TestAttnBiasCPU::test_causal_variants_compile_causal_variant_CausalVariant_UPPER_LEFT_shape0_cpu, test/test_transformers.py::TestAttnBiasCPU::test_causal_variants_compile_causal_variant_CausalVariant_UPPER_LEFT_shape2_cpu, test/test_transformers.py::TestAttnBiasCPU::test_is_causal_equals_upper_left_shape0_cpu, test/test_transformers.py::TestAttnBiasCPU::test_is_causal_equals_upper_left_shape1_cpu, test/test_transformers.py::TestAttnBiasCPU::test_is_causal_equals_upper_left_shape2_cpu 2025-08-26T22:00:58.8485323Z 2025-08-26T22:00:58.8485335Z 2025-08-26T22:00:58.8485835Z test_autoload 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_autoload_1.1_a9c303b98ce592da_.log 2025-08-26T22:00:58.8486755Z Running 1 items in this shard: test/test_autoload.py::TestDeviceBackendAutoload::test_autoload 2025-08-26T22:00:58.8487164Z 2025-08-26T22:01:03.7843198Z Running functorch/test_dims 1/1 ... [2025-08-26 22:01:03.783744] 2025-08-26T22:01:03.7843755Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:01:03.7852191Z 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-26 22:01:03.784933] 2025-08-26T22:01:03.8353306Z Running test_rename_privateuse1_to_existing_device 1/1 ... [2025-08-26 22:01:03.834903] 2025-08-26T22:01:03.8353894Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:01:03.8360009Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_rename_privateuse1_to_existing_device.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 22:01:03.835506] 2025-08-26T22:01:08.5359537Z 2025-08-26T22:01:08.5360595Z test_rename_privateuse1_to_existing_device 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_rename_privateuse1_to_existing_device_1.1_c8504ec0fb5867ba_.log 2025-08-26T22:01:08.5362049Z Running 1 items in this shard: test/test_rename_privateuse1_to_existing_device.py::TestRenamePrivateuseoneToExistingBackend::test_external_module_register_with_existing_backend 2025-08-26T22:01:08.5362835Z 2025-08-26T22:01:13.8144504Z Running torch_np/test_binary_ufuncs 1/1 ... [2025-08-26 22:01:13.813998] 2025-08-26T22:01:13.8145199Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:01:13.8151504Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/test_binary_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-26 22:01:13.813998] 2025-08-26T22:01:19.0476053Z 2025-08-26T22:01:19.0477155Z torch_np/test_binary_ufuncs 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.test_binary_ufuncs_1.1_761a6e29ff1390b5_.log 2025-08-26T22:01:19.0489098Z Running 38 items in this shard: test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_add, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_arctan2, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_bitwise_and, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_bitwise_or, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_bitwise_xor, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_copysign, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_divide, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_equal, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_float_power, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_floor_divide, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_fmax, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_fmin, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_fmod, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_gcd, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_greater, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_greater_equal, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_heaviside, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_hypot, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_lcm, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_ldexp, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_left_shift, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_less, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_less_equal, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_logaddexp, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_logaddexp2, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_logical_and, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_logical_or, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_logical_xor, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_matmul, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_maximum, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_minimum, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_multiply, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_nextafter, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_not_equal, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_power, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_remainder, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_right_shift, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_subtract 2025-08-26T22:01:19.0500988Z 2025-08-26T22:01:24.2265036Z Running typing/test_python_operators 1/1 ... [2025-08-26 22:01:24.226349] 2025-08-26T22:01:24.2265572Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:01:24.2271610Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'typing/test_python_operators.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 22:01:24.227003] 2025-08-26T22:01:30.5405302Z 2025-08-26T22:01:30.5406729Z typing/test_python_operators 1/1 was successful, full logs can be found in artifacts with path test/test-reports/typing.test_python_operators_1.1_a39e5bd1bd3614fb_.log 2025-08-26T22:01:30.5508243Z Running 318 items in this shard: test/typing/test_python_operators.py::TestPythonOperators::test_binary_a100_op_%_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a101_op_%_b101, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a102_op_%_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a103_op_%_b103, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a104_op_*_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a105_op_*_b105, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a106_op_*_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a107_op_*_b107, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a108_op_**_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a109_op_**_b109, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a110_op_**_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a111_op_**_b111, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a112_op_+_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a113_op_+_b113, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a114_op_+_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a115_op_+_b115, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a116_op_-_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a117_op_-_b117, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a118_op_-_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a119_op_-_b119, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a120_op_/_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a121_op_/_b121, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a122_op_/_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a123_op_/_b123, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a124_op_//_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a125_op_//_b125, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a126_op_//_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a127_op_//_b127, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a128_op_&_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a129_op_&_b129, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a130_op_&_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a131_op_&_b131, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a132_op_<<_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a133_op_<<_b133, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a134_op_<<_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a135_op_<<_b135, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a136_op_>>_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a137_op_>>_b137, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a138_op_>>_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a139_op_>>_b139, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a140_op_^_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a141_op_^_b141, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a142_op_^_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a143_op_^_b143, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a144_op_|_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a145_op_|_b145, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a146_op_|_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a147_op_|_b147, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a148_op_@_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a149_op_@_b149, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a150_op_@_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a151_op_@_b151, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a228_op_!=_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a229_op_!=_b229, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a230_op_!=_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a231_op_!=_b231, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a232_op_<_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a233_op_<_b233, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a234_op_<_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a235_op_<_b235, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a236_op_<=_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a237_op_<=_b237, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a238_op_<=_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a239_op_<=_b239, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a240_op_==_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a241_op_==_b241, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a242_op_==_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a243_op_==_b243, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a244_op_>_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a245_op_>_b245, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a246_op_>_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a247_op_>_b247, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a248_op_>=_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a249_op_>=_b249, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a250_op_>=_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a251_op_>=_b251, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a252_op_%_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a253_op_%_b253, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a254_op_%_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a255_op_%_b255, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a256_op_*_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a257_op_*_b257, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a258_op_*_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a259_op_*_b259, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a260_op_**_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a261_op_**_b261, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a262_op_**_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a263_op_**_b263, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a264_op_+_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a265_op_+_b265, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a266_op_+_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a267_op_+_b267, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a268_op_-_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a269_op_-_b269, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a270_op_-_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a271_op_-_b271, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a272_op_/_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a273_op_/_b273, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a274_op_/_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a275_op_/_b275, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a276_op_//_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a277_op_//_b277, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a278_op_//_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a279_op_//_b279, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a280_op_&_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a281_op_&_b281, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a282_op_&_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a283_op_&_b283, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a284_op_<<_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a285_op_<<_b285, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a286_op_<<_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a287_op_<<_b287, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a288_op_>>_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a289_op_>>_b289, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a290_op_>>_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a291_op_>>_b291, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a292_op_^_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a293_op_^_b293, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a294_op_^_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a295_op_^_b295, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a296_op_|_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a297_op_|_b297, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a298_op_|_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a299_op_|_b299, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a300_op_@_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a301_op_@_b301, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a302_op_@_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a303_op_@_b303, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a76_op_!=_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a77_op_!=_b77, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a78_op_!=_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a79_op_!=_b79, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a80_op_<_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a81_op_<_b81, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a82_op_<_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a83_op_<_b83, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a84_op_<=_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a85_op_<=_b85, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a86_op_<=_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a87_op_<=_b87, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a88_op_==_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a89_op_==_b89, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a90_op_==_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a91_op_==_b91, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a92_op_>_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a93_op_>_b93, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a94_op_>_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a95_op_>_b95, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a96_op_>=_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a97_op_>=_b97, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a98_op_>=_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a99_op_>=_b99, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_!=_b1, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_!=_b3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_!=_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_!=_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_%_b25, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_%_b27, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_%_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_%_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_&_b53, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_&_b55, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_&_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_&_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_**_b33, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_**_b35, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_**_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_**_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_*_b29, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_*_b31, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_*_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_*_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_+_b37, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_+_b39, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_+_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_+_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_-_b41, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_-_b43, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_-_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_-_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_//_b49, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_//_b51, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_//_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_//_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_/_b45, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_/_b47, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_/_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_/_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_<<_b57, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_<<_b59, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_<<_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_<<_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_<=_b11, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_<=_b9, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_<=_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_<=_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_<_b5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_<_b7, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_<_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_<_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_==_b13, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_==_b15, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_==_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_==_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_>=_b21, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_>=_b23, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_>=_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_>=_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_>>_b61, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_>>_b63, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_>>_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_>>_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_>_b17, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_>_b19, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_>_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_>_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_@_b73, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_@_b75, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_@_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_@_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_^_b65, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_^_b67, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_^_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_^_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_|_b69, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_|_b71, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_|_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_|_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_!=_b153, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_!=_b155, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_!=_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_!=_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_%_b177, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_%_b179, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_%_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_%_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_&_b205, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_&_b207, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_&_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_&_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_**_b185, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_**_b187, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_**_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_**_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_*_b181, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_*_b183, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_*_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_*_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_+_b189, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_+_b191, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_+_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_+_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_-_b193, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_-_b195, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_-_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_-_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_//_b201, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_//_b203, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_//_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_//_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_/_b197, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_/_b199, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_/_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_/_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_<<_b209, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_<<_b211, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_<<_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_<<_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_<=_b161, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_<=_b163, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_<=_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_<=_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_<_b157, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_<_b159, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_<_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_<_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_==_b165, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_==_b167, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_==_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_==_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_>=_b173, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_>=_b175, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_>=_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_>=_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_>>_b213, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_>>_b215, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_>>_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_>>_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_>_b169, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_>_b171, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_>_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_>_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_@_b225, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_@_b227, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_@_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_@_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_^_b217, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_^_b219, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_^_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_^_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_|_b221, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_|_b223, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_|_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_|_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_operators_are_correct_and_complete, test/typing/test_python_operators.py::TestPythonOperators::test_type_tests_are_complete, test/typing/test_python_operators.py::TestPythonOperators::test_unary_op_+_a1, test/typing/test_python_operators.py::TestPythonOperators::test_unary_op_+_a3, test/typing/test_python_operators.py::TestPythonOperators::test_unary_op_+_a_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_unary_op_+_a_3, test/typing/test_python_operators.py::TestPythonOperators::test_unary_op_-_a5, test/typing/test_python_operators.py::TestPythonOperators::test_unary_op_-_a7, test/typing/test_python_operators.py::TestPythonOperators::test_unary_op_-_a_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_unary_op_-_a_3, test/typing/test_python_operators.py::TestPythonOperators::test_unary_op_~_a11, test/typing/test_python_operators.py::TestPythonOperators::test_unary_op_~_a9, test/typing/test_python_operators.py::TestPythonOperators::test_unary_op_~_a_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_unary_op_~_a_3 2025-08-26T22:01:30.5607102Z 2025-08-26T22:01:35.6536312Z Running torch_np/test_unary_ufuncs 1/1 ... [2025-08-26 22:01:35.653447] 2025-08-26T22:01:35.6536896Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:01:35.6544643Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/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-26 22:01:35.654254] 2025-08-26T22:01:40.7104796Z 2025-08-26T22:01:40.7105804Z torch_np/test_unary_ufuncs 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.test_unary_ufuncs_1.1_76c093950b9720be_.log 2025-08-26T22:01:40.7116870Z Running 42 items in this shard: test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_absolute, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_arccos, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_arccosh, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_arcsin, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_arcsinh, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_arctan, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_arctanh, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_cbrt, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_ceil, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_conjugate, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_cos, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_cosh, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_deg2rad, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_degrees, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_exp, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_exp2, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_expm1, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_fabs, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_floor, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_isfinite, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_isinf, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_isnan, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_log, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_log10, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_log1p, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_log2, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_logical_not, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_negative, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_positive, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_rad2deg, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_radians, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_reciprocal, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_rint, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_sign, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_signbit, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_sin, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_sinh, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_sqrt, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_square, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_tan, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_tanh, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_trunc 2025-08-26T22:01:40.7127337Z 2025-08-26T22:01:45.9721355Z Running test_proxy_tensor 1/2 ... [2025-08-26 22:01:45.971299] 2025-08-26T22:01:45.9721797Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:01:45.9727670Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_proxy_tensor.py', '-m', 'not serial', '--shard-id=1', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 22:01:45.971299] 2025-08-26T22:01:56.2925856Z 2025-08-26T22:01:56.2926795Z functorch/test_dims 1/1 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_dims_1.1_8e0ff5a567061373_.log 2025-08-26T22:01:56.2943994Z 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-26T22:01:56.2959572Z 2025-08-26T22:02:01.4184115Z Running functorch/test_ops 3/8 ... [2025-08-26 22:02:01.418189] 2025-08-26T22:02:01.4184674Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:02:01.4190994Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_ops.py', '-m', 'not serial', '--shard-id=3', '--num-shards=8', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 22:02:01.418480] 2025-08-26T22:06:13.3829430Z 2025-08-26T22:06:13.3830293Z test_modules 2/2 was successful, full logs can be found in artifacts with path test/test-reports/test_modules_2.2_846508995d10b0eb_.log 2025-08-26T22:06:13.4429005Z Running 1805 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_Hardswish_cpu_float32, 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_Mish_cpu_float64, test/test_modules.py::TestModuleCPU::test_check_inplace_nn_ReLU6_cpu_float32, test/test_modules.py::TestModuleCPU::test_check_inplace_nn_SELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_check_inplace_nn_SiLU_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_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_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_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_BCEWithLogitsLoss_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_BatchNorm2d_eval_mode_cpu_float32, 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_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_CTCLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_CircularPad2d_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_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_Conv1d_cpu_float32, 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_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_complex64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ConvTranspose1d_cpu_float32, 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_ConvTranspose3d_cpu_complex128, 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_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_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_float64, 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_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_GaussianNLLLoss_cpu_float64, 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_float64, 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_Hardtanh_cpu_float64, 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_float64, 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_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_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_KLDivLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_LPPool2d_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_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_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_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_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_LogSigmoid_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_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_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_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_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_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_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_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_float64, 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_SiLU_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_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Softmax2d_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_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_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_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_Transformer_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_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_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_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_float64, 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_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_BatchNorm1d_eval_mode_cpu_float64, 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_CELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_CTCLoss_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_CircularPad3d_cpu_float64, 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_ConstantPad3d_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_Conv3d_cpu_float64, 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_float64, 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_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_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_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_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_FractionalMaxPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_GELU_cpu_float32, 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_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_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_Hardshrink_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Hardswish_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_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_KLDivLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_L1Loss_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_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_LazyConv2d_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_LazyConvTranspose2d_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_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_LogSoftmax_cpu_float32, 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_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_MultiMarginLoss_cpu_float64, 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_PoissonNLLLoss_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_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_ReLU6_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_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ReflectionPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ReplicationPad1d_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_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_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_SoftMarginLoss_cpu_float32, 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_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_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Tanhshrink_cpu_float32, 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_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_float64, 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_ZeroPad1d_cpu_float32, 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_float64, 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_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_float64, test/test_modules.py::TestModuleCPU::test_errors_nn_LSTM_eval_mode_cpu_float32, 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_RNN_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_errors_nn_RNN_eval_mode_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_float64, 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_AvgPool1d_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_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_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_BatchNorm1d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_BatchNorm2d_eval_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_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_CELU_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_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ConstantPad3d_cpu_float32, 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_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_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ConvTranspose2d_cpu_complex32, 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_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_CrossEntropyLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Embedding_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_GRU_eval_mode_cpu_float32, 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_float64, 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_Hardtanh_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_HingeEmbeddingLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_InstanceNorm1d_eval_mode_cpu_float32, 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_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_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_KLDivLoss_cpu_float32, 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_LPPool2d_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_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_LazyConv2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_LazyConvTranspose1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_LazyConvTranspose2d_cpu_float32, 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_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Linear_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_MSELoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_MarginRankingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_MaxPool2d_cpu_float64, 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_MultiLabelSoftMarginLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_MultiheadAttention_eval_mode_cpu_float32, 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_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_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_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_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ReLU_cpu_float64, 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_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_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_SiLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Sigmoid_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_SoftMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Softmax2d_cpu_float64, 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_Softshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Softsign_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Tanh_cpu_float64, 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_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_Transformer_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Transformer_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ZeroPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ZeroPad3d_cpu_float64, 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_AdaptiveMaxPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_AdaptiveMaxPool2d_cpu_float64, 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_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_train_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_BatchNorm3d_eval_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_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_CTCLoss_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_CircularPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_ConstantPad1d_cpu_float32, 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_Conv1d_cpu_float64, 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_ConvTranspose1d_cpu_complex32, test/test_modules.py::TestModuleCPU::test_forward_nn_ConvTranspose1d_cpu_float32, 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_float32, 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_CrossEntropyLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_ELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_FractionalMaxPool2d_cpu_float32, 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_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_GroupNorm_cpu_bfloat16, test/test_modules.py::TestModuleCPU::test_forward_nn_GroupNorm_cpu_float16, 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_InstanceNorm1d_train_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_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_KLDivLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_L1Loss_cpu_float64, 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_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_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_LazyConv1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_LazyConv2d_cpu_float32, 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_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_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_LogSoftmax_cpu_float32, 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_MaxPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_MaxPool2d_cpu_float32, 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_MultiheadAttention_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_MultiheadAttention_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_NLLLoss_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_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_RNNCell_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_RNN_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_RNN_train_mode_cpu_float32, 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_ReflectionPad2d_cpu_float32, 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_float64, 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_Sigmoid_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_Sigmoid_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_SmoothL1Loss_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_Softmax2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_Softmax_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_float64, 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_Threshold_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_TransformerDecoderLayer_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_TransformerEncoderLayer_train_mode_cpu_float32, 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_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_Transformer_cpu_float64, 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_ZeroPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_grad_nn_AdaptiveAvgPool1d_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_AvgPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_BCEWithLogitsLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_BatchNorm2d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_CELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_ConstantPad2d_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_CrossEntropyLoss_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_GLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_GRU_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_GroupNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_Hardtanh_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_HuberLoss_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_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_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_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_MaxPool1d_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_NLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_PReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_RMSNorm_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_ReplicationPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_ReplicationPad3d_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_Softmin_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_Softplus_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_Softsign_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_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_AdaptiveMaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_AvgPool2d_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_Bilinear_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_CELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_CircularPad3d_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_ConvTranspose2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_CosineEmbeddingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_Embedding_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_FractionalMaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_GRUCell_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_HuberLoss_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_InstanceNorm3d_eval_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_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_LazyConv3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_LazyConvTranspose1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_LogSoftmax_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_MultiLabelSoftMarginLoss_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_PoissonNLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_RMSNorm_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_ReflectionPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_ReflectionPad2d_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_SELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_SiLU_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_Softmin_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_Softplus_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_Tanhshrink_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_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_ZeroPad1d_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_AdaptiveAvgPool2d_cpu_float64, 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_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_AvgPool2d_cpu_float32, 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_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_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_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_float64, 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_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_float64, 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_ConvTranspose2d_cpu_complex32, 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_ELU_cpu_float32, 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_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_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_Hardtanh_cpu_float32, 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_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_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_LPPool3d_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_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_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_LazyConvTranspose2d_cpu_float32, 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_Linear_cpu_float64, 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_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_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_Mish_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_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_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_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_ReplicationPad2d_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_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_float64, 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_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_Threshold_cpu_float64, 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_float64, 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_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_AdaptiveAvgPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_AdaptiveAvgPool2d_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_AdaptiveMaxPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_AdaptiveMaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_AvgPool2d_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_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_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_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_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_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_float64, 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_complex64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ConvTranspose3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_CosineEmbeddingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Embedding_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_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_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_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Hardshrink_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Hardswish_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_train_mode_cpu_float32, 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_LPPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LPPool2d_cpu_float32, 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_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_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_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LazyConvTranspose2d_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_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LocalResponseNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LogSigmoid_cpu_float64, 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_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_MaxPool1d_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_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_MultiLabelSoftMarginLoss_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_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_PReLU_cpu_float64, 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_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_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_float64, 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_float64, 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_SmoothL1Loss_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_SoftMarginLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Softmax2d_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_Softshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Softsign_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Tanh_cpu_float64, 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_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_train_mode_cpu_float64, 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_Transformer_cpu_float32, 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_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_AdaptiveAvgPool1d_cpu_float32, 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_AdaptiveMaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_AvgPool1d_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_BatchNorm1d_train_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_BatchNorm3d_eval_mode_cpu_float32, 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_CELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_CTCLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_CircularPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_CircularPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ConstantPad1d_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_Conv3d_cpu_float64, 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_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ConvTranspose3d_cpu_complex32, 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_float64, 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_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_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_GaussianNLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_GroupNorm_cpu_float16, 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_HuberLoss_cpu_float32, 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_InstanceNorm3d_eval_mode_cpu_float32, 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_KLDivLoss_cpu_float32, 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_LSTMCell_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_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_LazyConv2d_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_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_LogSoftmax_cpu_float32, 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_MaxPool1d_cpu_float32, 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_MultiLabelSoftMarginLoss_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_NLLLoss_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_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_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_ReplicationPad1d_cpu_float32, 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_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_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_Softmax_cpu_float32, 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_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_float64, 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_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_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_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_ZeroPad3d_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_AdaptiveMaxPool1d_cpu_float32, 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_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_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_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_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_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_CircularPad1d_cpu_float32, 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_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_Conv1d_cpu_float32, 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_ConvTranspose1d_cpu_complex128, 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_complex64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_CosineEmbeddingLoss_cpu_float32, 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_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_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_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_GaussianNLLLoss_cpu_float32, 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_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Hardshrink_cpu_float32, 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_float64, 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_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_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_L1Loss_cpu_float32, 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_float64, 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_LSTM_eval_mode_cpu_float64, 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_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_LazyConvTranspose1d_cpu_float32, 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_LeakyReLU_cpu_float64, 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_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_MSELoss_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_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_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_MultiLabelSoftMarginLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_MultiMarginLoss_cpu_float32, 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_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_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_RNNCell_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_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_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ReflectionPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ReplicationPad1d_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_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_float64, 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_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_float64, 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_float64, 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_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_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_ZeroPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_AdaptiveAvgPool2d_cpu_float32, 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_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_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_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_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_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_float64, 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_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_Conv1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_Conv2d_cpu_float32, 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_float64, 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_ConvTranspose3d_cpu_complex128, 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_CrossEntropyLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_Embedding_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_FractionalMaxPool2d_cpu_float64, 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_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_GaussianNLLLoss_cpu_float64, 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_Hardswish_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_HingeEmbeddingLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_HuberLoss_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_InstanceNorm3d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_InstanceNorm3d_train_mode_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_LPPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_LPPool3d_cpu_float32, 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_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_LazyConv1d_cpu_float64, 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_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_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_MSELoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_MarginRankingLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_MaxPool1d_cpu_float64, 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_MultiheadAttention_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_NLLLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_PReLU_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_float64, 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_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_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_ReplicationPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_ReplicationPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_Sigmoid_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_SmoothL1Loss_cpu_float32, 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_Softmin_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_Softmin_cpu_float64, 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_Softsign_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_Tanh_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_Tanhshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_Threshold_cpu_float64, 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_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_Transformer_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_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_AdaptiveMaxPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_AdaptiveMaxPool3d_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_AvgPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_AvgPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_BCEWithLogitsLoss_cpu_float32, 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_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_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_CELU_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_ConstantPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_ConstantPad3d_cpu_float32, 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_complex32, test/test_modules.py::TestModuleCPU::test_save_load_nn_ConvTranspose1d_cpu_float64, 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_float64, 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_ELU_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_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_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_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_HingeEmbeddingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_HuberLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_InstanceNorm1d_eval_mode_cpu_float32, 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_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_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_LPPool1d_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_float64, 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_train_mode_cpu_float32, 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_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_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_LazyConvTranspose3d_cpu_float32, 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_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_MSELoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_MaxPool2d_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_MultiMarginLoss_cpu_float32, 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_float64, 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_RMSNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_RNNCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_ReLU6_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_ReflectionPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_ReflectionPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_ReflectionPad3d_cpu_float32, 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_Sigmoid_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_Softmax2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_Softmin_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_Softsign_cpu_float32, 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_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_TransformerEncoderLayer_eval_mode_cpu_float64, 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_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_ZeroPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_ZeroPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_to_empty_nn_AdaptiveAvgPool2d_swap_False_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_AvgPool1d_swap_True_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_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_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_train_mode_swap_False_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_CircularPad1d_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_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_CosineEmbeddingLoss_swap_False_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_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_True_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_GLU_swap_True_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_Hardtanh_swap_False_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_InstanceNorm1d_eval_mode_swap_False_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_InstanceNorm3d_eval_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_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_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_LSTMCell_swap_True_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_True_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_LogSigmoid_swap_False_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_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_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_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_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_PReLU_swap_False_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_True_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_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_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_ReplicationPad1d_swap_True_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_True_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_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_Softmax_swap_True_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_Softshrink_swap_True_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_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_TransformerDecoderLayer_swap_True_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_TransformerEncoder_train_mode_swap_False_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_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_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_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_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_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_True_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_True_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_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_train_mode_swap_False_set_grad_False_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_BatchNorm3d_eval_mode_swap_True_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_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_CELU_swap_False_set_grad_True_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_CircularPad1d_swap_False_set_grad_False_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_ConstantPad1d_swap_False_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_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_True_set_grad_True_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_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_ConvTranspose1d_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_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_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_True_set_grad_False_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_True_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_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_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_True_set_grad_True_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_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_True_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_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_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_Hardtanh_swap_False_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_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_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_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_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_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_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_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_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_True_set_grad_False_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_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_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_LayerNorm_swap_False_set_grad_False_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_LeakyReLU_swap_False_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_True_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_LogSoftmax_swap_False_set_grad_False_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_MarginRankingLoss_swap_False_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_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_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_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_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_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_True_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_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_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_True_set_grad_False_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_True_set_grad_False_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_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_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_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_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_ReflectionPad1d_swap_False_set_grad_False_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_True_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_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_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_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_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_SiLU_swap_False_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_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_True_set_grad_False_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_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_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_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_True_set_grad_False_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_True_set_grad_False_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_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_TransformerEncoderLayer_eval_mode_swap_False_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_TransformerEncoder_eval_mode_swap_False_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_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_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_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_ZeroPad3d_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ZeroPad3d_swap_True_set_grad_False_cpu_float32 2025-08-26T22:06:13.4998571Z 2025-08-26T22:06:18.5265146Z Running functorch/test_ops 4/8 ... [2025-08-26 22:06:18.525997] 2025-08-26T22:06:18.5265879Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:06:18.5273246Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_ops.py', '-m', 'not serial', '--shard-id=4', '--num-shards=8', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 22:06:18.527146] 2025-08-26T22:10:37.8270805Z 2025-08-26T22:10:37.8272054Z test_proxy_tensor 1/2 was successful, full logs can be found in artifacts with path test/test-reports/test_proxy_tensor_1.2_2d0b8338f722e9f6_.log 2025-08-26T22:10:37.9676391Z Running 1784 items in this shard: test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_allclose, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_amp_cache, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_constant_proxy_tensor_mut, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_constant_random, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_constant_unbind, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_decomp_of_capture, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_isolated_graphmodule, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_make_fx_model_double_param, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_make_fx_model_fwd_bwd_wgtupdate, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_make_fx_overloads, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_make_fx_reentrant_dispatch, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_make_fx_simple, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_partial_decomp, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_pre_dispatch_functionalization_view_op, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_pre_dispatch_mode_stack, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_resnet18_backward_trace, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_scalar_device, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_strides, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_tensor_constants, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_trace_subclasses, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_varargs, test/test_proxy_tensor.py::TestGenericProxyTensorFake::test_allclose, test/test_proxy_tensor.py::TestGenericProxyTensorFake::test_constant_blowup, test/test_proxy_tensor.py::TestGenericProxyTensorFake::test_constant_unbind, test/test_proxy_tensor.py::TestGenericProxyTensorFake::test_empty_like_doesnt_burn_in_defaults, test/test_proxy_tensor.py::TestGenericProxyTensorFake::test_isolated_graphmodule, test/test_proxy_tensor.py::TestGenericProxyTensorFake::test_make_fx_model_fwd_bwd, test/test_proxy_tensor.py::TestGenericProxyTensorFake::test_make_fx_model_fwd_bwd_wgtupdate, test/test_proxy_tensor.py::TestGenericProxyTensorFake::test_partial_decomp, test/test_proxy_tensor.py::TestGenericProxyTensorFake::test_pr_86917, test/test_proxy_tensor.py::TestGenericProxyTensorFake::test_pre_dispatch_functionalization_view_op, test/test_proxy_tensor.py::TestGenericProxyTensorFake::test_pre_dispatch_no_grad, test/test_proxy_tensor.py::TestGenericProxyTensorFake::test_proxy_tensor_mode_with_decomp_table_preserves_proxy, test/test_proxy_tensor.py::TestGenericProxyTensorFake::test_resnet18_backward_trace, test/test_proxy_tensor.py::TestGenericProxyTensorFake::test_scalar_device, test/test_proxy_tensor.py::TestGenericProxyTensorFake::test_val_metadata_mutation, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_amp_cache, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_constant_proxy_tensor_mut, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_constant_random, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_constant_unbind, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_decomp_of_capture, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_decomposition_interpreter, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_empty_like_doesnt_burn_in_defaults, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_make_fx_model_fwd_bwd_wgtupdate, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_make_fx_overloads, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_make_fx_reentrant_dispatch, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_make_fx_simple, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_mode_tracing_factory_function, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_partial_decomp, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_pr_86917, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_pre_dispatch_functionalization, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_pre_dispatch_functionalization_view_op, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_pre_dispatch_no_grad, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_strides, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_trace_subclasses, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_varargs, test/test_proxy_tensor.py::TestRealProxyTensor::test_error_on_data_dependent_ops, test/test_proxy_tensor.py::TestFakeProxyTensor::test_fake_tensor_mode, test/test_proxy_tensor.py::TestFakeProxyTensor::test_fused_adam, test/test_proxy_tensor.py::TestFakeProxyTensor::test_meta, test/test_proxy_tensor.py::TestSymbolicTracing::test_adv_index_batch, test/test_proxy_tensor.py::TestSymbolicTracing::test_broadcast_shapes, test/test_proxy_tensor.py::TestSymbolicTracing::test_constant_specialization, test/test_proxy_tensor.py::TestSymbolicTracing::test_debug_interpreter, test/test_proxy_tensor.py::TestSymbolicTracing::test_dynamic_pointwise_scalar, test/test_proxy_tensor.py::TestSymbolicTracing::test_elementwise_meta_with_sym_numbers, test/test_proxy_tensor.py::TestSymbolicTracing::test_expand, test/test_proxy_tensor.py::TestSymbolicTracing::test_fake_tensor_as_size, test/test_proxy_tensor.py::TestSymbolicTracing::test_guard_lowerbound_range_refinement, test/test_proxy_tensor.py::TestSymbolicTracing::test_guard_upperbound_range_refinement, test/test_proxy_tensor.py::TestSymbolicTracing::test_guard_upperbound_range_refinement_multivariate, test/test_proxy_tensor.py::TestSymbolicTracing::test_guards_equal, test/test_proxy_tensor.py::TestSymbolicTracing::test_int_input, test/test_proxy_tensor.py::TestSymbolicTracing::test_item_to_constructor, test/test_proxy_tensor.py::TestSymbolicTracing::test_mega_guard, test/test_proxy_tensor.py::TestSymbolicTracing::test_metadata, test/test_proxy_tensor.py::TestSymbolicTracing::test_metadata_fresh, test/test_proxy_tensor.py::TestSymbolicTracing::test_multiply_shape, test/test_proxy_tensor.py::TestSymbolicTracing::test_non_deduped_shape, test/test_proxy_tensor.py::TestSymbolicTracing::test_nonidentity_transitive_guards, test/test_proxy_tensor.py::TestSymbolicTracing::test_repeat_interleave, test/test_proxy_tensor.py::TestSymbolicTracing::test_repeat_interleave_unbacked_output_size, test/test_proxy_tensor.py::TestSymbolicTracing::test_reshape_divisibility_unbacked, test/test_proxy_tensor.py::TestSymbolicTracing::test_return_symint, test/test_proxy_tensor.py::TestSymbolicTracing::test_setitem_symint, test/test_proxy_tensor.py::TestSymbolicTracing::test_sym_storage_offset, test/test_proxy_tensor.py::TestSymbolicTracing::test_symbolic_repeat_interleave, test/test_proxy_tensor.py::TestSymbolicTracing::test_symint_to_tensor, test/test_proxy_tensor.py::TestSymbolicTracing::test_unary, test/test_proxy_tensor.py::TestSymbolicTracing::test_unbacked_unify_guard_transitivity, test/test_proxy_tensor.py::TestSymbolicTracing::test_view_divisibility_unbacked, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_NumpyCatCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_NumpyNonzeroCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_NumpySortCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_NumpyTakeCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_T_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive___rmatmul___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive___rpow___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive__native_batch_norm_legit_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive__segment_reduce_offsets_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive__unsafe_masked_index_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive__unsafe_masked_index_put_accumulate_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive__upsample_bilinear2d_aa_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_abs_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_add_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_addbmm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_addmm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_addmm_decomposed_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_addmv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_all_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_allclose_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_aminmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_argmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_as_strided_partial_views_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_as_strided_scatter_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_atan2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_atan_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_atanh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_atleast_2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_atleast_3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_bernoulli_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_bfloat16_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_block_diag_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_bool_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_broadcast_shapes_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_broadcast_to_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_byte_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_cartesian_prod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_cdist_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_cdouble_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_cfloat_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_char_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_cholesky_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_cholesky_inverse_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_clamp_min_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_clone_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_column_stack_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_combinations_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_cond_simple_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_conj_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_conj_physical_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_cosh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_count_nonzero_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_cross_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_cummax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_cumsum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_cumulative_trapezoid_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_diag_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_diagflat_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_diagonal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_dist_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_div_floor_rounding_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_div_no_rounding_mode_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_dsplit_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_empty_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_erfc_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_exp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_expand_as_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_eye_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_fft_fft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_fft_fftn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_fft_hfft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_fft_ifft2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_fft_ifft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_fft_ifftn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_fft_ihfft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_fft_irfft2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_fft_irfft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_fft_irfftn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_fill_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_flatten_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_flex_attention_simple_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_fliplr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_float_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_float_power_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_floor_divide_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_fmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_fmin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_fmod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_frac_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_frexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_full_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_full_like_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_geometric_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_geqrf_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_grid_sampler_3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_gt_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_hash_tensor_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_heaviside_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_histogramdd_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_hstack_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_hypot_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_i0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_index_add_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_index_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_index_fill_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_index_put_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_index_reduce_amax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_index_reduce_mean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_invoke_quant_packed_simple_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_invoke_quant_simple_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_isclose_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_isnan_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_item_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_jiterator_2inputs_2outputs_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_jiterator_4inputs_with_extra_args_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_jiterator_binary_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_jiterator_unary_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_kron_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_lerp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_cond_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_det_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_diagonal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_eig_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_lstsq_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_lu_factor_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_lu_factor_ex_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_matrix_power_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_matrix_rank_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_norm_subgradients_at_zero_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_pinv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_pinv_singular_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_qr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_solve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_solve_triangular_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_tensorinv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_vander_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_vector_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_log_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_log_normal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_log_softmax_with_dtype_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_logaddexp2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_logaddexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_logical_xor_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_lu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_lu_unpack_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_mH_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_mT_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_map_triple_nested_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_masked_amax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_masked_amin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_masked_argmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_masked_argmin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_masked_cumprod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_masked_cumsum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_masked_logaddexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_masked_logsumexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_masked_median_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_masked_softmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_masked_softmin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_masked_std_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_masked_var_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_matmul_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_matrix_exp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_max_pool2d_with_indices_backward_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_max_reduction_no_dim_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_median_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_meshgrid_list_of_tensors_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_min_reduction_with_dim_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_minimum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_mm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_mode_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_movedim_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_msort_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_mul_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_multinomial_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_mv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nan_to_num_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nanmean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nanmedian_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nanquantile_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_narrow_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_neg_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_new_empty_strided_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_new_ones_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_new_zeros_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_avg_pool2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_avg_pool3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_bilinear_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_binary_cross_entropy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_celu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_channel_shuffle_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_conv1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_conv3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_conv_transpose1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_cosine_embedding_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_cosine_similarity_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_dropout2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_dropout_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_embedding_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_fractional_max_pool2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_gaussian_nll_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_group_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_hardshrink_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_hardsigmoid_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_hinge_embedding_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_interpolate_linear_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_interpolate_trilinear_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_kl_div_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_leaky_relu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_logsigmoid_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_margin_ranking_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_max_unpool2d_grad_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_max_unpool3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_mish_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_mse_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_multi_head_attention_forward_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_multi_margin_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_nll_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_normalize_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_pad_circular_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_pad_reflect_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_pad_replicate_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_pdist_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_pixel_unshuffle_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_prelu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_relu6_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_relu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_rrelu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_smooth_l1_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_softmin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_softplus_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_threshold_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_triplet_margin_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_unfold_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nonzero_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_norm_fro_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_norm_inf_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_norm_nuc_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_normal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_normal_in_place_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_normal_number_mean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_ones_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_permute_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_polar_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_polygamma_polygamma_n_0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_polygamma_polygamma_n_2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_polygamma_polygamma_n_3_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_polygamma_polygamma_n_4_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_positive_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_pow_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_prod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_put_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_qr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_quantile_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_rand_like_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_randn_like_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_ravel_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_real_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_reciprocal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_renorm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_repeat_interleave_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_reshape_as_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_reshape_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_resize__cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_resize_as__cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_resolve_conj_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_rot90_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_round_decimals_0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_rsqrt_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_scalar_tensor_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_scan_simple_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_scatter_reduce_mean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_scatter_reduce_prod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_searchsorted_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_sgn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_sign_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_signal_windows_blackman_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_signal_windows_cosine_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_signal_windows_exponential_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_signal_windows_gaussian_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_signal_windows_general_cosine_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_signal_windows_kaiser_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_signal_windows_nuttall_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_sinc_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_sinh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_slice_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_softmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_sort_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_sparse_mm_reduce_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_sparse_sampled_addmm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_airy_ai_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_bessel_j0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_bessel_j1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_bessel_y0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_bessel_y1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_chebyshev_polynomial_t_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_chebyshev_polynomial_u_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_erfcx_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_hermite_polynomial_h_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_i1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_legendre_polynomial_p_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_log_ndtr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_modified_bessel_i0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_modified_bessel_k0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_modified_bessel_k1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_ndtr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_ndtri_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_zeta_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_split_list_args_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_split_with_sizes_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_split_with_sizes_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_square_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_squeeze_multiple_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_stack_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_std_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_sum_to_size_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_svd_lowrank_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_t_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_take_along_dim_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_tan_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_tensordot_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_to_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_trace_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_transpose_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_transpose_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_trapezoid_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_trapz_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_triangular_solve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_tril_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_true_divide_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_unbind_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_unbind_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_unfold_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_uniform_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_unique_consecutive_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_unsqueeze_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_unsqueeze_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_var_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_var_mean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_vdot_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_view_as_complex_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_view_as_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_vstack_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_where_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_NumpyMulScalarCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_NumpySplitCopyWithIntCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_T_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive___getitem___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive___radd___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive___rmatmul___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive___rmul___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive___rsub___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive__softmax_backward_data_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive__unsafe_masked_index_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_acos_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_acosh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_addbmm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_addmm_decomposed_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_addr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_all_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_angle_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_arange_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_argmin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_argwhere_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_as_strided_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_as_strided_partial_views_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_asin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_asinh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_atleast_2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_bmm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_broadcast_tensors_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_broadcast_to_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_cat_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_cauchy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_cdouble_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_cholesky_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_cholesky_inverse_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_cholesky_solve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_chunk_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_clamp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_clamp_min_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_clone_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_column_stack_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_combinations_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_contiguous_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_cos_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_cov_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_cummin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_cumsum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_deg2rad_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_diag_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_diagonal_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_diagonal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_diagonal_scatter_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_diff_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_div_floor_rounding_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_div_no_rounding_mode_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_double_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_dsplit_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_dstack_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_einsum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_erfinv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_exp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_expand_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_exponential_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_fft_fft2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_fft_hfft2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_fft_hfft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_fft_ifft2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_fft_ifft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_fft_ifftn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_fft_ihfft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_fft_irfft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_flatten_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_flex_attention_backward_simple_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_flip_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_flipud_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_float_power_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_floor_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_floor_divide_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_fmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_fmin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_fmod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_frexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_full_like_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_gather_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_ge_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_geometric_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_hash_tensor_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_hsplit_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_hypot_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_i0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_index_put_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_index_reduce_amax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_index_reduce_mean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_index_select_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_inner_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_invoke_quant_packed_simple_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_invoke_subgraph_simple_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_isfinite_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_isin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_isnan_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_isneginf_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_item_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_jiterator_binary_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_jiterator_binary_return_by_ref_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_kron_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_lerp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_lgamma_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_cholesky_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_cholesky_ex_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_diagonal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_eigh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_eigvals_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_eigvalsh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_ldl_factor_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_ldl_solve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_lstsq_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_lstsq_grad_oriented_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_lu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_matrix_power_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_matrix_rank_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_multi_dot_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_pinv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_pinv_singular_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_qr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_slogdet_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_solve_ex_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_svd_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_svdvals_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_tensorinv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_tensorsolve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_vecdot_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linspace_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linspace_tensor_overload_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_log10_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_log1p_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_log_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_logaddexp2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_logaddexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_logdet_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_logical_and_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_logical_xor_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_logspace_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_logsumexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_lt_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_lu_unpack_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_mT_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_map_nested_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_map_simple_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_masked_amax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_masked_argmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_masked_argmin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_masked_cumprod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_masked_log_softmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_masked_logsumexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_masked_mean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_masked_normalize_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_masked_scatter_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_masked_std_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_matmul_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_max_reduction_no_dim_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_meshgrid_variadic_tensors_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_min_binary_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_min_reduction_with_dim_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_mm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_mode_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_msort_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_mv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nan_to_num_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nanmean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nanmedian_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nanquantile_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_narrow_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_native_dropout_backward_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_new_empty_strided_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_new_full_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_new_ones_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_new_zeros_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nextafter_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_avg_pool2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_binary_cross_entropy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_conv2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_conv3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_conv_transpose1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_cosine_embedding_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_cosine_similarity_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_cross_entropy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_ctc_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_dropout2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_dropout_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_embedding_bag_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_embedding_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_fractional_max_pool3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_glu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_grid_sample_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_group_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_hardshrink_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_hardtanh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_hinge_embedding_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_huber_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_instance_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_interpolate_nearest_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_l1_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_layer_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_margin_ranking_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_max_pool1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_max_pool2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_max_pool3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_max_unpool1d_grad_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_max_unpool2d_grad_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_max_unpool3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_max_unpool3d_grad_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_mish_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_multi_margin_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_normalize_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_pad_circular_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_pad_constant_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_pad_reflect_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_pad_replicate_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_pad_replicate_negative_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_pdist_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_pixel_shuffle_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_pixel_unshuffle_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_poisson_nll_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_prelu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_relu6_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_rrelu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_selu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_smooth_l1_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_soft_margin_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_softmin_with_dtype_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_softplus_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_softsign_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_triplet_margin_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_unfold_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_upsample_bilinear_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_upsample_nearest_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_norm_inf_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_norm_nuc_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_ones_like_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_pca_lowrank_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_permute_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_permute_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_polygamma_polygamma_n_0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_polygamma_polygamma_n_2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_polygamma_polygamma_n_3_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_polygamma_polygamma_n_4_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_pow_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_rad2deg_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_randint_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_randint_like_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_randn_like_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_repeat_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_repeat_interleave_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_reshape_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_resize_as__cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_resolve_conj_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_roll_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_round_decimals_0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_scalar_tensor_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_scan_simple_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_scatter_add_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_scatter_reduce_amax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_scatter_reduce_mean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_scatter_reduce_prod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_select_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_select_scatter_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_signal_windows_cosine_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_signal_windows_exponential_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_signal_windows_gaussian_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_signal_windows_general_cosine_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_signal_windows_general_hamming_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_signal_windows_hamming_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_signal_windows_hann_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_signal_windows_kaiser_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_sinh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_softmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_softmax_with_dtype_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_sort_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_sparse_sampled_addmm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_bessel_j0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_bessel_j1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_bessel_y1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_chebyshev_polynomial_u_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_chebyshev_polynomial_v_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_hermite_polynomial_h_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_laguerre_polynomial_l_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_legendre_polynomial_p_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_modified_bessel_i0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_modified_bessel_k0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_ndtri_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_scaled_modified_bessel_k0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_spherical_bessel_j0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_xlog1py_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_split_list_args_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_sqrt_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_square_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_stack_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_std_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_std_mean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_std_unbiased_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_sub_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_svd_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_svd_lowrank_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_t_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_t_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_take_along_dim_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_take_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_tensor_split_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_tile_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_to_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_trapezoid_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_trapz_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_tril_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_true_divide_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_unfold_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_uniform_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_unsafe_chunk_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_unsafe_split_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_unsqueeze_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_unsqueeze_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_var_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_var_mean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_var_unbiased_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_view_as_complex_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_view_as_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_vsplit_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_vstack_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_while_loop_simple_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_zeros_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_zeros_like_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_H_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_NumpyCatCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_NumpyMulCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_NumpyMulScalarCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_NumpyNMSCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_NumpyNonzeroCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_NumpySortCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_NumpyTakeCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_NumpyViewCopyCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_T_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive___getitem___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive___rdiv___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive___rmatmul___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive___rmod___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive__chunk_cat_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive__native_batch_norm_legit_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive__softmax_backward_data_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive__upsample_bilinear2d_aa_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_abs_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_acosh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_addbmm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_addcmul_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_addmm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_addmv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_alias_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_all_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_amax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_amin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_aminmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_angle_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_arange_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_argwhere_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_as_strided_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_as_strided_partial_views_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_asinh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_atan2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_atan_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_atleast_1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_atleast_2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_atleast_3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_bernoulli_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_bfloat16_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_bmm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_bool_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_bucketize_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_cat_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_cauchy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_ceil_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_cfloat_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_chalf_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_cholesky_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_cholesky_inverse_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_cholesky_solve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_chunk_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_clone_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_combinations_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_complex_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_conj_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_contiguous_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_copysign_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_count_nonzero_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_cov_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_cummin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_cumprod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_cumulative_trapezoid_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_deg2rad_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_diag_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_diag_embed_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_diagflat_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_diagonal_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_diagonal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_diagonal_scatter_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_diff_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_dist_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_div_floor_rounding_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_div_no_rounding_mode_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_div_trunc_rounding_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_double_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_dsplit_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_empty_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_empty_permuted_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_equal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_exp2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_expand_as_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_expand_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_expm1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_exponential_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_eye_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_fft_fft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_fft_fftshift_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_fft_hfft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_fft_hfftn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_fft_ifftn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_fft_ifftshift_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_fft_ihfft2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_fft_ihfft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_fft_irfft2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_flex_attention_backward_simple_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_float_power_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_fmod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_full_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_gather_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_ge_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_geqrf_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_grid_sampler_3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_gt_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_half_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_heaviside_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_histc_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_histogram_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_hsplit_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_i0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_igamma_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_index_add_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_index_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_index_put_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_index_reduce_amax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_index_reduce_amin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_index_reduce_prod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inner_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_NumpyCatCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_NumpyCubeCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_NumpyMulScalarCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_NumpySortCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_NumpySplitCopyWithIntCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_NumpyViewCopyCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace___getitem___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace___rmatmul___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace___rsub___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace__chunk_cat_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace__segment_reduce_offsets_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace__softmax_backward_data_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_abs_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_acos_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_acosh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_add_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_addcmul_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_addmm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_addmm_decomposed_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_all_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_allclose_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_amax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_amin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_aminmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_argmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_argsort_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_as_strided_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_as_strided_partial_views_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_asin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_asinh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_atan_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_baddbmm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_bernoulli_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_block_diag_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_bmm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_broadcast_shapes_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_cartesian_prod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_cat_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_cauchy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_chalf_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_cholesky_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_cholesky_inverse_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_cholesky_solve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_clamp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_clamp_max_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_clamp_min_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_conj_physical_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_constant_pad_nd_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_contiguous_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_copysign_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_corrcoef_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_cos_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_cosh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_cumsum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_cumulative_trapezoid_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_deg2rad_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_diagflat_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_digamma_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_dist_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_div_floor_rounding_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_div_trunc_rounding_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_dot_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_dstack_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_empty_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_empty_like_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_empty_permuted_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_equal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_erf_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_erfc_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_exp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_expand_as_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_expand_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_expm1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_exponential_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_fft_fft2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_fft_fftn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_fft_fftshift_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_fft_hfft2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_fft_hfft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_fft_ifft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_fft_ifftn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_fft_ifftshift_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_fft_ihfft2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_fft_ihfft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_fft_irfft2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_fft_irfft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_fft_irfftn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_fill_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_flip_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_fliplr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_float_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_floor_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_fmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_frexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_ge_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_geometric_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_grid_sampler_2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_heaviside_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_histc_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_histogram_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_histogramdd_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_hsplit_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_hypot_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_i0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_index_add_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_index_put_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_index_reduce_amin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_inner_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_isfinite_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_isin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_isinf_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_isnan_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_isposinf_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_item_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_jiterator_2inputs_2outputs_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_jiterator_4inputs_with_extra_args_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_jiterator_binary_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_jiterator_binary_return_by_ref_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_kthvalue_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_lgamma_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_cholesky_ex_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_cross_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_eigh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_eigvals_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_eigvalsh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_inv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_ldl_solve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_lstsq_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_lstsq_grad_oriented_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_lu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_lu_factor_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_lu_factor_ex_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_lu_solve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_matrix_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_matrix_rank_hermitian_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_pinv_singular_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_solve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_solve_ex_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_svdvals_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_vander_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_vecdot_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_log_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_log_normal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_log_softmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_logaddexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_logical_and_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_logical_or_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_logit_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_logspace_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_logspace_tensor_overload_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_logsumexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_long_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_lu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_lu_solve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_masked_amax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_masked_logaddexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_masked_logsumexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_masked_mean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_masked_median_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_masked_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_masked_sum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_max_pool2d_with_indices_backward_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_max_reduction_with_dim_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_mean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_median_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_minimum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_mm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_mode_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_movedim_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_msort_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_mul_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_multinomial_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_mv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nanquantile_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_native_layer_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_neg_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_new_empty_strided_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_new_full_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_alpha_dropout_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_avg_pool1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_avg_pool2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_avg_pool3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_batch_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_conv_transpose1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_conv_transpose2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_cosine_embedding_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_cross_entropy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_ctc_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_dropout_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_fractional_max_pool2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_gaussian_nll_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_glu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_grid_sample_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_hardswish_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_hardtanh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_hinge_embedding_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_huber_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_interpolate_area_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_interpolate_bilinear_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_interpolate_nearest_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_leaky_relu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_local_response_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_logsigmoid_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_margin_ranking_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_max_pool1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_max_unpool1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_nll_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_pad_circular_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_pad_replicate_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_pairwise_distance_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_pdist_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_pixel_shuffle_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_pixel_unshuffle_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_relu6_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_selu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_silu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_soft_margin_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_softmin_with_dtype_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_tanhshrink_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_threshold_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_triplet_margin_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nonzero_static_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_norm_fro_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_norm_nuc_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_normal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_normal_in_place_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_ones_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_pca_lowrank_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_permute_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_pinverse_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_polygamma_polygamma_n_3_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_polygamma_polygamma_n_4_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_positive_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_randint_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_randn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_renorm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_reshape_as_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_reshape_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_resize__cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_resolve_conj_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_round_decimals_3_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_rsqrt_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_rsub_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_scatter_add_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_scatter_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_scatter_reduce_amax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_scatter_reduce_amin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_scatter_reduce_sum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_select_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_select_scatter_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_sgn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_short_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_signal_windows_hamming_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_signal_windows_hann_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_signal_windows_nuttall_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_sin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_sinc_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_sinh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_slice_scatter_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_sparse_mm_reduce_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_sparse_sampled_addmm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_special_airy_ai_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_special_bessel_j1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_special_bessel_y0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_special_bessel_y1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_special_chebyshev_polynomial_w_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_special_entr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_special_erfcx_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_special_hermite_polynomial_h_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_special_i0e_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_special_modified_bessel_k0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_special_spherical_bessel_j0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_special_xlog1py_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_split_list_args_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_split_with_sizes_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_split_with_sizes_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_squeeze_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_squeeze_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_std_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_std_unbiased_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_sub_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_sum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_svd_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_t_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_t_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_tanh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_tensordot_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_tile_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_trace_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_trapezoid_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_tril_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_true_divide_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_trunc_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_unbind_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_unbind_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_unflatten_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_unfold_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_uniform_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_unique_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_unsafe_split_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_unsqueeze_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_var_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_var_mean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_view_as_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_vstack_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_zero__cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_zeros_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_zeros_like_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_int_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_invoke_subgraph_simple_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_isfinite_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_isin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_isinf_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_isposinf_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_item_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_jiterator_2inputs_2outputs_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_jiterator_binary_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_jiterator_binary_return_by_ref_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_kron_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_kthvalue_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_ldexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_le_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_lerp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_lgamma_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_cholesky_ex_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_cond_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_cross_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_diagonal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_eigh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_ldl_solve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_lstsq_grad_oriented_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_lu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_lu_factor_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_lu_factor_ex_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_matrix_power_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_matrix_rank_hermitian_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_multi_dot_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_pinv_hermitian_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_qr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_slogdet_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_solve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_solve_triangular_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_svdvals_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_tensorinv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_vander_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linspace_tensor_overload_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_log10_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_log_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_log_normal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_log_softmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_log_softmax_with_dtype_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_logdet_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_logical_and_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_logical_not_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_logical_or_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_logical_xor_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_logit_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_long_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_lu_solve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_lu_unpack_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_mH_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_mT_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_map_nested_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_map_simple_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_masked_amax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_masked_amin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_masked_cumprod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_masked_cumsum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_masked_fill_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_masked_logaddexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_masked_logsumexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_masked_mean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_masked_median_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_masked_prod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_masked_select_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_masked_std_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_masked_var_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_max_pool2d_with_indices_backward_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_max_reduction_no_dim_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_max_reduction_with_dim_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_meshgrid_list_of_tensors_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_meshgrid_variadic_tensors_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_min_reduction_no_dim_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_mul_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_multinomial_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_mv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nanmean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nansum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_narrow_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_native_layer_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_ne_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_new_empty_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_new_ones_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_new_zeros_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nextafter_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_alpha_dropout_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_avg_pool2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_avg_pool3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_batch_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_celu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_channel_shuffle_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_conv1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_conv3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_conv_transpose3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_cosine_embedding_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_elu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_embedding_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_fractional_max_pool3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_gelu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_group_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_hardsigmoid_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_hardswish_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_huber_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_interpolate_bilinear_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_interpolate_linear_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_interpolate_nearest_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_layer_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_leaky_relu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_linear_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_max_pool1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_max_pool2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_max_pool3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_max_unpool1d_grad_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_max_unpool3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_mish_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_mse_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_multi_head_attention_forward_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_multilabel_margin_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_nll_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_normalize_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_pad_circular_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_pad_replicate_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_pairwise_distance_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_pixel_unshuffle_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_poisson_nll_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_relu6_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_relu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_silu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_smooth_l1_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_softplus_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_unfold_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nonzero_static_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_norm_inf_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_norm_nuc_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_normal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_normal_in_place_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_normal_number_mean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_ones_like_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_ormqr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_NumpyCatCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_NumpyCubeCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_NumpyNMSCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_NumpySplitCopyWithIntCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_NumpyTakeCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_T_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out___getitem___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out___rmatmul___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out___rmul___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out___rpow___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out___rsub___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out__chunk_cat_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out__softmax_backward_data_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out__unsafe_masked_index_put_accumulate_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out__upsample_bilinear2d_aa_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_addcdiv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_addmm_decomposed_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_angle_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_any_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_arange_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_argmin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_argsort_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_as_strided_partial_views_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_asin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_atan_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_baddbmm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_bfloat16_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_block_diag_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_bmm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_broadcast_shapes_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_broadcast_tensors_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_byte_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_cartesian_prod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_cdist_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_cdouble_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_ceil_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_cfloat_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_chalf_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_cholesky_inverse_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_clamp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_clamp_max_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_clone_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_complex_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_conj_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_conj_physical_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_constant_pad_nd_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_copysign_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_corrcoef_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_cos_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_cummax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_cumsum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_cumulative_trapezoid_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_diag_embed_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_diagflat_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_diagonal_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_diagonal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_diff_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_div_trunc_rounding_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_empty_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_empty_like_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_empty_permuted_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_erfinv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_exp2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_exp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_expand_as_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_expand_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_exponential_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_fft_fft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_fft_fftshift_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_fft_hfft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_fft_hfftn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_fft_ifftshift_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_fft_ihfftn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_fft_irfft2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_fft_rfft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_fft_rfftn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_flatten_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_flip_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_fliplr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_flipud_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_float_power_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_floor_divide_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_frac_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_geqrf_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_grid_sampler_3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_gt_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_hash_tensor_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_histogram_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_hsplit_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_i0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_index_add_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_index_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_index_fill_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_index_reduce_amax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_inner_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_int_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_isfinite_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_isin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_isinf_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_isreal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_item_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_jiterator_4inputs_with_extra_args_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_jiterator_binary_return_by_ref_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_lgamma_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_cholesky_ex_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_cross_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_eig_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_eigvals_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_ldl_solve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_lu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_matrix_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_matrix_rank_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_pinv_hermitian_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_pinv_singular_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_qr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_slogdet_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_solve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_solve_triangular_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_svdvals_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_tensorinv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_tensorsolve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_vander_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_vector_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_log10_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_log2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_log_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_log_softmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_log_softmax_with_dtype_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_logical_not_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_logical_xor_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_logsumexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_lt_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_lu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_lu_unpack_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_mH_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_mT_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_masked_amax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_masked_argmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_masked_log_softmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_masked_logaddexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_masked_logsumexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_masked_median_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_masked_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_masked_normalize_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_masked_scatter_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_masked_sum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_masked_var_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_matmul_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_max_pool2d_with_indices_backward_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_max_reduction_with_dim_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_maximum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_meshgrid_list_of_tensors_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_min_binary_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_min_reduction_with_dim_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_minimum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_mm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_mode_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_movedim_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_multinomial_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_mv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nan_to_num_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nanmedian_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_narrow_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_ne_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_new_ones_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_new_zeros_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_alpha_dropout_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_avg_pool1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_avg_pool3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_binary_cross_entropy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_conv1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_conv_transpose2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_cosine_embedding_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_cosine_similarity_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_cross_entropy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_ctc_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_dropout_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_embedding_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_fractional_max_pool2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_fractional_max_pool3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_gaussian_nll_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_gelu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_hardsigmoid_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_huber_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_interpolate_area_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_interpolate_bicubic_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_interpolate_bilinear_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_interpolate_linear_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_interpolate_nearest_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_kl_div_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_layer_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_leaky_relu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_logsigmoid_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_max_pool1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_max_pool3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_max_unpool1d_grad_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_max_unpool2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_max_unpool2d_grad_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_max_unpool3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_max_unpool3d_grad_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_multi_head_attention_forward_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_multi_margin_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_nll_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_pad_constant_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_pad_replicate_negative_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_pixel_shuffle_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_pixel_unshuffle_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_relu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_rms_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_smooth_l1_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_softmin_with_dtype_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_softplus_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_softshrink_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_softsign_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_upsample_bilinear_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_norm_fro_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_normal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_ones_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_ones_like_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_ormqr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_pca_lowrank_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_permute_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_pinverse_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_polar_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_polygamma_polygamma_n_1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_polygamma_polygamma_n_2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_polygamma_polygamma_n_3_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_polygamma_polygamma_n_4_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_put_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_qr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_rad2deg_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_rand_like_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_randn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_ravel_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_real_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_reciprocal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_remainder_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_repeat_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_reshape_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_resize__cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_resize_as__cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_round_decimals_0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_round_decimals_3_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_rsqrt_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_scatter_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_scatter_reduce_mean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_scatter_reduce_sum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_sgn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_sign_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_signal_windows_exponential_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_signal_windows_general_hamming_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_signal_windows_hann_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_signal_windows_kaiser_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_sin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_sinh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_slice_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_softmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_softmax_with_dtype_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_sort_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_sparse_mm_reduce_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_airy_ai_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_bessel_y0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_chebyshev_polynomial_t_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_chebyshev_polynomial_w_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_hermite_polynomial_h_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_hermite_polynomial_he_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_i0e_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_laguerre_polynomial_l_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_legendre_polynomial_p_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_log_ndtr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_modified_bessel_i0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_modified_bessel_k0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_ndtri_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_xlog1py_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_zeta_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_split_with_sizes_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_squeeze_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_squeeze_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_stack_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_stft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_sub_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_sum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_take_along_dim_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_tan_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_tensor_split_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_tile_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_topk_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_transpose_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_trapz_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_true_divide_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_unbind_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_unique_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_unsafe_chunk_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_var_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_var_mean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_var_mean_unbiased_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_var_unbiased_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_vdot_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_view_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_view_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_vsplit_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_vstack_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_where_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_xlogy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_zero__cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_zeros_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_zeros_like_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_pca_lowrank_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_permute_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_pinverse_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_polygamma_polygamma_n_0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_polygamma_polygamma_n_3_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_polygamma_polygamma_n_4_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_positive_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_pow_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_prod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_put_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_rand_like_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_real_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_reciprocal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_remainder_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_reshape_as_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_reshape_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_resize_as__cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_resolve_neg_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_rot90_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_round_decimals_0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_rsqrt_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_rsub_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_scatter_reduce_prod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_select_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_select_scatter_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_sigmoid_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_signal_windows_cosine_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_signal_windows_exponential_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_signal_windows_general_cosine_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_signal_windows_kaiser_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_signal_windows_nuttall_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_sinc_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_softmax_with_dtype_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_sparse_mm_reduce_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_special_bessel_j0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_special_bessel_y1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_special_entr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_special_erfcx_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_special_hermite_polynomial_he_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_special_i1e_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_special_legendre_polynomial_p_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_special_log_ndtr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_special_modified_bessel_i0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_special_modified_bessel_i1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_special_scaled_modified_bessel_k1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_split_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_split_list_args_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_split_with_sizes_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_sqrt_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_squeeze_multiple_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_stack_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_sum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_sum_to_size_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_svd_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_t_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_t_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_tanh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_trace_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_transpose_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_trapz_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_tril_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_triu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_trunc_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_unbind_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_unflatten_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_unfold_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_uniform_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_unique_consecutive_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_unique_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_unsqueeze_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_var_mean_unbiased_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_vdot_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_view_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_zeros_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_zeros_like_cpu_float32 2025-08-26T22:10:38.1060535Z 2025-08-26T22:10:43.5756796Z Running functorch/test_ops 8/8 ... [2025-08-26 22:10:43.575079] 2025-08-26T22:10:43.5757810Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:10:43.5765370Z 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-26 22:10:43.576255] 2025-08-26T22:11:09.7178502Z 2025-08-26T22:11:09.7179913Z functorch/test_ops 3/8 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_ops_3.8_7430d82cd42d895f_.log 2025-08-26T22:11:09.7724633Z Running 1295 items in this shard: test/functorch/test_ops.py::TestOperatorsCPU::test_extremal_numerics_layer_norm_cpu, test/functorch/test_ops.py::TestOperatorsCPU::test_extremal_numerics_softmax_cpu, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_ForwardHasDefaultArgsAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_NumpyCubeNotComposableAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_NumpyMulAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_SelectGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad___getitem___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad___getitem___functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad___rmod___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad___rsub___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad__softmax_backward_data_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_acosh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_all_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_allclose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_atan2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_baddbmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_bmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_byte_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_ceil_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_chalf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_char_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_contiguous_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_corrcoef_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_cov_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_div_no_rounding_mode_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_exp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_expand_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_exponential_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_fft_ifftshift_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_fft_irfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_flip_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_float_power_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_hsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_hstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_igammac_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_index_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_index_reduce_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_jiterator_4inputs_with_extra_args_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_le_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_lerp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_lstsq_grad_oriented_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_pinv_hermitian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_svdvals_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linspace_tensor_overload_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_lu_unpack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_masked_normalize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_masked_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_masked_std_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_minimum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_msort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_adaptive_max_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_avg_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_conv2d_stride_depthwise_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_conv_transpose1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_hinge_embedding_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_interpolate_linear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_interpolate_nearest-exact_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_margin_ranking_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_max_unpool2d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_mish_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_multi_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_pad_replicate_negative_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_rms_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_softmin_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_softshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_triplet_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_normal_in_place_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_polygamma_polygamma_n_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_polygamma_polygamma_n_4_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_put_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_quantile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_rand_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_resize_as__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_resolve_neg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_rot90_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_round_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_scalar_tensor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_signal_windows_bartlett_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_signal_windows_nuttall_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_sinh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_bessel_j1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_erfcx_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_polygamma_special_polygamma_n_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_zeta_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_squeeze_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_std_mean_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_take_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_tensordot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_transpose_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_unfold_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_uniform_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_unsqueeze_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_view_as_complex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_ForwardHasDefaultArgsAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp___rmod___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp__segment_reduce_offsets_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_addcdiv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_all_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_as_strided_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_atanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_clamp_max_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_column_stack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_contiguous_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_copysign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_count_nonzero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_cummax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_diag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_diagonal_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_div_floor_rounding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_dsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_einsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_empty_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_eq_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_equal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_erfinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_expand_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_expm1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_fft_fft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_fft_fftshift_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_fmod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_full_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_geqrf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_hypot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_index_reduce_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_isclose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_isreal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_kron_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_le_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_householder_product_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_lu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_matrix_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_vecdot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_vector_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_logit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_logsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_masked_cumprod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_masked_logaddexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_masked_var_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_matrix_exp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_multinomial_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nanmedian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_narrow_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_new_full_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_new_ones_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_adaptive_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_avg_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_avg_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_celu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_conv2d_stride_padding_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_conv_transpose3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_dropout2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_elu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_gaussian_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_gelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_interpolate_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_kl_div_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_leaky_relu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_local_response_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_max_unpool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_mse_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_normalize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_pad_replicate_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_relu6_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_ones_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_pca_lowrank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_put_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_rad2deg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_randint_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_reshape_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_round_decimals_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_round_decimals_neg_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_scatter_reduce_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_sparse_mm_reduce_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_sparse_sampled_addmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_hermite_polynomial_he_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_legendre_polynomial_p_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_log_ndtr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_ndtr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_ndtri_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_spherical_bessel_j0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_squeeze_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_std_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_stft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_svd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_t_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_to_sparse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_trapezoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_view_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_vsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpjvpvmap_CubeGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpjvpvmap_NumpyCubeNotComposableAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpjvpvmap_NumpySortAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_CubeGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_NumpyCubeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp__unsafe_masked_index_put_accumulate_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp__upsample_bilinear2d_aa_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_addmm_decomposed_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_argsort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_atan2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_broadcast_shapes_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_cat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_cauchy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_cholesky_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_complex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_diagflat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_div_trunc_rounding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_empty_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_equal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_exp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_fft_fft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_fft_hfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_flatten_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_fliplr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_floor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_geometric_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_grid_sampler_2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_half_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_heaviside_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_hypot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_isfinite_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_isin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_isnan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_isreal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_jiterator_4inputs_with_extra_args_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_kron_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_lgamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_inv_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_ldl_factor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_pinv_singular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_log_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_log_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_logdet_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_mH_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_mT_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_masked_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_masked_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_meshgrid_list_of_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_alpha_dropout_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_conv2d_stride_depthwise_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_conv2d_stride_padding_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_conv_transpose1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_cross_entropy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_hardsigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_hardswish_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_interpolate_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_local_response_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_max_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_pairwise_distance_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_pixel_unshuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_upsample_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_norm_inf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_ones_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_rand_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_ravel_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_round_decimals_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_sparse_mm_reduce_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_bessel_y0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_bessel_y1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_erfcx_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_zeta_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_stack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_stft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_t_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_take_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_tensor_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_torch_ops_aten__safe_softmax_default_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_transpose_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_trapz_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_triu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_unsqueeze_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_var_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_view_as_complex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjpvmap_CubeGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjpvmap_NumpySortAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmap_NumpyTakeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmap_SelectAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmapvmap_NumpyExpMarkDirtyAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmapvmap_SelectGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmapvmap_ZeroGradientsGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_amax_cpu_complex64, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_amin_cpu_complex64, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_argmax_cpu_complex128, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_argmin_cpu_complex32, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_ge_cpu_complex128, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_lt_cpu_complex128, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_minimum_cpu_complex128, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_minimum_cpu_complex64, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_sort_cpu_complex128, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_sort_cpu_complex64, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_diagonal_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_expand_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_flatten_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_special_grad_op_vjp_cpu, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_squeeze_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_squeeze_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_squeeze_multiple_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_unflatten_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_unflatten_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_view_as_complex_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_view_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_H_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp___getitem___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp___rmod___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp___rpow___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_addmm_decomposed_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_argwhere_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_atanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_bernoulli_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_block_diag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_bucketize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_complex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_conj_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_cross_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_deg2rad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_diagonal_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_double_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_empty_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_empty_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_eq_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_exponential_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_fft_fft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_full_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_ge_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_half_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_histc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_hstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_index_put_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_index_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_item_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_kthvalue_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_eigvals_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_eigvalsh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_svd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_vander_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_vector_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_log_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_lu_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_masked_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_min_reduction_with_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_mvlgamma_mvlgamma_p_1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nansum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_new_empty_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_adaptive_avg_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_conv2d_stride_padding_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_conv2d_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_embedding_bag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_fractional_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_gaussian_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_grid_sample_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_kl_div_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_max_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_mse_loss_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_multi_head_attention_forward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_pad_circular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_pixel_shuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_scaled_dot_product_attention_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_softmin_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nonzero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_ones_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_ops_aten_index_put_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_polygamma_polygamma_n_2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_resolve_neg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_rsqrt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_rsub_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_short_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_signal_windows_bartlett_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_signbit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_sinc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_erfcx_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_hermite_polynomial_h_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_legendre_polynomial_p_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_ndtri_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_squeeze_multiple_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_std_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_t_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_tanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_unbind_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_unfold_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_var_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_view_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_zero__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_H_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_ScaleGradGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp___rdiv___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp___rpow___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_addbmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_addmv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_atan2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_bool_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_bool_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_byte_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_cdist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_cdouble_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_ceil_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_chalf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_clone_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_constant_pad_nd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_count_nonzero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_diag_embed_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_diff_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_div_floor_rounding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_expand_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_expand_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_fft_ifft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_fft_rfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_float_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_gradient_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_histc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_i0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_index_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_index_put_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_isinf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_item_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_kron_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_matrix_rank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_svd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_tensorsolve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_log_normal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_logsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_masked_argmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_median_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_meshgrid_list_of_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_meshgrid_variadic_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_min_reduction_no_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nanquantile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_narrow_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_new_empty_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_avg_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_celu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_conv1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_conv2d_stride_depthwise_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_ctc_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_dropout2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_hardshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_hardtanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_interpolate_area_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_max_unpool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_rms_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_silu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_soft_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_outer_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_polygamma_polygamma_n_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_scatter_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_select_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_sinh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_chebyshev_polynomial_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_chebyshev_polynomial_v_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_i1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_modified_bessel_i1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_ndtr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_to_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_torch_ops_aten__safe_softmax_default_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_trunc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_unbind_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_var_mean_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjpvmap_MulGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjpvmap_NumpyCubeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjpvmap_NumpyMulAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjpvmap_ScaleGradGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjpvmap_ZeroGradientsGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_NumpyExpMarkDirtyAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap___rsub___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap__unsafe_masked_index_put_accumulate_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap__upsample_bilinear2d_aa_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_abs_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_allclose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_aminmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_as_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_as_strided_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_block_diag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_bool_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_cat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_cdouble_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_char_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_conj_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_cumsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_einsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_eq_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_erfinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_exp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_exponential_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_fft_fftshift_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_frexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_full_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_geometric_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_grid_sampler_3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_gt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_hash_tensor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_i0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_index_reduce_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_index_reduce_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_isclose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_le_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_inv_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_lu_factor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_log2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_log_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_logit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_logspace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_logspace_tensor_overload_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_logsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_masked_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_masked_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_masked_log_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_masked_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_masked_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_masked_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_max_reduction_with_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_min_reduction_with_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_mvlgamma_mvlgamma_p_1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nansum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_new_empty_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_new_full_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nextafter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_ctc_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_dropout_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_hinge_embedding_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_interpolate_trilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_linear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_max_unpool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_max_unpool1d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_max_unpool2d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_multi_head_attention_forward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_relu6_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_silu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_triplet_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nonzero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_normal_in_place_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_ones_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_polar_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_randn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_randn_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_ravel_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_remainder_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_repeat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_resolve_conj_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_round_decimals_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_round_decimals_neg_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_rsqrt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_rsub_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_scatter_reduce_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_sinh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_chebyshev_polynomial_u_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_chebyshev_polynomial_w_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_laguerre_polynomial_l_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_ndtri_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_squeeze_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_std_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_take_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_tensordot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_transpose_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_triangular_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_unique_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_var_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_var_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_view_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmapvmap_ForwardHasDefaultArgsAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmapvmap_NumpySortAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_NumpyCubeNotComposableAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_NumpyTakeAutogradFunction_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_ScaleGradGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad___getitem___functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad___getitem___functorch_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad___radd___cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad__unsafe_masked_index_put_accumulate_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_abs_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_addmv_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_addr_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_all_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_allclose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_allclose_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_angle_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_baddbmm_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_bfloat16_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_bmm_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_bool_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_broadcast_tensors_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_byte_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cholesky_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cholesky_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_chunk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_chunk_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_clamp_min_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_complex_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cosh_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cumulative_trapezoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_div_no_rounding_mode_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_div_trunc_rounding_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_einsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_empty_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_fftshift_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_hfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_ifftshift_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_ifftshift_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_ihfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_rfft2_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_float_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_floor_divide_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_ge_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_grid_sampler_3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_gt_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_hstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_igammac_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_index_put_functorch_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_index_reduce_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_index_reduce_mean_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_isposinf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_jiterator_4inputs_with_extra_args_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_cholesky_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_cond_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_eig_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_lu_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_lu_factor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_matrix_norm_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_matrix_rank_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_matrix_rank_hermitian_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_norm_subgradients_at_zero_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_vander_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linspace_tensor_overload_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linspace_tensor_overload_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_logaddexp2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_logaddexp_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_lu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_cumsum_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_log_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_logaddexp_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_select_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_max_pool2d_with_indices_backward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_min_reduction_with_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_mm_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_mode_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nanmean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_neg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_neg_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_new_empty_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_new_zeros_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_adaptive_avg_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_adaptive_avg_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_adaptive_avg_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_adaptive_max_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv2d_stride_depthwise_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv2d_stride_padding_with_bias_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv_transpose1d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv_transpose2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_ctc_loss_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_glu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_glu_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_hardshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_hardsigmoid_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_hardswish_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_huber_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_interpolate_linear_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_interpolate_trilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_interpolate_trilinear_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_max_unpool2d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_mish_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_multilabel_soft_margin_loss_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_nll_loss_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_pad_circular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_pad_replicate_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_pdist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_smooth_l1_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_smooth_l1_loss_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_soft_margin_loss_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_outer_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_polygamma_polygamma_n_1_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_randn_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_ravel_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_remainder_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_resize_as__cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_rot90_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_round_decimals_neg_3_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_scatter_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_scatter_reduce_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_searchsorted_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_signal_windows_cosine_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_signal_windows_exponential_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_signal_windows_general_cosine_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_slice_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_slice_scatter_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_sparse_mm_reduce_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_bessel_y1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_bessel_y1_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_hermite_polynomial_he_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_legendre_polynomial_p_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_modified_bessel_k0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_scaled_modified_bessel_k0_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_shifted_chebyshev_polynomial_w_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_zeta_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_squeeze_multiple_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_std_mean_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_std_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_sub_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_sum_to_size_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_take_along_dim_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_tan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_tensordot_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_tile_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_tril_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_triu_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_trunc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_unbind_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_unsafe_chunk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_var_mean_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_vdot_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_view_as_complex_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_zeros_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_zeros_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_NumpyTakeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_ScaleGradGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall___getitem___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_atanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_bfloat16_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_broadcast_shapes_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_cdist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_ceil_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_clamp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_cosh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_count_nonzero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_cummax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_cumsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_diag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_diagflat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_diagonal_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_dsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_empty_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_expand_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_fft_irfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_fft_rfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_fmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_H_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_NumpyCubeNotComposableAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_SortGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule__segment_reduce_offsets_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_abs_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_addmm_decomposed_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_aminmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_argwhere_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_atanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_bool_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_cauchy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_ceil_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_cholesky_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_chunk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_clone_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_complex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_conj_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_constant_pad_nd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_diag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_double_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_empty_permuted_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_eq_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_exp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_expm1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_fft_fftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_fft_hfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_fft_ihfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_fft_irfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_fft_rfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_fliplr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_flipud_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_float_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_full_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_index_reduce_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_index_reduce_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_isposinf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_kron_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_kthvalue_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_lgamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_cholesky_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_det_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_eigh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_multi_dot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_norm_subgradients_at_zero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linspace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_log10_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_logaddexp2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_lu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_masked_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_masked_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_max_reduction_no_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_min_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_mv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_mvlgamma_mvlgamma_p_1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nanmean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nanmedian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_batch_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_conv2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_cosine_embedding_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_embedding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_hinge_embedding_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_l1_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_margin_ranking_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_mish_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_pad_reflect_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_selu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_unfold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_polygamma_polygamma_n_2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_put_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_rand_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_randn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_reciprocal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_scatter_reduce_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_scatter_reduce_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_scatter_reduce_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_signal_windows_bartlett_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_signal_windows_exponential_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_signal_windows_hamming_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_signal_windows_nuttall_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_sparse_mm_reduce_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_sparse_sampled_addmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_bessel_j0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_bessel_y0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_chebyshev_polynomial_v_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_i0e_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_i1e_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_legendre_polynomial_p_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_ndtri_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_squeeze_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_std_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_stft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_sub_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_svd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_tensor_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_torch_ops_aten__safe_softmax_default_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_transpose_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_zero__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_heaviside_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_isinf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_item_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_jiterator_2inputs_2outputs_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_ldexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_le_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_matrix_rank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_matrix_rank_hermitian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_tensorsolve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_vander_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linspace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linspace_tensor_overload_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_log_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_log_normal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_log_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_logical_and_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_long_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_masked_log_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_masked_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_masked_std_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_max_pool2d_with_indices_backward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_meshgrid_list_of_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_min_reduction_no_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_multinomial_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nanmean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nanmedian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_adaptive_max_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_avg_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_binary_cross_entropy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_conv2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_conv2d_strided_padding_dilation_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_conv2d_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_conv_transpose1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_dropout_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_embedding_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_group_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_hardsigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_margin_ranking_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_max_unpool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_mse_loss_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_multi_head_attention_forward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_multi_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_softmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_softsign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_triplet_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nonzero_static_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_norm_fro_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_polygamma_polygamma_n_1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_rad2deg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_randint_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_repeat_interleave_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_resolve_conj_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_round_decimals_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_rsub_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_scatter_reduce_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_short_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_signal_windows_bartlett_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_hermite_polynomial_h_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_shifted_chebyshev_polynomial_u_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_squeeze_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_std_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_tensor_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_tril_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_triu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_unfold_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_unique_consecutive_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_vstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_where_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_zeros_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_NumpyCubeNotComposableAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_ZeroGradientsGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp___getitem___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp___rmod___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp__batch_norm_with_update_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_addmv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_all_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_any_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_asinh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_bfloat16_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_broadcast_shapes_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_cauchy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_ceil_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_cholesky_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_complex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_diag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_fft_ifftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_fft_rfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_gather_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_gradient_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_index_reduce_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_int_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_jiterator_2inputs_2outputs_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_householder_product_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_lstsq_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_pinv_hermitian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_qr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_log2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_logical_not_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_long_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_lt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_mT_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_masked_cumsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_masked_logsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_masked_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_masked_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_max_reduction_no_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_meshgrid_list_of_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_movedim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_multinomial_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_mvlgamma_mvlgamma_p_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_mvlgamma_mvlgamma_p_5_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nanmedian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_new_full_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_adaptive_avg_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_conv2d_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_cosine_similarity_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_dropout_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_fractional_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_hardsigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_huber_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_interpolate_bicubic_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_logsigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_margin_ranking_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_prelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_rms_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_silu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_softmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_threshold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_ones_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_polygamma_polygamma_n_4_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_qr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_rad2deg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_randn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_randn_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_reshape_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_roll_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_scalar_tensor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_sign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_signal_windows_gaussian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_sparse_sampled_addmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_bessel_j1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_modified_bessel_i0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_polygamma_special_polygamma_n_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_scaled_modified_bessel_k0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_shifted_chebyshev_polynomial_w_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_spherical_bessel_j0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_squeeze_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_squeeze_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_stft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_svd_lowrank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_take_along_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_to_sparse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_unsafe_chunk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_var_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_var_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_vstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_xlogy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_zeros_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvmap_NumpySortAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvmap_SelectGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_ForwardHasDefaultArgsAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_NumpyExpMarkDirtyAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_ScaleGradGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_SelectAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp___rpow___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp__batch_norm_with_update_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_allclose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_asin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_bernoulli_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_bucketize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_cartesian_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_char_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_chunk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_conj_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_corrcoef_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_cos_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_cumsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_diagflat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_diff_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_div_trunc_rounding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_dstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_empty_permuted_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_exp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_expand_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_expand_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_fft_fftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_fft_hfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_fft_ihfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_fft_irfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_fft_rfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_gradient_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_SelectAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_SelectGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule__native_batch_norm_legit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule__unsafe_masked_index_put_accumulate_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_abs_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_as_strided_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_atan2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_broadcast_to_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_cauchy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_chalf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_char_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_complex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_conj_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_constant_pad_nd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_cos_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_diag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_diagonal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_diff_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_exp2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_fft_fft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_fft_hfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_float_power_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_frac_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_full_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_grid_sampler_3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_histogramdd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_hypot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_isposinf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_jiterator_binary_return_by_ref_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_lgamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_cholesky_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_cross_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_eig_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_eigvalsh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_lstsq_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_lu_factor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_vecdot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_vector_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linspace_tensor_overload_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_log1p_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_log_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_logical_not_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_masked_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_masked_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_masked_log_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_masked_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_masked_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_max_pool2d_with_indices_backward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_min_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_min_reduction_with_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_msort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_mvlgamma_mvlgamma_p_5_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nanmedian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_narrow_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_new_zeros_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_adaptive_max_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_batch_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_channel_shuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_conv2d_stride_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_pad_replicate_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_pixel_unshuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_rms_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_softshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_softsign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_unfold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_normal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_ops_aten__new_zeros_with_same_feature_meta_functorchonly_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_rot90_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_round_decimals_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_round_decimals_neg_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_rsqrt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_short_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_sign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_signal_windows_blackman_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_signal_windows_hamming_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_sparse_mm_reduce_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_bessel_y0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_hermite_polynomial_he_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_shifted_chebyshev_polynomial_u_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_std_mean_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_torch_ops_aten__safe_softmax_default_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_unfold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_unsqueeze_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_vdot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_where_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_index_put_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_index_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_isneginf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_le_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_lerp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_inv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_lstsq_grad_oriented_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_matrix_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_solve_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_svdvals_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_log_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_logical_not_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_masked_log_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_masked_logsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_max_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_native_dropout_backward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_adaptive_avg_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_conv2d_stride_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_cosine_embedding_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_group_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_pad_circular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_prelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_rms_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_softmin_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_upsample_nearest_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_norm_fro_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_ones_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_polar_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_pow_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_put_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_repeat_interleave_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_round_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_round_decimals_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_round_decimals_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_round_decimals_neg_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_rsub_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_searchsorted_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_short_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_signal_windows_gaussian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_signal_windows_general_cosine_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_signal_windows_hamming_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_signal_windows_hann_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_slice_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_airy_ai_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_ndtr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_scaled_modified_bessel_k1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_shifted_chebyshev_polynomial_v_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_zeta_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_square_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_sub_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_torch_ops_aten__safe_softmax_default_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_trapezoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_tril_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_var_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_view_as_complex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_zeros_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_MulGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_ScaleGradGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp___rsub___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_addcmul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_addr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_angle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_argmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_as_strided_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_atleast_1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_atleast_3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_baddbmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_bucketize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_byte_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_cartesian_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_chalf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_cholesky_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_copysign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_dot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_double_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_empty_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_erf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_erfc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_exp2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_fft_fft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_fft_ifft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_frac_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_full_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_gather_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_ge_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_geometric_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_hash_tensor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_isnan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_cross_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_householder_product_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_ldl_factor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_lu_factor_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_multi_dot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linspace_tensor_overload_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_lu_unpack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_masked_fill_functorch_Scalar_only_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_masked_normalize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_masked_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_max_reduction_with_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_adaptive_avg_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_adaptive_avg_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_avg_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_conv1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_conv2d_stride_padding_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_conv2d_strided_padding_dilation_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_conv_transpose2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_dropout_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_glu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_kl_div_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_relu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_scaled_dot_product_attention_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_softmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_softplus_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nonzero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_permute_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_polygamma_polygamma_n_4_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_positive_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_real_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_reciprocal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_rot90_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_round_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_round_decimals_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_scatter_reduce_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_signal_windows_exponential_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_signal_windows_general_hamming_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_signal_windows_hamming_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_signal_windows_kaiser_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_softmax_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_chebyshev_polynomial_w_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_laguerre_polynomial_l_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_modified_bessel_k0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_shifted_chebyshev_polynomial_u_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_shifted_chebyshev_polynomial_w_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_spherical_bessel_j0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_split_list_args_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_split_with_sizes_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_squeeze_multiple_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_tanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_true_divide_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_unbind_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_unfold_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_unique_consecutive_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_unsafe_chunk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_unsqueeze_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_view_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_zero__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_zeros_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvmap_NumpyCubeNotComposableAutogradFunction_cpu_float32 2025-08-26T22:11:09.8162650Z 2025-08-26T22:11:15.4045589Z Running test_ops 3/9 ... [2025-08-26 22:11:15.404178] 2025-08-26T22:11:15.4046320Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:11:15.4053097Z 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-26 22:11:15.404178] 2025-08-26T22:16:32.2002597Z 2025-08-26T22:16:32.2003912Z functorch/test_ops 4/8 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_ops_4.8_3b68a439b7ffa53c_.log 2025-08-26T22:16:32.2521212Z Running 1218 items in this shard: test/functorch/test_ops.py::TestOperatorsCPU::test_grad_SelectAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_addcmul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_addmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_atanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_atleast_3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_bool_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_bool_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_broadcast_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_cdist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_cdouble_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_conj_physical_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_constant_pad_nd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_empty_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_equal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_expand_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_expm1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_fft_fft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_fft_fftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_fft_irfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_geometric_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_geqrf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_gradient_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_hash_tensor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_heaviside_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_i0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_index_reduce_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_isfinite_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_isneginf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_isposinf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_ldexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_eigvalsh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_inv_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_ldl_factor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_lu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_matrix_rank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_multi_dot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_qr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_tensorsolve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_vander_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_logspace_tensor_overload_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_long_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_masked_argmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_masked_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_masked_var_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_matmul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_median_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_meshgrid_list_of_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_meshgrid_variadic_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_min_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_new_full_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_elu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_embedding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_gaussian_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_hardswish_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_interpolate_area_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_interpolate_nearest_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_normalize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_pad_replicate_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_pdist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_upsample_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_polygamma_polygamma_n_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_polygamma_polygamma_n_1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_remainder_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_rsub_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_signal_windows_hamming_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_signal_windows_kaiser_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_sin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_slice_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_sparse_mm_reduce_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_bessel_y1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_chebyshev_polynomial_u_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_i1e_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_modified_bessel_k1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_shifted_chebyshev_polynomial_w_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_square_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_squeeze_multiple_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_std_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_std_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_to_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_true_divide_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_var_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_view_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_view_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_vstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_NumpyMulAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_SelectAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp___rdiv___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp__upsample_bilinear2d_aa_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_addbmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_arange_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_baddbmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_bernoulli_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_block_diag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_byte_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_cauchy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_clamp_min_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_corrcoef_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_erfc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_expand_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_fft_fftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_fft_hfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_fft_ifftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_fft_ihfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_fft_rfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_float_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_float_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_full_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_gt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_index_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_index_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_isin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_jiterator_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_ldexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_eig_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_ldl_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_lu_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_matrix_power_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_matrix_rank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_pinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_slogdet_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_svd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_masked_argmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_max_reduction_no_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nansum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_native_dropout_backward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_ne_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_conv1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_fractional_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_hardsigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_instance_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_layer_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_multi_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_prelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_silu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_softmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_softsign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nonzero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_norm_inf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_permute_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_resolve_conj_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_resolve_neg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_rsub_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_scatter_reduce_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_short_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_signal_windows_general_hamming_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_bessel_y1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_chebyshev_polynomial_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_entr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_modified_bessel_k1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_split_list_args_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_split_with_sizes_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_to_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_triu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_var_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_view_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_where_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_zeros_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpjvpvmap_ZeroGradientsGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp___getitem___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp___radd___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_addcmul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_addmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_alias_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_angle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_bool_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_broadcast_to_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_bucketize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_cartesian_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_cdist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_clamp_max_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_constant_pad_nd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_cummax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_diagonal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_div_floor_rounding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_div_no_rounding_mode_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_double_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_dstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_expand_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_expand_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_expm1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_fft_ifft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_fft_ihfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_fft_rfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_fft_rfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_float_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_geqrf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_gradient_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_half_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_hstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_igamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_index_put_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_index_reduce_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_inner_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_jiterator_2inputs_2outputs_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_jiterator_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_jiterator_binary_return_by_ref_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_cond_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_eigvalsh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_inv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_slogdet_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_logaddexp2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_logical_not_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_lu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_masked_argmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_masked_cumsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_masked_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_masked_softmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_masked_var_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_max_reduction_with_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_minimum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nanmean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nanquantile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_new_empty_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_new_zeros_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nextafter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_batch_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_embedding_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_group_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_huber_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_interpolate_nearest_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_margin_ranking_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_normalize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_pad_circular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_pad_reflect_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_normal_in_place_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_ops_aten_index_put_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_permute_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_polygamma_polygamma_n_2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_polygamma_polygamma_n_4_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_reciprocal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_reshape_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_round_decimals_neg_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_scatter_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_scatter_reduce_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_scatter_reduce_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_short_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_signal_windows_bartlett_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_signal_windows_gaussian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_sparse_sampled_addmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_i0e_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_i1e_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_modified_bessel_i1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_ndtr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_scaled_modified_bessel_k1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_xlog1py_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_split_list_args_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_split_with_sizes_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_tensordot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_unbind_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_unfold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_uniform_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_unique_consecutive_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_var_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_view_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_vsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_zeros_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjpvmap_NumpyCubeNotComposableAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjpvmap_NumpyTakeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjpvmap_ZeroGradientsGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmap_MulGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmapvmap_MulGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmapvmap_NumpyCubeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmapvmap_NumpyMulAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_amax_cpu_complex128, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_amin_cpu_complex128, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_clamp_cpu_complex32, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_topk_cpu_complex128, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_topk_cpu_complex32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_T_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_list_return_unbind_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_list_return_vsplit_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_mH_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_real_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_transpose_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_view_as_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_ScaleGradGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp___rmul___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp__batch_norm_with_update_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp__upsample_bilinear2d_aa_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_atleast_3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_chalf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_char_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_cholesky_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_clamp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_contiguous_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_diag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_diagonal_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_fft_fft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_fft_rfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_grid_sampler_2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_grid_sampler_3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_histogramdd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_index_reduce_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_index_reduce_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_isreal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_jiterator_binary_return_by_ref_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_lgamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_diagonal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_eigh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_householder_product_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_lu_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_log1p_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_log_normal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_log_softmax_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_logcumsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_logical_xor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_masked_fill_functorch_Scalar_only_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_masked_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_max_reduction_with_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_meshgrid_list_of_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_multinomial_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_mv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_native_layer_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_ne_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_new_full_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_alpha_dropout_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_batch_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_channel_shuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_conv2d_strided_padding_dilation_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_cosine_embedding_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_cross_entropy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_glu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_hardswish_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_instance_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_interpolate_area_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_leaky_relu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_max_unpool2d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_max_unpool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_pixel_unshuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_relu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_normal_in_place_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_normal_number_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_qr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_quantile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_rad2deg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_repeat_interleave_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_resize__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_round_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_select_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_signal_windows_cosine_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_signal_windows_gaussian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_signal_windows_nuttall_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_slice_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_sparse_sampled_addmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_airy_ai_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_bessel_j0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_chebyshev_polynomial_u_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_laguerre_polynomial_l_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_scaled_modified_bessel_k1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_shifted_chebyshev_polynomial_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_shifted_chebyshev_polynomial_u_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_shifted_chebyshev_polynomial_v_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_shifted_chebyshev_polynomial_w_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_topk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_torch_ops_aten__safe_softmax_default_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_unsafe_chunk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_var_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_zeros_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_NumpyCubeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_NumpyTakeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_SelectAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp__batch_norm_with_update_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp__segment_reduce_offsets_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_addmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_argmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_atleast_2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_baddbmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_bfloat16_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_block_diag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_cartesian_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_cat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_cummax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_exp2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_fft_ifftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_flip_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_fmod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_geqrf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_hsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_igammac_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_index_reduce_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_index_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_isposinf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_le_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_lgamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_vecdot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_logit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_logspace_tensor_overload_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_lt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_masked_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_masked_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_min_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_multinomial_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_adaptive_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_avg_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_binary_cross_entropy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_channel_shuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_conv2d_stride_padding_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_cosine_embedding_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_gaussian_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_interpolate_linear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_interpolate_nearest-exact_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_local_response_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_logsigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_max_unpool2d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_pad_replicate_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_unfold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_upsample_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_normal_number_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_ops_aten_index_put_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_polar_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_quantile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_randint_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_randn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_reciprocal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_reshape_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_resize__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_resize_as__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_resolve_neg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_rot90_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_round_decimals_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_round_decimals_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_scalar_tensor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_scatter_reduce_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_slice_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_sort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_sparse_sampled_addmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_bessel_j0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_hermite_polynomial_h_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_hermite_polynomial_he_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_std_mean_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_sum_to_size_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_tensor_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_trace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_transpose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_triangular_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_tril_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_unique_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_unsafe_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_view_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjpvmap_ForwardHasDefaultArgsAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjpvmap_NumpyTakeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_ForwardHasDefaultArgsAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_ZeroGradientsGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap___getitem___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap___radd___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap__segment_reduce_offsets_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap__softmax_backward_data_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_broadcast_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_cdist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_ceil_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_cfloat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_clone_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_complex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_cos_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_cummin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_div_trunc_rounding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_empty_permuted_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_empty_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_eye_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_fft_fft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_fmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_igamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_index_reduce_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_eigvals_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_ldl_factor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_lstsq_grad_oriented_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_vecdot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_log10_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_log_normal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_logical_and_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_logical_not_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_mH_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_mT_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_masked_argmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_masked_cumprod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_masked_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_masked_normalize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_max_pool2d_with_indices_backward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_median_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_msort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_mvlgamma_mvlgamma_p_5_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_native_batch_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_alpha_dropout_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_avg_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_conv2d_stride_padding_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_conv2d_strided_padding_dilation_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_conv2d_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_interpolate_bicubic_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_interpolate_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_interpolate_nearest_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_normalize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_poisson_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_soft_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_softsign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_upsample_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_normal_number_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_ops_aten_index_put_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_pca_lowrank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_polygamma_polygamma_n_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_quantile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_randint_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_reshape_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_scatter_reduce_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_signal_windows_general_cosine_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_signal_windows_hann_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_sinc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_hermite_polynomial_he_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_i0e_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_modified_bessel_k0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_sqrt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_stft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_trapz_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_unbind_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_unfold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_unsafe_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_var_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_view_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmapvmap_MulGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmapvmap_ScaleGradGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_CubeGenVmapAutogradFunction_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_NumpyExpMarkDirtyAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_NumpyExpMarkDirtyAutogradFunction_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_NumpyMulAutogradFunction_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad___rpow___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad__batch_norm_with_update_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad__chunk_cat_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_addmv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_angle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_argsort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_as_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_asin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_asin_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_asinh_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_atan2_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_atan_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_atleast_3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_bfloat16_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_bfloat16_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_bfloat16_functorch_no_channels_last_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_bucketize_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_char_functorch_no_channels_last_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_clamp_min_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_column_stack_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_conj_physical_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cos_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cummax_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cummin_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_diagflat_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_diagonal_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_dist_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_double_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_double_functorch_no_channels_last_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_dsplit_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_dstack_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_empty_like_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_erfc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_expm1_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_eye_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_fftn_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_hfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_ifftn_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_ihfftn_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_irfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_flip_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fliplr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fliplr_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_flipud_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fmod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_gt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_hypot_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_igamma_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_index_copy_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_index_put_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_index_reduce_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_isin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_jiterator_unary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_cholesky_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_diagonal_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_eigvalsh_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_lstsq_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_qr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_svdvals_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_log1p_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_logspace_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_lu_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_lu_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_cumprod_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_fill_functorch_Scalar_only_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_log_softmax_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_logsumexp_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_softmax_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_meshgrid_list_of_tensors_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_movedim_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_mvlgamma_mvlgamma_p_5_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nanmedian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_native_layer_norm_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_new_empty_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_new_full_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_new_ones_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nextafter_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_adaptive_avg_pool3d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_adaptive_max_pool2d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_bilinear_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv2d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv2d_stride_padding_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv2d_stride_padding_no_bias_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_cosine_embedding_loss_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_dropout2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_embedding_bag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_fractional_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_fractional_max_pool2d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_fractional_max_pool3d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_gaussian_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_grid_sample_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_group_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_group_norm_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_interpolate_nearest-exact_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_interpolate_nearest_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_kl_div_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_layer_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_linear_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_logsigmoid_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_max_pool2d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_max_pool3d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_max_unpool2d_grad_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_max_unpool3d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_pad_replicate_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_pad_replicate_negative_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_pad_replicate_negative_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_pixel_shuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_relu6_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_relu_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_scaled_dot_product_attention_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_softshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_softsign_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_tanhshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_norm_fro_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_normal_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_normal_number_mean_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_ones_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_ormqr_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_pca_lowrank_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_polygamma_polygamma_n_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_quantile_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_rad2deg_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_randn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_randn_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_randn_like_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_real_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_renorm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_repeat_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_repeat_interleave_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_resize_as__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_resolve_conj_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_round_decimals_3_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_scatter_add_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_scatter_reduce_amin_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_scatter_reduce_mean_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_scatter_reduce_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_short_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_sigmoid_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_signal_windows_cosine_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_signal_windows_hamming_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_signal_windows_kaiser_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_bessel_j0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_chebyshev_polynomial_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_chebyshev_polynomial_t_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_chebyshev_polynomial_u_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_i0e_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_i1e_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_modified_bessel_i0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_modified_bessel_i0_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_modified_bessel_k0_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_polygamma_special_polygamma_n_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_shifted_chebyshev_polynomial_u_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_shifted_chebyshev_polynomial_w_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_split_with_sizes_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_std_unbiased_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_sub_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_tanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_to_sparse_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_topk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_trace_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_transpose_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_transpose_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_triu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_unfold_copy_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_unfold_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_unsqueeze_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_var_unbiased_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_view_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_vstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_where_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_zero__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_MulGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_NumpyMulAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_abs_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_acos_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_argmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_argwhere_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_atleast_2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_bmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_broadcast_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_byte_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_combinations_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_div_floor_rounding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_empty_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_erf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_float_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_ScaleGradGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule__softmax_backward_data_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule__unsafe_masked_index_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_atan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_bernoulli_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_block_diag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_bmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_cat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_cdist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_cdouble_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_cholesky_inverse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_deg2rad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_diagonal_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_div_trunc_rounding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_fft_irfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_geqrf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_hash_tensor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_histogramdd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_hsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_index_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_int_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_eigvals_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_eigvalsh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_inv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_lstsq_grad_oriented_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_matrix_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_log1p_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_masked_argmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_masked_cumprod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_masked_log_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_masked_softmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_mvlgamma_mvlgamma_p_5_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nansum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_new_full_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_new_ones_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_adaptive_avg_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_adaptive_avg_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_adaptive_max_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_adaptive_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_avg_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_cosine_similarity_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_dropout3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_fractional_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_gelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_glu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_hardshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_hardsigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_hardswish_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_instance_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_interpolate_bicubic_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_max_unpool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_mse_loss_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_pad_circular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_pad_replicate_negative_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_poisson_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_rms_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_ops_aten_index_put_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_qr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_resize__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_resize_as__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_resolve_conj_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_resolve_neg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_scatter_reduce_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_sin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_laguerre_polynomial_l_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_modified_bessel_i1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_ndtr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_shifted_chebyshev_polynomial_u_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_sqrt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_square_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_squeeze_multiple_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_stack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_take_along_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_to_sparse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_triu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_trunc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_view_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_xlogy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_hash_tensor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_index_reduce_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_int_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_isreal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_kron_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_norm_subgradients_at_zero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_pinv_hermitian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_slogdet_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_log10_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_lu_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_lu_unpack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_masked_softmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_meshgrid_variadic_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_native_layer_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_conv2d_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_conv2d_stride_depthwise_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_conv2d_stride_padding_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_conv2d_stride_padding_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_conv2d_strided_padding_dilation_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_fractional_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_gaussian_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_glu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_hardtanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_interpolate_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_interpolate_linear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_max_unpool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_mish_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_mse_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_multilabel_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_normalize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_pad_constant_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_pdist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_pixel_unshuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_relu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_rrelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_softshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_ops_aten__new_zeros_with_same_feature_meta_functorchonly_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_ormqr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_pinverse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_polygamma_polygamma_n_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_polygamma_polygamma_n_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_repeat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_reshape_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_round_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_signal_windows_cosine_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_signal_windows_general_hamming_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_sinh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_chebyshev_polynomial_w_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_laguerre_polynomial_l_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_modified_bessel_i0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_ndtr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_polygamma_special_polygamma_n_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_scaled_modified_bessel_k1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_tanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_to_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_transpose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_trapezoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_trapz_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_unsafe_chunk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_MulGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_SelectGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp___radd___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp___rmatmul___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp__native_batch_norm_legit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp__segment_reduce_lengths_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp__softmax_backward_data_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_as_strided_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_atan2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_block_diag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_bool_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_chalf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_cholesky_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_cumulative_trapezoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_diagonal_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_diagonal_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_dist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_dsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_erfc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_exp2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_fft_hfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_fft_ifft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_fft_irfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_fft_rfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_half_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_igammac_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_index_reduce_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_inv_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_lu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_pinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_svdvals_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linspace_tensor_overload_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_log1p_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_log_normal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_logical_and_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_logical_or_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_masked_median_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nan_to_num_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nanmean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_narrow_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_new_zeros_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_adaptive_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_conv2d_stride_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_conv2d_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_dropout3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_hinge_embedding_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_max_unpool1d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_max_unpool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_pad_constant_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_poisson_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_relu6_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_rrelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_norm_inf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_normal_in_place_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_ops_aten_index_put_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_rand_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_resolve_neg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_round_decimals_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_scatter_reduce_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_searchsorted_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_sigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_signal_windows_bartlett_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_signal_windows_exponential_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_softmax_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_i1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_modified_bessel_i1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_split_list_args_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_split_with_sizes_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_square_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_std_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_trace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_unsafe_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_unsqueeze_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvmap_ZeroGradientsGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_SelectGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp__unsafe_masked_index_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_abs_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_all_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_aminmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_atan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_broadcast_shapes_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_broadcast_to_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_clamp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_constant_pad_nd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_copysign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_digamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_empty_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_erf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_fft_fftshift_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_fft_irfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_fft_rfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_fliplr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_float_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_floor_divide_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_fmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_full_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_CubeGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_NumpyCubeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_NumpyTakeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_SortGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule___rmatmul___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule__softmax_backward_data_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule__upsample_bilinear2d_aa_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_acos_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_any_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_bool_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_byte_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_ceil_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_cov_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_diagflat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_dist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_empty_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_erfinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_fft_ifft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_fft_rfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_fliplr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_fmod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_geqrf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_grid_sampler_2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_histogram_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_hstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_index_put_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_index_reduce_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_int_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_jiterator_4inputs_with_extra_args_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_inv_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_ldl_factor_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_lstsq_grad_oriented_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_pinv_hermitian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_pinv_singular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_slogdet_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_vander_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_log2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_logical_and_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_logsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_long_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_masked_cumprod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_masked_logsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_masked_normalize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_masked_std_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_minimum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_mode_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nanmean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_native_dropout_backward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_neg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_new_empty_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nextafter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_adaptive_avg_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_conv2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_conv2d_stride_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_conv2d_strided_padding_dilation_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_conv_transpose3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_dropout2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_elu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_group_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_interpolate_nearest-exact_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_normalize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_pad_circular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_pad_replicate_negative_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_rrelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_silu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_upsample_nearest_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_norm_nuc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_normal_number_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_ones_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_pca_lowrank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_permute_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_pinverse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_polygamma_polygamma_n_1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_polygamma_polygamma_n_4_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_randint_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_randn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_renorm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_reshape_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_resolve_neg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_rsub_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_signbit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_sin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_sinh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_bessel_j1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_modified_bessel_i0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_modified_bessel_k1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_ndtri_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_shifted_chebyshev_polynomial_v_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_square_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_take_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_trapezoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_trunc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_uniform_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_unsafe_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_histogramdd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_hstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_igamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_index_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_isposinf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_jiterator_2inputs_2outputs_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_kthvalue_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_cholesky_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_diagonal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_pinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_qr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_vander_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_vector_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_log10_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_log_softmax_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_logcumsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_logdet_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_logical_or_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_logspace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_logsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_lu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_masked_var_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_max_pool2d_with_indices_backward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_minimum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_msort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_mul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_ne_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nextafter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_adaptive_avg_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_celu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_conv2d_stride_groups_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_conv2d_strided_padding_dilation_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_conv2d_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_conv3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_conv_transpose1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_elu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_interpolate_area_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_leaky_relu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_linear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_pad_replicate_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_threshold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_normal_number_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_ones_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_ops_aten_index_put_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_permute_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_randint_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_scalar_tensor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_select_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_sparse_mm_reduce_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_sparse_sampled_addmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_bessel_j0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_chebyshev_polynomial_u_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_modified_bessel_i0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_polygamma_special_polygamma_n_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_sqrt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_squeeze_multiple_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_take_along_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_tan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_uniform_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_NumpyTakeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_SelectGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp___rmod___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp__batch_norm_with_update_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp__segment_reduce_lengths_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp__segment_reduce_offsets_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_abs_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_acos_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_asin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_bernoulli_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_bool_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_broadcast_shapes_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_cholesky_inverse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_clone_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_column_stack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_corrcoef_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_cos_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_count_nonzero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_cumprod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_exponential_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_fft_hfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_fliplr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_float_power_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_frexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_grid_sampler_3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_histogram_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_hstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_igammac_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_isneginf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_eig_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_eigvals_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_inv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_lstsq_grad_oriented_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_pinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_svd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_log_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_log_normal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_logspace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_masked_std_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_max_pool2d_with_indices_backward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_min_reduction_no_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_mv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_native_layer_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_new_empty_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_adaptive_avg_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_adaptive_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_conv2d_stride_groups_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_conv_transpose1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_dropout2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_dropout3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_embedding_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_fractional_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_l1_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_logsigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_max_unpool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_mse_loss_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_pad_circular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_pad_constant_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_pad_reflect_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_pad_replicate_negative_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_pdist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_pixel_unshuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_prelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_soft_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_tanhshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_upsample_nearest_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_polygamma_polygamma_n_1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_scatter_reduce_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_sign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_signbit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_sinh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_bessel_y1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_chebyshev_polynomial_u_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_modified_bessel_i1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_polygamma_special_polygamma_n_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_xlog1py_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_sqrt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_squeeze_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_take_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_transpose_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_where_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_xlogy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvmap_SelectAutogradFunction_cpu_float32 2025-08-26T22:16:32.2997431Z 2025-08-26T22:16:38.0644773Z Running test_ops 4/9 ... [2025-08-26 22:16:38.063885] 2025-08-26T22:16:38.0645399Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:16:38.0653794Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops.py', '-m', 'not serial', '--shard-id=4', '--num-shards=9', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 22:16:38.065073] 2025-08-26T22:17:58.3599182Z 2025-08-26T22:17:58.3600636Z functorch/test_ops 8/8 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_ops_8.8_fdc10fa8b34df9f5_.log 2025-08-26T22:17:58.4357618Z Running 1248 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_grid_sampler_3d_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-26T22:17:58.5024010Z 2025-08-26T22:18:03.7571264Z Running test_ops 9/9 ... [2025-08-26 22:18:03.756601] 2025-08-26T22:18:03.7571988Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:18:03.7578458Z 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-26 22:18:03.757205] 2025-08-26T22:19:46.0301692Z 2025-08-26T22:19:46.0302852Z test_ops 3/9 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_3.9_d82faaee5225d590_.log 2025-08-26T22:19:46.2307251Z Running 3809 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_grid_sampler_3d_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_grid_sampler_3d_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-26T22:19:46.3998558Z 2025-08-26T22:19:52.6609557Z Running test_jiterator 1/1 ... [2025-08-26 22:19:52.660667] 2025-08-26T22:19:52.6610165Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:19:52.6619267Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_jiterator.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 22:19:52.661291] 2025-08-26T22:19:59.3797094Z 2025-08-26T22:19:59.3798318Z test_jiterator 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_jiterator_1.1_4ca3e0e653f8caad_.log 2025-08-26T22:19:59.3800415Z Running 0 items in this shard: 2025-08-26T22:19:59.3800880Z 2025-08-26T22:20:06.0735843Z Running test_meta 3/4 ... [2025-08-26 22:20:06.072520] 2025-08-26T22:20:06.0736265Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:20:06.0746296Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_meta.py', '-m', 'not serial', '--shard-id=3', '--num-shards=4', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 22:20:06.072520] 2025-08-26T22:26:12.3275378Z 2025-08-26T22:26:12.3276234Z test_ops 4/9 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_4.9_7eeea3b63f524bab_.log 2025-08-26T22:26:12.4471086Z Running 3833 items in this shard: test/test_ops.py::TestCommonCPU::test_compare_cpu__batch_norm_with_update_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs__conversions_cfloat_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs__conversions_polar_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_addcdiv_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_as_strided_partial_views_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_atleast_1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_contiguous_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_diag_embed_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_diagonal_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_div_trunc_rounding_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_exponential_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_hsplit_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_index_select_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_istft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_lerp_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_linalg_vector_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_logspace_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_narrow_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_select_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_special_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_special_zeta_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_unsqueeze_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_var_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__softmax_backward_data_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_as_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_bernoulli_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_bfloat16_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_byte_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_constant_pad_nd_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_div_trunc_rounding_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_flipud_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_full_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_index_add_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_index_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_index_put_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_index_select_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_cond_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_eig_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_eigvals_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_matrix_rank_hermitian_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_logspace_tensor_overload_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_lu_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_lu_unpack_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_masked_softmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_matmul_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nanquantile_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_cross_entropy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_gaussian_nll_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_hardswish_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_interpolate_bicubic_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_interpolate_nearest_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_multi_head_attention_forward_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_normal_in_place_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_ormqr_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_outer_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_slice_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_special_chebyshev_polynomial_w_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_stack_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_t_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_torch__scaled_mm_cpu_float8_e4m3fn, test/test_ops.py::TestCommonCPU::test_compare_cpu_true_divide_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_var_mean_unbiased_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_var_unbiased_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_zeros_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_as_strided_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_as_strided_partial_views_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_atleast_1d_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_bfloat16_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_conj_physical_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_empty_like_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_mul_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_norm_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_select_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_squeeze_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_unflatten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_dtypes___radd___cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_T_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs__conversions_cfloat_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_add_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_amin_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_any_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_broadcast_to_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_deg2rad_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_digamma_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_expand_copy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_fft_fft2_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_fft_hfft2_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_fft_ifft_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_fft_ihfft2_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_fft_ihfft_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_fft_irfft2_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_fliplr_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_fmax_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_index_fill_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_linspace_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_logical_and_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_logical_xor_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_logspace_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_mul_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_narrow_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_new_full_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_alpha_dropout_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_elu_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_group_norm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_l1_loss_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_margin_ranking_loss_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_relu6_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_smooth_l1_loss_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_softplus_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_reciprocal_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_squeeze_multiple_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_view_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__upsample_bilinear2d_aa_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_alias_copy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_amax_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_atleast_2d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_bitwise_right_shift_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_bucketize_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_cholesky_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_clamp_min_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_contiguous_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_cosh_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_cumsum_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_cumulative_trapezoid_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_dist_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_fliplr_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_grid_sampler_2d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_hash_tensor_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_histogramdd_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_isfinite_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_jiterator_2inputs_2outputs_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_kthvalue_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_lcm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_cholesky_ex_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_vecdot_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linspace_tensor_overload_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_log10_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_log_softmax_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_log_softmax_with_dtype_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_logspace_tensor_overload_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_masked_var_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_mean_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_min_reduction_with_dim_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_narrow_copy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_adaptive_avg_pool1d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_fractional_max_pool2d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_group_norm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_hardtanh_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_huber_loss_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_multi_head_attention_forward_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_triplet_margin_loss_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_ormqr_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_outer_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_polar_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_randint_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_rot90_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_scatter_reduce_mean_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_signal_windows_blackman_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_signal_windows_gaussian_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_signal_windows_general_hamming_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_airy_ai_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_chebyshev_polynomial_t_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_chebyshev_polynomial_u_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_hermite_polynomial_h_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_ndtri_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_shifted_chebyshev_polynomial_v_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_split_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_sum_to_size_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_svd_lowrank_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_t_copy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_t_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_torch__scaled_mm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_unique_consecutive_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_unique_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_view_copy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_zeros_cpu, test/test_ops.py::TestCommonCPU::test_errors___rsub___cpu, test/test_ops.py::TestCommonCPU::test_errors__chunk_cat_cpu, test/test_ops.py::TestCommonCPU::test_errors_amax_cpu, test/test_ops.py::TestCommonCPU::test_errors_diagonal_cpu, test/test_ops.py::TestCommonCPU::test_errors_empty_permuted_cpu, test/test_ops.py::TestCommonCPU::test_errors_eq_cpu, test/test_ops.py::TestCommonCPU::test_errors_fmax_cpu, test/test_ops.py::TestCommonCPU::test_errors_gt_cpu, test/test_ops.py::TestCommonCPU::test_errors_hypot_cpu, test/test_ops.py::TestCommonCPU::test_errors_isclose_cpu, test/test_ops.py::TestCommonCPU::test_errors_le_cpu, test/test_ops.py::TestCommonCPU::test_errors_logcumsumexp_cpu, test/test_ops.py::TestCommonCPU::test_errors_logspace_cpu, test/test_ops.py::TestCommonCPU::test_errors_mul_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_gaussian_nll_loss_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_hardtanh_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_l1_loss_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_multilabel_margin_loss_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_prelu_cpu, test/test_ops.py::TestCommonCPU::test_errors_pow_cpu, test/test_ops.py::TestCommonCPU::test_errors_sparse_randn_like_layout0_cpu, test/test_ops.py::TestCommonCPU::test_errors_sparse_sum_layout0_cpu, test/test_ops.py::TestCommonCPU::test_errors_sparse_zeros_like_layout4_cpu, test/test_ops.py::TestCommonCPU::test_errors_special_chebyshev_polynomial_u_cpu, test/test_ops.py::TestCommonCPU::test_errors_special_chebyshev_polynomial_w_cpu, test/test_ops.py::TestCommonCPU::test_errors_special_zeta_cpu, test/test_ops.py::TestCommonCPU::test_errors_triu_cpu, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_addmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_conj_physical_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_cosh_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_cumsum_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_diff_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_dot_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_dstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_exp2_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_fft_hfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_fft_ifftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_fft_irfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_histogramdd_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_igammac_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_eig_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_lu_factor_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_lu_factor_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_qr_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_log10_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_logical_and_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_logical_or_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_logspace_tensor_overload_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_maximum_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_nextafter_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_nn_functional_softplus_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_normal_number_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_pow_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_reciprocal_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_scatter_add_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_sparse_sampled_addmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_airy_ai_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_ndtri_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_sqrt_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_where_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices___rand___cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices___rmul___cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices___rxor___cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices__native_batch_norm_legit_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_add_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_addcmul_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_amin_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_argmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_argwhere_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_asin_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_atan2_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_atleast_2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_block_diag_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_bmm_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_cartesian_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_ceil_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_cfloat_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_column_stack_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_copysign_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_cross_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_cummin_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_cumsum_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_diagflat_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_diagonal_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_div_trunc_rounding_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_dot_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_empty_like_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_empty_permuted_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_erfc_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_expand_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_fft_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_hfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_ihfft_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_ihfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_ihfftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_fill_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_flipud_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_floor_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_frac_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_ge_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_geometric_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_heaviside_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_hypot_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_isnan_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_jiterator_binary_return_by_ref_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_householder_product_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_matrix_rank_hermitian_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_multi_dot_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_vander_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_log_normal_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_logaddexp2_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_logcumsumexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_logspace_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_logsumexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_long_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_logsumexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_sum_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_meshgrid_list_of_tensors_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_mul_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_mvlgamma_mvlgamma_p_3_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nansum_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_narrow_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_narrow_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_native_dropout_backward_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_new_empty_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_alpha_dropout_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_avg_pool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_avg_pool2d_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_bilinear_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_celu_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_channel_shuffle_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_conv1d_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_conv_transpose2d_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_conv_transpose3d_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_ctc_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_dropout2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_fractional_max_pool3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_gelu_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_hardswish_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_max_pool2d_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_max_unpool3d_grad_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_poisson_nll_loss_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_prelu_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_silu_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_smooth_l1_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_soft_margin_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_triplet_margin_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_triplet_margin_loss_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_pca_lowrank_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_polygamma_polygamma_n_3_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_repeat_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_rsub_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_scatter_add_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_scatter_reduce_mean_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_scatter_reduce_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_scatter_reduce_sum_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_sigmoid_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_sign_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_signal_windows_exponential_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_signal_windows_general_hamming_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_sinc_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_sinh_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_chebyshev_polynomial_u_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_chebyshev_polynomial_w_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_entr_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_log_ndtr_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_modified_bessel_i1_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_modified_bessel_k1_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_scaled_modified_bessel_k0_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_xlog1py_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_zeta_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_split_list_args_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_split_with_sizes_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_stack_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_take_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_true_divide_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_unflatten_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_view_as_complex_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_view_as_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_vsplit_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_vstack_cpu_int64, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_amax_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_any_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_argwhere_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_asinh_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_atan2_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_contiguous_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_copysign_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_diagflat_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_empty_like_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_empty_strided_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_fft_fftshift_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_fft_ifftn_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_fft_ihfft2_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_flipud_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_fmin_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_index_add_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_index_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_int_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_isfinite_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_jiterator_binary_return_by_ref_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_le_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_long_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_masked_select_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_max_binary_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_max_reduction_no_dim_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_min_reduction_no_dim_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_msort_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_nn_functional_channel_shuffle_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_nn_functional_pixel_shuffle_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_polygamma_polygamma_n_1_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_resize__cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_resolve_neg_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_sigmoid_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_sort_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_airy_ai_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_i0e_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_shifted_chebyshev_polynomial_u_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_squeeze_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_squeeze_multiple_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_take_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_unsafe_split_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_vstack_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_xlogy_cpu_bool, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples___radd___cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples___rdiv___cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples___rmul___cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples___rmul___cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_acos_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_acosh_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_add_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_addcmul_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_addcmul_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_addmm_decomposed_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_alias_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_all_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_all_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_allclose_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_amin_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_argmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_argmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_argmin_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_atanh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_atanh_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_atleast_2d_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_bitwise_xor_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cat_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cat_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cauchy_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cdouble_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cfloat_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_chalf_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cholesky_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_clone_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_clone_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_clone_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_combinations_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_combinations_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_conj_physical_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cos_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cosh_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cross_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cross_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cumsum_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cumulative_trapezoid_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cumulative_trapezoid_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_diagonal_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_diff_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_double_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_eq_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_exp_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_exp_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_expand_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_hfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_ifft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_ihfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_ihfftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_irfft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_irfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_irfftn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_irfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fill_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fliplr_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fliplr_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_full_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_full_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_full_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_gather_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_ge_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_geqrf_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_grid_sampler_2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_heaviside_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_index_fill_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_index_reduce_mean_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_inner_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_isfinite_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_isinf_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_isinf_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_isreal_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_jiterator_4inputs_with_extra_args_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_jiterator_binary_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_kthvalue_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_cholesky_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_cross_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_det_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_eigh_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_eigvalsh_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_inv_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_ldl_factor_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_lstsq_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_lu_factor_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_lu_solve_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_pinv_singular_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_pinv_singular_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_slogdet_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_tensorsolve_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_vander_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_vector_norm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_log2_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logcumsumexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logical_not_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logical_xor_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_mT_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_argmin_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_cumprod_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_logsumexp_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_mean_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_scatter_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_select_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_softmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_matrix_exp_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_max_pool2d_with_indices_backward_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_max_reduction_with_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_mm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_msort_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_multinomial_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nansum_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_narrow_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_native_layer_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_avg_pool3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_avg_pool3d_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_channel_shuffle_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_conv1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_conv1d_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_conv2d_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_conv3d_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_dropout2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_elu_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_embedding_bag_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_embedding_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_fractional_max_pool3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_hardtanh_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_max_unpool1d_grad_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_max_unpool2d_grad_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_max_unpool3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_pad_constant_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_pad_reflect_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_pad_replicate_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_pad_replicate_negative_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_pairwise_distance_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_poisson_nll_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_softsign_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_tanhshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_triplet_margin_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_upsample_bilinear_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nonzero_static_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_norm_fro_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_outer_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_permute_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_polygamma_polygamma_n_2_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_polygamma_polygamma_n_3_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_polygamma_polygamma_n_3_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_reciprocal_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_reciprocal_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_renorm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_resize__cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_resize_as__cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_resolve_conj_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_round_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_round_decimals_0_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_scatter_reduce_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_scatter_reduce_sum_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_searchsorted_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_short_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sign_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sinc_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sinh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_slice_scatter_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sparse_sampled_addmm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_airy_ai_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_hermite_polynomial_h_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_hermite_polynomial_he_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_i0e_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_modified_bessel_k0_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_split_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_split_with_sizes_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_std_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_stft_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sum_to_size_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_take_along_dim_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_tan_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_tensordot_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_trace_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_tril_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_tril_indices_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unfold_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_uniform_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unsafe_chunk_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unsafe_split_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unsqueeze_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_var_unbiased_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_view_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_vsplit_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_zeros_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_zeros_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_numpy_ref_aminmax_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_aminmax_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_cat_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_equal_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_item_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_jiterator_4inputs_with_extra_args_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_linalg_tensorinv_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_linalg_vander_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_native_layer_norm_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_nn_functional_conv_transpose2d_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_signal_windows_cosine_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_squeeze_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_tile_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_unbind_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_where_cpu_complex128, test/test_ops.py::TestCommonCPU::test_out_H_cpu_float32, test/test_ops.py::TestCommonCPU::test_out___ror___cpu_int64, test/test_ops.py::TestCommonCPU::test_out___rsub___cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs__conversions_polar_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_acos_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_addcdiv_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_addcmul_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_all_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_as_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_as_strided_partial_views_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_atan_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_bitwise_left_shift_cpu_int64, test/test_ops.py::TestCommonCPU::test_out__refs_bitwise_xor_cpu_int64, test/test_ops.py::TestCommonCPU::test_out__refs_broadcast_shapes_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_clamp_max_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_constant_pad_nd_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_diagonal_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_div_trunc_rounding_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_empty_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_fft_fftshift_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_fft_hfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_fft_ifft_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_fft_ihfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_linalg_matrix_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_log_normal_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_logaddexp2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_narrow_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_neg_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_new_zeros_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_hinge_embedding_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_l1_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_mse_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_relu6_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_softmin_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_positive_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_select_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_sin_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_special_i1_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_sqrt_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_square_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_tan_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_view_as_complex_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_view_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_where_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_argmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_broadcast_tensors_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_bucketize_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_clone_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_cov_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_diagonal_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_digamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_dot_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_double_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_empty_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_erfc_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_fft_hfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_fmod_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_full_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_gather_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_index_add_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_index_put_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_index_reduce_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_jiterator_2inputs_2outputs_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_lgamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_cholesky_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_cond_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_lu_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_solve_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_svd_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_tensorsolve_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_masked_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_masked_var_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_minimum_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_mode_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_mul_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_narrow_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_new_empty_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_batch_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_conv_transpose1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_cross_entropy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_ctc_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_embedding_bag_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_logsigmoid_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_normalize_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_pad_replicate_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_pad_replicate_negative_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_pixel_shuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_relu6_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_softmin_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_normal_in_place_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_ones_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_polygamma_polygamma_n_0_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error__batch_norm_with_update_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_atan_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_atanh_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_bmm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_clamp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_column_stack_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_cummin_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_cumsum_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_div_no_rounding_mode_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_dot_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_erfinv_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fft_fft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fft_ifftn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fft_ihfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_kron_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_lu_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_pinv_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_solve_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_solve_ex_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_logcumsumexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_logspace_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_max_reduction_no_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_max_reduction_with_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_min_reduction_with_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_mode_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_pow_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_qr_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_rad2deg_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_scatter_reduce_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_special_i0e_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_special_ndtri_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_stack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_take_along_dim_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_tan_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_topk_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_true_divide_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_trunc_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_unfold_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_vdot_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_vstack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_reshape_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_scatter_reduce_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_select_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_signal_windows_exponential_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_signal_windows_general_hamming_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_sinc_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_sinh_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_bessel_j0_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_entr_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_i1_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_laguerre_polynomial_l_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_log_ndtr_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_unique_consecutive_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_unravel_index_cpu_int64, test/test_ops.py::TestCommonCPU::test_out_var_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_var_unbiased_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_warning__refs__conversions_chalf_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_allclose_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_bitwise_and_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_ceil_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_cos_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_count_nonzero_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_cumprod_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_fft_irfftn_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_floor_divide_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_heaviside_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_index_copy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_index_fill_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_item_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_linalg_vecdot_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_logaddexp2_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_lt_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_meshgrid_list_of_tensors_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_new_ones_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_hinge_embedding_loss_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_margin_ranking_loss_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_pixel_shuffle_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_poisson_nll_loss_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_softshrink_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_tanhshrink_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_normal_number_mean_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_permute_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_reshape_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_roll_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_rsub_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_special_i0e_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_sqrt_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_stft_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_t_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_trunc_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_addmm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_addmm_decomposed_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_addr_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_as_strided_copy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_atan2_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_bitwise_not_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_broadcast_tensors_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_byte_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_cauchy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_cdouble_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_copysign_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_cross_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_diag_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_div_floor_rounding_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_expand_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_fft_fftn_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_fft_ifft2_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_flatten_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_fmax_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_frac_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_igamma_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_imag_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_solve_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_tensorinv_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_logspace_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_masked_softmax_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_meshgrid_list_of_tensors_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_min_reduction_no_dim_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_mm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_mul_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_native_batch_norm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_avg_pool3d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_binary_cross_entropy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_gelu_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_interpolate_linear_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_max_pool2d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_max_unpool2d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_pixel_shuffle_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_poisson_nll_loss_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_silu_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_softplus_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_triplet_margin_loss_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_triplet_margin_with_distance_loss_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_normal_in_place_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_polygamma_polygamma_n_1_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_randint_like_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_repeat_interleave_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_rot90_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_round_decimals_0_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_sgn_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_signal_windows_hann_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_slice_scatter_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_hermite_polynomial_h_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_ndtri_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_spherical_bessel_j0_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_squeeze_multiple_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_std_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_unique_consecutive_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_var_unbiased_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_zeros_like_cpu, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_acosh_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_acosh_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_atan_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_copysign_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_copysign_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_cos_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_deg2rad_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_digamma_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_exp2_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_exp2_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_exp_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_i0_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_ldexp_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_lgamma_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_lgamma_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_log1p_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_log2_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_log_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_masked_std_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_masked_var_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_mvlgamma_mvlgamma_p_1_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_0_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_3_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_3_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_4_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_4_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sigmoid_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sin_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_chebyshev_polynomial_t_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_chebyshev_polynomial_v_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_chebyshev_polynomial_w_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_hermite_polynomial_h_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_laguerre_polynomial_l_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_legendre_polynomial_p_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_legendre_polynomial_p_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_shifted_chebyshev_polynomial_t_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_xlog1py_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_xlog1py_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_zeta_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_tan_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_true_divide_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_T_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_bfloat16_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_bool_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_byte_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_cdouble_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_cdouble_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_cdouble_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_cfloat_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_cfloat_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_chalf_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_chalf_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_chalf_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_chalf_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_char_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_complex_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_float_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_float_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_long_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_long_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_polar_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_abs_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_abs_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_acosh_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_add_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_add_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addcmul_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addr_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addr_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addr_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_alias_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_alias_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_all_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_allclose_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_amax_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_amin_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_amin_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_amin_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_any_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_arange_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_scatter_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_scatter_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_asinh_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_asinh_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atan2_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atan2_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atan2_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atan2_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atan_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atanh_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_1d_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_3d_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_or_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_block_diag_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_block_diag_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_broadcast_tensors_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_broadcast_tensors_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_broadcast_tensors_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_broadcast_to_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bucketize_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cat_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ceil_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ceil_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ceil_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_chunk_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_chunk_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_max_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_max_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_min_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clone_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clone_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clone_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_column_stack_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_column_stack_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_conj_physical_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_conj_physical_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_conj_physical_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_contiguous_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cos_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cos_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cos_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cosh_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_count_nonzero_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_count_nonzero_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_count_nonzero_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cumprod_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cumprod_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cumsum_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cumsum_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cumsum_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_deg2rad_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_deg2rad_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_deg2rad_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diag_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diag_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diag_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_scatter_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_scatter_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_digamma_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_digamma_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_div_trunc_rounding_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dsplit_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dsplit_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dsplit_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dstack_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dstack_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dstack_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_strided_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_strided_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_strided_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_eq_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erf_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erf_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erf_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erfc_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erfc_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_exp2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_exp2_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_exp2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_as_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_as_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_as_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expm1_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_exponential_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_eye_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_eye_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fft_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fftshift_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfft2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfft_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifft_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifftn_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifftshift_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifftshift_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ihfft2_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ihfftn_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ihfftn_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_irfft2_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_irfft_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_irfftn_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fill_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flatten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flatten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flip_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flip_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flipud_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flipud_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_float_power_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_floor_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_floor_divide_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fmax_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fmin_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fmod_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fmod_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_frac_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_frexp_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_gcd_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ge_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ge_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_geometric_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_geometric_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_gt_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_gt_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_heaviside_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hstack_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hypot_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_i0_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_i0_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_igamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_igamma_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_imag_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_add_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_add_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_add_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_add_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_add_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_fill_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_fill_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_fill_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_select_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isclose_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isclose_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isfinite_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isfinite_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isfinite_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isinf_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isinf_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isinf_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isnan_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isnan_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isneginf_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_item_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_item_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_le_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_le_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lgamma_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lgamma_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_cross_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_cross_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_diagonal_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_diagonal_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_diagonal_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_diagonal_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_matrix_norm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_matrix_norm_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_svdvals_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_svdvals_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_vecdot_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_vector_norm_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linspace_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linspace_tensor_overload_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log10_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log1p_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log2_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log_softmax_with_dtype_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log_softmax_with_dtype_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logaddexp_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_and_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_not_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_or_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_or_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_xor_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logspace_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logspace_tensor_overload_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logsumexp_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logsumexp_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logsumexp_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lt_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_masked_fill_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_meshgrid_list_of_tensors_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_meshgrid_list_of_tensors_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_minimum_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_movedim_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_movedim_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_movedim_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_mul_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_mul_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_mul_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_mul_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nan_to_num_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_narrow_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_narrow_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_narrow_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ne_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ne_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_empty_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_empty_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_empty_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_empty_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_full_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_full_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_full_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_ones_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_zeros_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_zeros_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_celu_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_channel_shuffle_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_gelu_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_hardshrink_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_huber_loss_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_huber_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_layer_norm_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_log_softmax_with_dtype_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_log_softmax_with_dtype_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_margin_ranking_loss_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pairwise_distance_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pairwise_distance_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pixel_shuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pixel_shuffle_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pixel_shuffle_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pixel_unshuffle_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_relu6_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_relu_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_selu_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softmax_with_dtype_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softmin_with_dtype_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softshrink_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_tanhshrink_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_triplet_margin_loss_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_triplet_margin_loss_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_triplet_margin_loss_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_norm_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_norm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_normal_number_mean_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_normal_number_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_normal_number_mean_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_permute_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_permute_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_permute_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_permute_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_pow_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_pow_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_pow_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_pow_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_prod_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rad2deg_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_randn_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_randn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ravel_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_real_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_real_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_remainder_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_renorm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_renorm_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_repeat_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reshape_as_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reshape_as_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_roll_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rot90_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rsqrt_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rsub_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rsub_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_select_scatter_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sgn_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sgn_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sigmoid_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_signbit_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_signbit_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_signbit_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sin_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sin_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sinc_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sinc_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sinc_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sinc_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sinc_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sinh_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sinh_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_softmax_with_dtype_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_softmax_with_dtype_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_bessel_j0_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_bessel_j1_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_bessel_j1_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_erfcx_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i1e_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_log_ndtr_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_logit_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_multigammaln_mvlgamma_p_3_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_multigammaln_mvlgamma_p_5_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_ndtr_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_ndtr_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_ndtr_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_ndtri_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_softmax_with_dtype_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_softmax_with_dtype_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_softmax_with_dtype_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_spherical_bessel_j0_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_xlog1py_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_split_with_sizes_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sqrt_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_square_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_multiple_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_std_mean_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sub_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sub_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sub_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sum_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sum_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sum_to_size_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_t_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_t_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_t_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_take_along_dim_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tan_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tan_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_trace_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_trace_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_transpose_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_transpose_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_transpose_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tril_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_triu_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_triu_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_triu_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_true_divide_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unbind_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unbind_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unbind_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unbind_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unflatten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unsqueeze_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unsqueeze_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unsqueeze_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unsqueeze_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unsqueeze_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unsqueeze_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_as_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_as_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_as_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vsplit_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vstack_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_xlogy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_zeros_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_zeros_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_zeros_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_zeros_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_atan2_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_bitwise_and_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_fft_hfft_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_gcd_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_hypot_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_igamma_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_index_select_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_lcm_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_mul_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_narrow_copy_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_special_zeta_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_trace_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_view_as_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_vsplit_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_T_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_T_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_bfloat16_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_bool_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_byte_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_cfloat_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_char_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_char_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_char_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_complex_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_double_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_double_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_double_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_float_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_float_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_float_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_half_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_long_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_short_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_abs_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_abs_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_acosh_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_acosh_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_add_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_add_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addcdiv_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addcmul_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addr_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addr_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_alias_copy_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_alias_copy_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_alias_copy_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_alias_copy_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_amax_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_amin_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_amin_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_any_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_partial_views_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_partial_views_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_scatter_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_scatter_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_asin_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_asin_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_asin_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_asinh_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_asinh_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atan2_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atan2_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atan2_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atan2_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atanh_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atanh_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_1d_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_1d_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_2d_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_3d_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_not_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_not_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_not_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_xor_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_xor_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_xor_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_broadcast_tensors_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_broadcast_tensors_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_broadcast_to_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_broadcast_to_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bucketize_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cat_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cat_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cauchy_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cauchy_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_chunk_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clamp_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clamp_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clamp_max_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clamp_max_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clamp_min_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clamp_min_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clamp_min_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_column_stack_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_column_stack_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_conj_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_conj_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_conj_physical_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_conj_physical_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cos_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cosh_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cosh_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cosh_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_count_nonzero_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_count_nonzero_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_count_nonzero_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cumprod_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cumsum_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cumsum_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cumsum_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_deg2rad_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_deg2rad_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_deg2rad_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diag_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_copy_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_copy_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_div_floor_rounding_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_div_trunc_rounding_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dstack_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dstack_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_strided_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_equal_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_erf_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_erf_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_erfc_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_erfc_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_erfc_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_erfinv_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_erfinv_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_exp2_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_exp2_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_as_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expm1_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_exponential_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_eye_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_eye_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fft_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fftn_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_hfft2_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_hfft2_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_hfft2_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_hfft2_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_hfft_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifft_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifftshift_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifftshift_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifftshift_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifftshift_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ihfft2_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ihfft2_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ihfft2_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ihfftn_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_irfft2_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_irfft_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_irfftn_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_irfftn_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_irfftn_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_rfft2_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_rfft_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_rfftn_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fill_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flatten_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flatten_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flip_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flip_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fliplr_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fliplr_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_float_power_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_float_power_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fmax_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fmin_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fmod_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_frac_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_frexp_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_gcd_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ge_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ge_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_geometric_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_gt_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_heaviside_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_hypot_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_i0_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_i0_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_igamma_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_igammac_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_add_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_add_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_copy_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_fill_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_select_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_select_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isclose_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isclose_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isclose_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isclose_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isfinite_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isinf_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isnan_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isnan_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isneginf_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isposinf_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isreal_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isreal_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_item_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_item_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lcm_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lcm_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lgamma_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lgamma_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_cross_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_cross_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_matrix_norm_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_svd_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_svdvals_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_vecdot_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_vecdot_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_vector_norm_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_vector_norm_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linspace_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linspace_tensor_overload_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linspace_tensor_overload_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log10_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log10_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log1p_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log1p_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log1p_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log_normal_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log_softmax_with_dtype_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log_softmax_with_dtype_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logaddexp_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_or_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_xor_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_xor_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logspace_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logsumexp_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lt_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lt_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lt_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lt_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_masked_fill_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_maximum_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_mean_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_meshgrid_list_of_tensors_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_meshgrid_variadic_tensors_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_movedim_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_mul_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nan_to_num_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_narrow_copy_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_narrow_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_narrow_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_native_layer_norm_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_neg_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_neg_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_empty_strided_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_empty_strided_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_empty_strided_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_full_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_ones_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_zeros_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_zeros_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_alpha_dropout_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_alpha_dropout_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_celu_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_channel_shuffle_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_gelu_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_glu_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_hardshrink_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_hardtanh_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_hinge_embedding_loss_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_huber_loss_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_layer_norm_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_log_softmax_with_dtype_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_log_softmax_with_dtype_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_margin_ranking_loss_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_margin_ranking_loss_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_nll_loss_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pairwise_distance_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pairwise_distance_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pdist_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pixel_shuffle_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pixel_shuffle_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pixel_unshuffle_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pixel_unshuffle_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_poisson_nll_loss_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_relu6_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_softmax_with_dtype_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_softmin_with_dtype_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_softmin_with_dtype_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_triplet_margin_loss_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_triplet_margin_loss_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_normal__in_place_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_normal__in_place_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_normal_number_mean_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ones_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ones_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ones_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_permute_copy_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_permute_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_positive_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rad2deg_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ravel_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_real_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_real_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reciprocal_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_repeat_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reshape_as_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reshape_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rot90_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rot90_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rot90_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rsqrt_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rsqrt_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rsub_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rsub_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rsub_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_select_scatter_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sigmoid_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sign_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sign_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sign_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_signbit_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sin_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sinh_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_bessel_j0_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_entr_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_erfcx_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_erfcx_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_i1e_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_log_ndtr_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_log_ndtr_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_log_softmax_with_dtype_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_log_softmax_with_dtype_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_log_softmax_with_dtype_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_logit_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_logit_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_logit_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_multigammaln_mvlgamma_p_1_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_multigammaln_mvlgamma_p_1_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_multigammaln_mvlgamma_p_1_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_multigammaln_mvlgamma_p_3_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_multigammaln_mvlgamma_p_5_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_multigammaln_mvlgamma_p_5_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_multigammaln_mvlgamma_p_5_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_multigammaln_mvlgamma_p_5_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_ndtr_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_softmax_with_dtype_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_spherical_bessel_j0_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_xlog1py_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_xlog1py_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_split_with_sizes_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sqrt_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_square_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_copy_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_copy_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_stack_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_stack_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sub_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sub_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sub_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sum_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sum_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sum_to_size_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_t_copy_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_t_copy_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_t_copy_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_t_copy_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_t_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_t_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_take_along_dim_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_take_along_dim_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tan_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tan_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tan_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tanh_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tensor_split_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_trace_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tril_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tril_indices_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_triu_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_triu_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_triu_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_triu_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_triu_indices_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_trunc_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unbind_copy_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unbind_copy_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unbind_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unbind_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unbind_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unfold_copy_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unfold_copy_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unfold_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unsqueeze_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unsqueeze_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_var_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_var_mean_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vdot_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vdot_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_as_complex_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_copy_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vsplit_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vstack_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vstack_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vstack_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vstack_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_where_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_zeros_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_T_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_bool_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_bool_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_bool_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_byte_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_cfloat_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_cfloat_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_cfloat_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_chalf_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_double_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_double_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_double_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_float_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_long_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_polar_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_polar_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_short_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_short_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_acos_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_acos_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_acosh_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_add_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_add_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addr_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addr_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addr_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_alias_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_alias_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_allclose_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_amax_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_amax_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_amax_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_amin_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_amin_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_any_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_arange_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_arange_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_partial_views_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_partial_views_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_scatter_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_asinh_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_asinh_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atanh_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_2d_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_3d_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_not_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_not_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_or_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_or_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_or_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_or_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_right_shift_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_block_diag_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_block_diag_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_broadcast_shapes_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_broadcast_tensors_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_broadcast_to_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_broadcast_to_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bucketize_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cat_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ceil_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_chunk_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clamp_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clamp_max_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clamp_min_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clamp_min_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clone_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clone_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_column_stack_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_column_stack_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_copysign_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cos_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cosh_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cosh_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_count_nonzero_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_count_nonzero_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cumprod_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cumprod_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cumsum_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cumsum_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diag_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diag_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diag_embed_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diag_embed_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diag_embed_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_scatter_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_scatter_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_floor_rounding_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_floor_rounding_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_no_rounding_mode_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_trunc_rounding_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_trunc_rounding_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dot_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dot_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dsplit_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dstack_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dstack_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_like_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_strided_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_strided_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_erf_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_erfinv_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_exp2_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_exp2_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_exp_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_exp_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_exp_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_exp_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_exp_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_as_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_exponential_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_exponential_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_eye_cpu_float8_e5m2fnuz, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fft2_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fft_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fftshift_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fftshift_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_hfft2_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_hfft2_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_hfft_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifft2_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifftshift_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ihfft2_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfft2_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfft_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfft_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfftn_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_rfftn_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fill_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fill_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fill_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fill_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flatten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flip_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flip_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flip_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flip_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flip_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fliplr_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flipud_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_float_power_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_floor_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_floor_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_floor_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_floor_divide_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fmin_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fmod_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_frac_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_gcd_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ge_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_geometric_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_geometric_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_geometric_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_gt_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_heaviside_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hsplit_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hstack_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hstack_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_i0_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_add_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_add_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_fill_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_select_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_select_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isclose_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isfinite_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isinf_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isinf_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isnan_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isnan_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isneginf_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isposinf_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isposinf_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isposinf_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isposinf_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isposinf_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isposinf_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isreal_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_item_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_item_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_le_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_lerp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_lgamma_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_norm_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_svd_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linspace_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linspace_tensor_overload_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linspace_tensor_overload_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log10_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log1p_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log2_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log_softmax_with_dtype_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log_softmax_with_dtype_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_not_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_not_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_not_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_xor_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_xor_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logspace_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logspace_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logspace_tensor_overload_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logspace_tensor_overload_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_masked_fill_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_masked_fill_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_meshgrid_variadic_tensors_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_meshgrid_variadic_tensors_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_movedim_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_movedim_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nan_to_num_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_narrow_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_native_layer_norm_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ne_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ne_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_neg_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_neg_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_strided_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_strided_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_strided_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_full_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_ones_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_ones_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_ones_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_zeros_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nextafter_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_alpha_dropout_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_celu_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_elu_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_hardtanh_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_hardtanh_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_hinge_embedding_loss_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_l1_loss_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_leaky_relu_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_log_softmax_with_dtype_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_log_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_log_softmax_with_dtype_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_margin_ranking_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pairwise_distance_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pixel_shuffle_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pixel_shuffle_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pixel_shuffle_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pixel_unshuffle_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_relu_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_relu_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softmax_with_dtype_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softplus_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softshrink_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softshrink_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_triplet_margin_loss_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_triplet_margin_loss_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_permute_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_permute_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_permute_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_permute_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_permute_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_positive_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_prod_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_prod_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rad2deg_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ravel_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_real_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reciprocal_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reciprocal_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reshape_as_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reshape_as_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reshape_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reshape_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reshape_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_round_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_round_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_round_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rsqrt_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rsub_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_select_scatter_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_select_scatter_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_select_scatter_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sgn_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sgn_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sign_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_signbit_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_signbit_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_signbit_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sin_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sin_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sin_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sinc_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sinh_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sinh_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_softmax_with_dtype_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_bessel_j1_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_bessel_j1_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_entr_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_entr_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_erfcx_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_i0e_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_i0e_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_i0e_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_i1_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_i1e_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_log_softmax_with_dtype_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_log_softmax_with_dtype_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_log_softmax_with_dtype_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_logit_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_multigammaln_mvlgamma_p_1_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_multigammaln_mvlgamma_p_1_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_multigammaln_mvlgamma_p_3_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_multigammaln_mvlgamma_p_3_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_multigammaln_mvlgamma_p_5_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_multigammaln_mvlgamma_p_5_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_ndtr_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_ndtri_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_ndtri_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_softmax_with_dtype_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_softmax_with_dtype_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_spherical_bessel_j0_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_xlog1py_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_split_with_sizes_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sqrt_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sqrt_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sqrt_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_square_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_square_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_multiple_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_std_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sum_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sum_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sum_to_size_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_t_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_t_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_t_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_take_along_dim_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tan_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tan_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tanh_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tensor_split_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_to_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_transpose_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_transpose_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_true_divide_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_trunc_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unbind_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unbind_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unflatten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unflatten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unfold_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unfold_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unfold_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unfold_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unfold_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unsqueeze_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unsqueeze_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unsqueeze_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unsqueeze_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unsqueeze_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unsqueeze_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unsqueeze_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_var_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_var_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_var_mean_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_as_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_as_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vsplit_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vsplit_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vstack_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vstack_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_xlogy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_xlogy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_zeros_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_zeros_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_zeros_cpu_uint8, 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__conversions_bfloat16_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_byte_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_cdouble_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_cdouble_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_cfloat_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_chalf_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_chalf_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_chalf_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_complex_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_complex_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_float_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_half_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_int_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_int_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_int_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_int_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_short_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_abs_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_acos_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_acos_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_acos_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_add_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_add_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_add_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addcdiv_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addcmul_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addr_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_alias_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_alias_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_all_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_amin_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_any_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_arange_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_partial_views_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_partial_views_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_partial_views_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_scatter_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_asin_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_asinh_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_asinh_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_asinh_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atan2_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atan2_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atan_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atan_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atan_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atanh_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atanh_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_1d_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_2d_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_2d_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_3d_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_3d_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_and_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_not_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_or_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_block_diag_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_broadcast_tensors_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_broadcast_to_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cat_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ceil_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ceil_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_chunk_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clamp_min_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clone_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_conj_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_conj_physical_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_conj_physical_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_constant_pad_nd_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_constant_pad_nd_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_constant_pad_nd_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_constant_pad_nd_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_contiguous_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cos_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cosh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_count_nonzero_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cumsum_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_deg2rad_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_deg2rad_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diag_embed_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_no_rounding_mode_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_no_rounding_mode_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_no_rounding_mode_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_no_rounding_mode_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_no_rounding_mode_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_trunc_rounding_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_trunc_rounding_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_trunc_rounding_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dot_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dsplit_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_strided_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_eq_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_eq_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_equal_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_equal_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_erfc_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_erfinv_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_erfinv_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exp_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exp_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exp_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_as_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_as_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exponential_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_eye_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_eye_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_eye_cpu_float8_e5m2, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_eye_cpu_float8_e5m2fnuz, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fft2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fft2_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fft_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fftn_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fftshift_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_hfft2_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_hfft2_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_hfftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifft2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifft_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ihfft2_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ihfft_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ihfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ihfftn_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfft2_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfftn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfftn_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_rfft_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_rfft_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fill_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flip_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flip_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fliplr_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fliplr_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flipud_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_float_power_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_float_power_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_float_power_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmod_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_frac_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ge_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ge_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ge_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ge_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_geometric_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_gt_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_heaviside_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_heaviside_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_heaviside_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_heaviside_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_hsplit_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_hsplit_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_i0_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_i0_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_igammac_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_fill_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_fill_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_fill_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_select_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_select_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_select_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isfinite_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isinf_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isnan_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isnan_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isneginf_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isneginf_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isneginf_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isposinf_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_cross_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_diagonal_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_matrix_norm_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_svdvals_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_vecdot_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linspace_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linspace_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linspace_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linspace_tensor_overload_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linspace_tensor_overload_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linspace_tensor_overload_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log10_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log1p_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log1p_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log_softmax_with_dtype_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log_softmax_with_dtype_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log_softmax_with_dtype_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logaddexp2_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logaddexp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_and_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_not_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_xor_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_xor_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logspace_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logspace_tensor_overload_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logspace_tensor_overload_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logsumexp_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lt_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_masked_fill_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_masked_fill_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_maximum_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_meshgrid_list_of_tensors_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_meshgrid_list_of_tensors_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_minimum_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_movedim_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_mul_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nan_to_num_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_narrow_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ne_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ne_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_neg_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_empty_strided_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_empty_strided_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_ones_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_ones_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_ones_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_zeros_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nextafter_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_channel_shuffle_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_channel_shuffle_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_gelu_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_hardtanh_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_hardtanh_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_huber_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_huber_loss_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_l1_loss_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_layer_norm_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_leaky_relu_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_leaky_relu_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_log_softmax_with_dtype_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_log_softmax_with_dtype_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_log_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_log_softmax_with_dtype_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_margin_ranking_loss_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_margin_ranking_loss_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_margin_ranking_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_mse_loss_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pairwise_distance_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pairwise_distance_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pixel_shuffle_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pixel_shuffle_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pixel_unshuffle_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_poisson_nll_loss_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_prelu_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_relu6_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softmin_with_dtype_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softplus_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_tanhshrink_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_tanhshrink_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_tanhshrink_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_tanhshrink_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_threshold_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_threshold_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_threshold_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_norm_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_norm_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_normal__in_place_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_normal__in_place_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ones_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_permute_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_permute_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_positive_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_pow_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_pow_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_pow_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rad2deg_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_randn_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ravel_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_real_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reciprocal_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_remainder_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_remainder_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rot90_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rot90_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_round_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_round_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rsqrt_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rsqrt_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rsub_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_select_scatter_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_select_scatter_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_select_scatter_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sgn_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sgn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sgn_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sigmoid_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_signbit_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sin_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sinc_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sinc_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sinh_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_bessel_j0_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_bessel_j0_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_bessel_j0_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_bessel_j0_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_bessel_j1_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_entr_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_erfcx_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_erfcx_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_erfcx_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i1_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i1_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i1e_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_log_ndtr_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_log_softmax_with_dtype_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_log_softmax_with_dtype_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_multigammaln_mvlgamma_p_1_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_multigammaln_mvlgamma_p_5_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_multigammaln_mvlgamma_p_5_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_ndtri_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_spherical_bessel_j0_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_spherical_bessel_j0_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_xlog1py_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_xlog1py_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_split_with_sizes_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_split_with_sizes_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_split_with_sizes_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_split_with_sizes_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sqrt_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sqrt_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_square_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_square_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_square_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_multiple_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_std_mean_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sum_to_size_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sum_to_size_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sum_to_size_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_t_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_t_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_t_cpu_bool, 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_tensor_split_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tensor_split_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tensor_split_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_trace_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_trace_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_transpose_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_transpose_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_transpose_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_transpose_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_triu_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_triu_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_true_divide_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_true_divide_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_trunc_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unbind_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unbind_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unflatten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unfold_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unfold_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unfold_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unsqueeze_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unsqueeze_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_var_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vdot_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vdot_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vdot_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vdot_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_as_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_as_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vsplit_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vstack_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_xlogy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_zeros_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_zeros_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_zeros_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_zeros_cpu_uint8, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager___radd___cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager___rdiv___cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager___rmul___cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager___rmul___cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_addcmul_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_alias_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_argmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_argwhere_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_asin_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_atan2_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_baddbmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cat_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cat_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cdist_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cholesky_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_column_stack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cumprod_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_diff_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_dot_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_dsplit_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_empty_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_expand_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_expand_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_expm1_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_ihfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_ihfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_hstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_index_fill_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_isfinite_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_lgamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_det_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_inv_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_ldl_factor_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_lu_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_pinv_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_qr_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_slogdet_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_solve_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_vecdot_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_log10_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_log_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_logical_and_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_lu_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_mH_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_argmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_logsumexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_matrix_exp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_max_reduction_no_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_maximum_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_mode_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_mul_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_narrow_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_native_dropout_backward_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_ne_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_alpha_dropout_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_binary_cross_entropy_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_channel_shuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_gelu_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_interpolate_nearest_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_local_response_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_pad_replicate_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_pad_replicate_negative_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_tanhshrink_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_triplet_margin_loss_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_triplet_margin_with_distance_loss_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_unfold_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_upsample_nearest_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_pca_lowrank_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_pinverse_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_polygamma_polygamma_n_4_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_qr_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_quantile_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_randint_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_randn_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_reciprocal_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_remainder_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_renorm_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_repeat_interleave_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_reshape_as_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_scatter_add_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_scatter_reduce_sum_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_select_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_sin_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_slice_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_softmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_bessel_j1_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_chebyshev_polynomial_v_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_entr_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_ndtri_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_zeta_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_split_with_sizes_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_split_with_sizes_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_sqrt_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_std_unbiased_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_svd_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_take_along_dim_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_tensordot_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_tile_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_to_sparse_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_trapezoid_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_trapz_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_triangular_solve_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_var_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_var_unbiased_cpu_complex64, test/test_ops.py::TestCompositeComplianceCPU::test_backward_H_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward___rmul___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward___rpow___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_as_strided_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_asin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_atan2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_baddbmm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_bernoulli_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_bfloat16_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_broadcast_to_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_conj_physical_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_cummin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_cumulative_trapezoid_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_deg2rad_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_diag_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_diag_embed_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_digamma_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_dsplit_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_expand_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_fft_hfftn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_fft_rfft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_float_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_gradient_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_eigvalsh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_lstsq_grad_oriented_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_svdvals_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_vander_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_log2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_log_softmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_logaddexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_masked_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_masked_softmin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_masked_std_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_max_binary_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_mul_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_mv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_alpha_dropout_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_gaussian_nll_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_layer_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_multi_margin_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_pairwise_distance_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_prelu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_tanhshrink_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_ormqr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_pca_lowrank_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_pow_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_rad2deg_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_remainder_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_renorm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_repeat_interleave_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_reshape_as_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_resolve_neg_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_round_decimals_3_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_rsub_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_scatter_reduce_sum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_slice_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_special_erfcx_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_split_with_sizes_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_squeeze_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_std_mean_unbiased_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_unfold_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input___rmul___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input___rpow___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input__segment_reduce_lengths_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_abs_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_addbmm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_as_strided_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_atleast_2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_bernoulli_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_bfloat16_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_block_diag_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_cartesian_prod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_constant_pad_nd_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_contiguous_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_cummax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_cumprod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_diag_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_fft_ihfft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_fft_ihfft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_flatten_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_flip_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_float_power_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_full_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_geometric_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_geqrf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_half_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_histogramdd_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_index_reduce_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_jiterator_4inputs_with_extra_args_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_lu_factor_ex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_logical_or_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_masked_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_matrix_exp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_maximum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_median_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_meshgrid_list_of_tensors_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_min_reduction_with_dim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_mode_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_movedim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nanmean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_alpha_dropout_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_batch_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_conv_transpose3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_embedding_bag_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_fractional_max_pool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_hardswish_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_interpolate_linear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_l1_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_max_pool1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_mish_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_multi_head_attention_forward_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_nll_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_pad_replicate_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_poisson_nll_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_selu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_smooth_l1_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_norm_inf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_norm_nuc_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_ormqr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_polygamma_polygamma_n_4_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_randint_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_randn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_resolve_conj_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_rot90_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_select_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_sgn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_signal_windows_general_hamming_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_sinc_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_sort_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_chebyshev_polynomial_t_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_scaled_modified_bessel_k1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_spherical_bessel_j0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_std_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_to_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_true_divide_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_trunc_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_unfold_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_unsafe_split_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_var_unbiased_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_view_as_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad___rmod___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad__upsample_bilinear2d_aa_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_acos_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_alias_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_argmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_bernoulli_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_cauchy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_cdist_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_cfloat_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_corrcoef_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_cos_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_count_nonzero_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_div_floor_rounding_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_empty_permuted_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_eq_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_exp2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_exp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_expand_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_flip_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_frac_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_histc_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_i0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_jiterator_2inputs_2outputs_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_cross_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_inv_ex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_lu_factor_ex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_matrix_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_pinv_singular_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_slogdet_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linspace_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_log10_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_logical_not_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_mT_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_masked_argmin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_masked_cumprod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_masked_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_masked_normalize_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_masked_softmin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_msort_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_gelu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_glu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_layer_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_leaky_relu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_pad_replicate_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_softplus_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_normal_number_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_polar_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_polygamma_polygamma_n_0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_renorm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_resize__cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_scatter_reduce_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_searchsorted_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_entr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_hermite_polynomial_h_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_modified_bessel_k1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_ndtri_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_squeeze_multiple_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_sub_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_uniform_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_view_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_zero__cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator___rpow___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator__segment_reduce_lengths_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator__softmax_backward_data_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_combinations_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_copysign_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_count_nonzero_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_diagonal_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_digamma_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_dist_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_div_trunc_rounding_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_einsum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_empty_strided_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_fft_fftn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_fliplr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_fmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_det_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_householder_product_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_lu_factor_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_lu_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_solve_ex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_tensorsolve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_long_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_masked_argmin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_masked_cumsum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_masked_fill_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_masked_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_masked_std_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_msort_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_mv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nanmean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nanquantile_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_new_zeros_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_conv_transpose3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_embedding_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_huber_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_max_pool1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_max_unpool2d_grad_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_multi_margin_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_nll_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_relu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_softmin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_softshrink_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_softsign_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_normal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_ones_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_pow_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_rand_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_reciprocal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_repeat_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_reshape_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_resize__cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_scalar_tensor_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_searchsorted_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_signal_windows_hann_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_slice_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_bessel_j0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_chebyshev_polynomial_t_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_hermite_polynomial_h_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_i1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_laguerre_polynomial_l_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_scaled_modified_bessel_k1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_std_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_std_unbiased_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_transpose_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_triangular_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_trunc_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_unsafe_split_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_view_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay___radd___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay___rmod___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay__native_batch_norm_legit_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay__segment_reduce_offsets_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay__softmax_backward_data_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_argwhere_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_atleast_1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_atleast_3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_bernoulli_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_broadcast_shapes_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_copysign_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_corrcoef_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_cos_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_erf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_exp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_fft_fftshift_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_flatten_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_float_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_floor_divide_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_fmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_full_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_ge_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_grid_sampler_3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_index_reduce_amin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_index_reduce_prod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_isfinite_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_ldexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_lerp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_eigvals_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_eigvalsh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_inv_ex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_svd_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_median_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_meshgrid_list_of_tensors_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_movedim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nextafter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_alpha_dropout_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_celu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_gaussian_nll_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_hardsigmoid_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_huber_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_interpolate_trilinear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_layer_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_leaky_relu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_max_pool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_max_unpool1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_max_unpool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_multi_head_attention_forward_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_nll_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_pad_constant_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_pixel_unshuffle_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_normal_in_place_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_normal_number_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_rand_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_randint_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_ravel_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_real_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_select_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_signal_windows_kaiser_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_signbit_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_chebyshev_polynomial_u_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_std_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_t_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_take_along_dim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_tan_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_topk_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_unbind_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_unsqueeze_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_var_mean_unbiased_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_var_unbiased_cpu_float32, test/test_ops.py::TestMathBitsCPU::test_conj_view___rdiv___cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__chunk_cat_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_T_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_as_strided_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_atleast_2d_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_column_stack_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_conj_physical_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_contiguous_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_empty_like_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_equal_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_flatten_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_linalg_svdvals_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_linalg_vector_norm_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_log2_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_narrow_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_new_empty_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_new_full_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_nn_functional_pairwise_distance_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_norm_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_repeat_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_sigmoid_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_sinc_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_sqrt_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_transpose_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_triu_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_unfold_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_view_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_abs_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_addbmm_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_any_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_as_strided_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_asinh_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_baddbmm_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_broadcast_tensors_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_chalf_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_corrcoef_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_cos_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_dot_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_expand_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_expm1_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_fft_ifftn_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_fliplr_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_gather_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_half_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_isnan_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_jiterator_2inputs_2outputs_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_cholesky_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linspace_tensor_overload_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_logical_xor_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_masked_var_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_nn_functional_conv_transpose3d_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_nn_functional_pad_circular_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_nn_functional_pad_reflect_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_nn_functional_triplet_margin_loss_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_reshape_as_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_resize_as__cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_scatter_add_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_sin_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_slice_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_sparse_sampled_addmm_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_squeeze_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_stack_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_std_mean_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_unbind_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_unfold_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_view_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_zeros_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs__conversions_bfloat16_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_addr_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_alias_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_asinh_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_atleast_1d_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_broadcast_to_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_cumprod_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_diagonal_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_diagonal_scatter_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_empty_strided_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_hsplit_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_imag_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_index_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_isinf_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_linspace_tensor_overload_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_log_softmax_with_dtype_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_logical_and_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_logical_xor_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_mean_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_mul_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_ne_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_new_full_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_nn_functional_pixel_shuffle_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_rsqrt_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_sgn_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_stack_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_std_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_unflatten_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_vsplit_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_addcdiv_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_addmm_decomposed_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_alias_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_argwhere_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_atan_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_atleast_1d_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_bmm_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_cat_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_combinations_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_cosh_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_diagonal_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_diagonal_scatter_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_eye_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_flatten_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_full_like_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_index_fill_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_isfinite_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_isinf_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_ldexp_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_cholesky_ex_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_householder_product_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_pinv_singular_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_lu_solve_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_masked_var_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_nn_functional_feature_alpha_dropout_without_train_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_nn_functional_pixel_shuffle_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_nn_functional_silu_complex_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_nonzero_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_norm_nuc_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_permute_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_randn_like_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_ravel_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_reshape_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_sinc_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_split_with_sizes_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_squeeze_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_stack_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_take_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_tile_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_unbind_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_unsqueeze_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_view_as_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_vstack_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_zero__cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_view_H_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view___radd___cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view___rmod___cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs__conversions_cdouble_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs__conversions_half_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs__conversions_short_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_allclose_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_amax_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_as_strided_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_atanh_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_atleast_3d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_cat_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_clamp_min_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_clone_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_column_stack_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_deg2rad_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_diagonal_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_equal_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_erf_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_exponential_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_eye_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_flipud_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_fmod_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_isfinite_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_isnan_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_logical_or_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_logspace_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_minimum_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_mul_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_glu_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_hardshrink_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_l1_loss_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_mish_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_pdist_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_selu_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_threshold_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_triplet_margin_loss_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_norm_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_real_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_rsqrt_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_sgn_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_sin_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_special_entr_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_special_ndtri_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_special_spherical_bessel_j0_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_special_zeta_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_unfold_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_var_mean_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_view_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_abs_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_addcmul_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_addmm_decomposed_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_aminmax_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_argmax_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_atan_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_atleast_1d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_atleast_2d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_bernoulli_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_cdouble_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_cumulative_trapezoid_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_diag_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_dist_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_empty_permuted_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_erfc_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_eye_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_fft_irfft2_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_fft_rfftn_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_float_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_frac_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_histogramdd_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_hypot_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_i0_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_item_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_cross_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_eigvals_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_householder_product_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_ldl_factor_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_lstsq_grad_oriented_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_pinv_singular_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_tensorinv_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_logdet_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_logical_or_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_logit_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_median_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_conv_transpose2d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_conv_transpose3d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_glu_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_max_pool1d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_mish_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_mse_loss_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_multilabel_margin_loss_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_pad_constant_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_pdist_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_scaled_dot_product_attention_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_softmin_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_ones_like_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_pinverse_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_polygamma_polygamma_n_4_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_remainder_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_scatter_reduce_mean_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_signal_windows_hann_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_softmax_with_dtype_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_sparse_mm_reduce_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_chebyshev_polynomial_u_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_laguerre_polynomial_l_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_modified_bessel_k1_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_ndtri_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_xlog1py_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_view_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_vsplit_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_vstack_cpu_float64, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs__conversions_complex_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs__conversions_float_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_alias_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_atanh__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_atleast_3d_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_or__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_broadcast_shapes_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_broadcast_tensors_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_contiguous_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_cumprod_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_strided_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_fft_hfft_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_fft_ifftn_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_fft_ifftshift_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_fft_rfft_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_fft_rfftn_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_floor__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_floor_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_fmin_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_fmod__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_frac__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_gcd_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_index_add_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_log2_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_log_normal__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_nn_functional_hardtanh_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_l1_loss_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_leaky_relu_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_pdist_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_softplus_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_permute_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_renorm_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_repeat_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_reshape_as_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_roll_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_rot90_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_sgn__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_sin__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_sinc__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_sinc_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_softmax_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_special_erfcx_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_special_log_ndtr_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_split_with_sizes_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_stack_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_std_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_to_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_unbind_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_unflatten_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_where_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_xlogy_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_bfloat16_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs__conversions_bool_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs__conversions_cdouble_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs__conversions_char_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs__conversions_int_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_add_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_amin_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_arange_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_atleast_3d_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_clamp_max__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_cos__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_erfc_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_exp__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_fft_fftshift_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_geometric__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_i0__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_isfinite_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_isneginf_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_isreal_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_log_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_logical_not_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_logical_or_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nan_to_num__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_native_layer_norm_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nextafter_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_margin_ranking_loss_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_ones_like_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_pow__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_ravel_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_reciprocal_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_renorm_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_sinc_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_special_ndtri_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_special_softmax_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_tril_indices_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_triu_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_trunc__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_unbind_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_unsqueeze_copy_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_zeros_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_zeros_like_cpu, test/test_ops.py::TestFakeTensorCPU::test_fake___rmatmul___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake___rmul___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake___ror___cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake__segment_reduce_lengths_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_addmm_decomposed_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_argmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_argmin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_asinh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_atan_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_atleast_1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast___getitem___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast___rmatmul___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast__native_batch_norm_legit_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast__upsample_bilinear2d_aa_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_bmm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_cartesian_prod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_char_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_conj_physical_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_contiguous_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_cos_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_fft_fftshift_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_fft_irfft2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_fmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_full_like_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_geqrf_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_hash_tensor_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_hypot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_isclose_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_kthvalue_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_lgamma_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_eig_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_matrix_rank_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_multi_dot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_norm_subgradients_at_zero_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_logcumsumexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_lu_unpack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_masked_amin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_masked_argmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_masked_fill_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_masked_sum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_max_reduction_with_dim_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_mm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_msort_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_multinomial_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_native_dropout_backward_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_new_ones_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_new_zeros_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_conv_transpose3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_gelu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_layer_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_leaky_relu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_local_response_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_multi_margin_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_one_hot_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_prelu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_soft_margin_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_softsign_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_tanhshrink_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_upsample_bilinear_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_upsample_nearest_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_ones_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_polygamma_polygamma_n_2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_rad2deg_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_rand_like_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_reshape_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_roll_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_round_decimals_0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_rsub_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_scatter_add_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_scatter_reduce_amax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_softmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_bessel_j1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_hermite_polynomial_h_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_i1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_modified_bessel_k1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_ndtr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_squeeze_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_std_unbiased_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_trapezoid_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_tril_indices_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_unbind_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_unique_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_baddbmm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_bool_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_broadcast_tensors_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_cdist_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_clamp_min_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_combinations_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp___radd___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp___rmod___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp__batch_norm_with_update_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_add_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_addbmm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_bfloat16_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_cartesian_prod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_cdist_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_chalf_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_column_stack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_complex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_cummin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_deg2rad_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_diff_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_digamma_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_div_trunc_rounding_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_erfinv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_fft_fftshift_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_fft_ifft2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_fft_ifftn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_fmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_fmod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_hypot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_index_reduce_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_eigvals_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_householder_product_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_inv_ex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_lstsq_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_lu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_logsumexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_lu_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_masked_amin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_masked_softmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_min_binary_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_mv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nan_to_num_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nanmean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_channel_shuffle_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_embedding_bag_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_gelu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_interpolate_nearest_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_linear_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_local_response_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_margin_ranking_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_smooth_l1_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_soft_margin_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_tanhshrink_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_real_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_rot90_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_softmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_split_with_sizes_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_stack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_tan_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_var_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp__segment_reduce_offsets_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_cholesky_inverse_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_cross_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_cummax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_cumprod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_cumsum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_cumulative_trapezoid_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_deg2rad_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_diagonal_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_div_no_rounding_mode_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_div_trunc_rounding_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_dsplit_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_erfinv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_exp2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_expand_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_fft_fftshift_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_fft_hfft2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_fft_hfft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_fft_hfftn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_fft_ifft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_fft_ifftshift_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_fft_ihfft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_float_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_index_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_index_reduce_prod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_kron_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_lerp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_lu_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_vander_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_log_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_masked_amin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_masked_log_softmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_masked_normalize_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_masked_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_matmul_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_min_binary_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_min_reduction_no_dim_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_movedim_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nanmean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_neg_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_avg_pool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_embedding_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_gaussian_nll_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_huber_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_logsigmoid_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_max_unpool1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_pairwise_distance_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_selu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_softplus_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_put_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_rad2deg_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_reciprocal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_select_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_sinh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_special_log_ndtr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_split_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_split_list_args_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_split_with_sizes_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_tan_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_to_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_true_divide_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_view_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_zero__cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_digamma_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_fft_hfft2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_fft_hfft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_fft_ifft2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_fft_ihfftn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_fft_irfftn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_floor_divide_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_hsplit_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_hstack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_igamma_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_lerp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_cholesky_ex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_cross_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_inv_ex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_lu_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linspace_tensor_overload_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_log1p_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_logspace_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_lt_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_masked_amax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_masked_log_softmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_masked_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_max_binary_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_min_binary_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_movedim_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_ne_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_new_ones_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nextafter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_batch_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_bilinear_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_binary_cross_entropy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_channel_shuffle_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_conv_transpose3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_dropout_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_elu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_hardswish_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_interpolate_bicubic_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_multi_margin_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_softshrink_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_pinverse_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_polar_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_ravel_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_renorm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_roll_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_round_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_searchsorted_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_sign_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_signal_windows_cosine_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_sinc_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_i1e_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_split_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_std_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_stft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_tensor_split_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_tensordot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_unique_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_unravel_index_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_var_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops___rxor___cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_abs_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_addcdiv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_addmm_decomposed_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_alias_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_aminmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_arange_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_as_strided_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_bitwise_left_shift_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_broadcast_shapes_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_cholesky_inverse_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_clamp_min_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_clone_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_corrcoef_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_cosh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_count_nonzero_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_cumsum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_div_floor_rounding_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_fft_ihfft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_float_power_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_floor_divide_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_fmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_geometric_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_geqrf_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_gradient_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_index_reduce_amax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_index_reduce_amin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_index_reduce_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_diagonal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_eig_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_eigvals_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_eigvalsh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_ldl_factor_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_pinv_singular_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_qr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_slogdet_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_lt_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_lu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_lu_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_masked_cumprod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_masked_logaddexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_masked_normalize_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_min_binary_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_multinomial_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nanquantile_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_native_batch_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_new_zeros_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_avg_pool1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_conv_transpose1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_cosine_similarity_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_cross_entropy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_interpolate_bicubic_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_mse_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_multilabel_margin_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_pixel_shuffle_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_prelu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_ones_like_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_outer_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_polar_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_round_decimals_neg_3_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_scatter_reduce_amin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_scatter_reduce_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_sigmoid_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_sign_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_sinc_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_bessel_j0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_bessel_y1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_hermite_polynomial_h_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_i1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_sum_to_size_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_svd_lowrank_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_tan_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_trace_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_trapz_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_view_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_vstack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_linspace_cpu_int8, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_linspace_tensor_overload_cpu_bfloat16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_logspace_cpu_float64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_logspace_cpu_int32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_logspace_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_ones_cpu_complex32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_zeros_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_zeros_cpu_int8, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_full_cpu_bfloat16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_linspace_cpu_bfloat16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_linspace_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_linspace_tensor_overload_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_logspace_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_logspace_tensor_overload_cpu_float64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_logspace_tensor_overload_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_ones_cpu_bfloat16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_ones_cpu_complex64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_ones_cpu_float16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_zeros_cpu_complex64, test/test_ops.py::TestTagsCPU::test_tags___radd___cpu_float32, test/test_ops.py::TestTagsCPU::test_tags___rpow___cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__chunk_cat_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_bitwise_and_cpu_int64, test/test_ops.py::TestTagsCPU::test_tags__refs_broadcast_to_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_cauchy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_clone_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_conj_physical_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_digamma_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_erfc_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_exp_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_expm1_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_flatten_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_flipud_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_index_add_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_index_fill_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_linalg_vecdot_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_linspace_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_logaddexp_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_narrow_copy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_new_empty_strided_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_channel_shuffle_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_leaky_relu_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_poisson_nll_loss_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_selu_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_smooth_l1_loss_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_softmax_with_dtype_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_softmin_with_dtype_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_normal__in_place_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_normal_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_ravel_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_special_bessel_j0_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_sqrt_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_tensor_split_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_transpose_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_unflatten_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_var_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_view_as_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_xlogy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_argmin_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_asinh_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_atan_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_bfloat16_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_bmm_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_cholesky_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_conj_physical_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_copysign_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_cos_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_div_no_rounding_mode_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_double_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_dstack_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_expand_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_fft_ihfftn_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_flipud_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_fmin_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_hash_tensor_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_hsplit_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_hypot_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_isin_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_jiterator_unary_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_eigvals_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_lu_solve_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_matrix_rank_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_logcumsumexp_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_logspace_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_lt_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_masked_std_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_matrix_exp_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_maximum_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nan_to_num_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_neg_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_batch_norm_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_conv_transpose1d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_dropout2d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_elu_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_fractional_max_pool3d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_hardswish_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_interpolate_trilinear_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_max_unpool2d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_selu_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_unfold_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_polygamma_polygamma_n_4_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_pow_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_put_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_resolve_conj_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_roll_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_round_decimals_3_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_round_decimals_neg_3_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_scatter_reduce_amax_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_scatter_reduce_mean_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_sigmoid_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_signal_windows_exponential_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_erfcx_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_xlog1py_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_split_with_sizes_copy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_trapezoid_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_trapz_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_var_unbiased_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_view_copy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_vsplit_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_xlogy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_zero__cpu_float32 2025-08-26T22:26:12.5616941Z 2025-08-26T22:26:17.5484891Z Running test_meta 4/4 ... [2025-08-26 22:26:17.547694] 2025-08-26T22:26:17.5485329Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:26:17.5491506Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_meta.py', '-m', 'not serial', '--shard-id=4', '--num-shards=4', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 22:26:17.547694] 2025-08-26T22:26:23.1357744Z 2025-08-26T22:26:23.1358869Z test_ops 9/9 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_9.9_f9bba8edcbec030e_.log 2025-08-26T22:26:23.3298779Z Running 3864 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_grid_sampler_3d_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_grid_sampler_3d_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_grid_sampler_3d_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-26T22:26:23.4599607Z 2025-08-26T22:26:28.7917158Z Running functorch/test_ac 1/1 ... [2025-08-26 22:26:28.786435] 2025-08-26T22:26:28.7917604Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:26:28.7923732Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_ac.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 22:26:28.792016] 2025-08-26T22:26:39.2580358Z 2025-08-26T22:26:39.2581266Z functorch/test_ac 1/1 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_ac_1.1_66cbcd156ff41f67_.log 2025-08-26T22:26:39.2581909Z 2025-08-26T22:26:44.5686456Z Running test_ops_fwd_gradients 2/2 ... [2025-08-26 22:26:44.568110] 2025-08-26T22:26:44.5692557Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:26:44.5693656Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops_fwd_gradients.py', '-m', 'not serial', '--shard-id=2', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 22:26:44.568110] 2025-08-26T22:32:14.5287475Z 2025-08-26T22:32:14.5288236Z test_meta 3/4 was successful, full logs can be found in artifacts with path test/test-reports/test_meta_3.4_192fce037125abcf_.log 2025-08-26T22:32:14.8471894Z Running 10171 items in this shard: test/test_meta.py::TestMetaConverter::test_requires_grad_false, test/test_meta.py::TestMetaConverter::test_tensor_outlives_converter, test/test_meta.py::TestMetaConverter::test_view_as_complex, test/test_meta.py::TestMetaConverter::test_view_as_real, test/test_meta.py::TestMetaConverter::test_view_mutate, test/test_meta.py::TestMetaConverter::test_view_of_non_leaf, test/test_meta.py::TestMetaCPU::test_batch_norm_backward_output_mask0_cpu, test/test_meta.py::TestMetaCPU::test_batch_norm_backward_output_mask3_cpu, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype___rmod___cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype___rmul___cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs__conversions_complex_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_div_floor_rounding_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_le_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_maximum_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_ne_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_nextafter_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_remainder_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_sub_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_xlogy_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_clamp_min_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_div_floor_rounding_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_fmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_fmod_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_hypot_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_igammac_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_jiterator_binary_return_by_ref_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_logical_and_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_max_binary_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_minimum_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_mul_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_nextafter_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_polar_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_pow_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_special_chebyshev_polynomial_w_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_true_divide_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_H_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_T_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_T_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___getitem___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___getitem___cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___getitem___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___getitem___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___getitem___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___radd___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___radd___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rand___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rand___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rdiv___cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rdiv___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rmatmul___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rmatmul___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rmod___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rmod___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rmul___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rmul___cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___ror___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rpow___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rpow___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rsub___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rxor___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__batch_norm_with_update_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__chunk_cat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__chunk_cat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_abs_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_abs_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_abs_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_abs_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_acos_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_acos_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_acos_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_addcdiv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_addcdiv_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_addcdiv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_addcdiv_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_addcdiv_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_addcmul_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_addcmul_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_addcmul_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_asin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_atan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_atan_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_ceil_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_ceil_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_clamp_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_clamp_max_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_clamp_min_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_clamp_min_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_clamp_min_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_clamp_min_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_cosh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_cosh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_cosh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_div_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_div_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_div_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_erfc_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_erfc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_exp_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_exp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_exp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_exp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_exp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_expm1_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_expm1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_floor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_frac_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_frac_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_lerp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_lerp_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_lerp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_lerp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_lgamma_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_lgamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_lgamma_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log10_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log10_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log10_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log10_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log1p_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log1p_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log1p_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log1p_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log1p_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log2_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_max_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_max_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_max_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_max_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_maximum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_maximum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_mul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_mul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_mul_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_neg_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_neg_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_norm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_norm_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_norm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_pow_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_pow_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_pow_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_pow_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_reciprocal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_reciprocal_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_round_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_rsqrt_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_rsqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_rsqrt_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sign_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sign_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sin_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sinh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sinh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sinh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sinh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sqrt_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sqrt_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sub_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sub_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sub_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_tan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_tan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_tan_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_tan_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_tan_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_tanh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_tanh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_tanh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_trunc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_trunc_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_trunc_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_trunc_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_trunc_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_trunc_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_zero_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_zero_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_zero_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_zero_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_zero_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__native_batch_norm_legit_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__segment_reduce_offsets_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__softmax_backward_data_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__softmax_backward_data_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__unsafe_masked_index_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__unsafe_masked_index_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__unsafe_masked_index_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__unsafe_masked_index_put_accumulate_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__unsafe_masked_index_put_accumulate_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__unsafe_masked_index_put_accumulate_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__unsafe_masked_index_put_accumulate_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__unsafe_masked_index_put_accumulate_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__upsample_bilinear2d_aa_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_abs_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_abs_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_abs_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_acos_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_acos_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_acos_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_acosh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_acosh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_add_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addbmm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addbmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addbmm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addcdiv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addcdiv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addcdiv_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addcmul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addcmul_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addcmul_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmm_decomposed_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmm_decomposed_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addr_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addr_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_alias_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_alias_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_all_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_all_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_all_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_allclose_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_amax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_amax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_amax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_amin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_amin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_aminmax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_aminmax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_aminmax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_angle_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_angle_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_angle_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_any_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_any_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_arange_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_arange_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argmax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argsort_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argwhere_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argwhere_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argwhere_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_partial_views_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_asin_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_asin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_asin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_asinh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_asinh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atan2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atan2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atan2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atan_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atan_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atanh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atanh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_1d_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_1d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_1d_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_3d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_3d_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_3d_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_baddbmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_baddbmm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_baddbmm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bfloat16_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bincount_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bincount_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_and_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_and_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_left_shift_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_or_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_right_shift_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_right_shift_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_right_shift_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_xor_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_xor_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_xor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_block_diag_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_block_diag_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_block_diag_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_block_diag_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_block_diag_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bmm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bmm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bool_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bool_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_broadcast_tensors_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_broadcast_tensors_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_broadcast_tensors_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_broadcast_tensors_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_broadcast_tensors_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_broadcast_tensors_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_broadcast_to_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bucketize_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bucketize_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bucketize_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_byte_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_byte_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cartesian_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cartesian_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cat_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cauchy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cauchy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cdouble_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cdouble_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cdouble_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cdouble_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ceil_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ceil_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cfloat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cfloat_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cfloat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cfloat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cfloat_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cfloat_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chalf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_char_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_char_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cholesky_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chunk_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chunk_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chunk_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chunk_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chunk_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chunk_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_max_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_max_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_min_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clone_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clone_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clone_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_column_stack_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_column_stack_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_combinations_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_complex_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_conj_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_conj_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_conj_physical_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_conj_physical_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_conj_physical_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_conj_physical_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_conj_physical_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_constant_pad_nd_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_constant_pad_nd_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_constant_pad_nd_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_contiguous_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_contiguous_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_contiguous_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_contiguous_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_contiguous_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_copysign_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_copysign_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_copysign_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_copysign_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_corrcoef_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_corrcoef_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cos_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cos_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cos_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cosh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cosh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cosh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_count_nonzero_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cov_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cov_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cross_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cummax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cummax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cummax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cummax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cummin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cummin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumsum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumsum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumulative_trapezoid_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumulative_trapezoid_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_deg2rad_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_deg2rad_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_deg2rad_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diag_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diag_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagflat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagflat_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagflat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagflat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagflat_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagflat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diff_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diff_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diff_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diff_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_digamma_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_digamma_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_floor_rounding_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_floor_rounding_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_floor_rounding_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_no_rounding_mode_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_trunc_rounding_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_trunc_rounding_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dot_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dot_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dsplit_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dsplit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dsplit_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dsplit_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dsplit_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dstack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dstack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_einsum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_einsum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_like_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_permuted_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_permuted_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_permuted_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_permuted_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_permuted_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_strided_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_strided_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eq_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eq_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eq_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_equal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_equal_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_equal_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_equal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erf_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erfinv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erfinv_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exp2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exp2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exp2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exp2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exp2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_as_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_as_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_as_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exponential_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exponential_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eye_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eye_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eye_cpu_float8_e4m3fn, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eye_cpu_float8_e4m3fnuz, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eye_cpu_float8_e5m2, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eye_cpu_float8_e5m2fnuz, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fft2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fft_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fftshift_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fftshift_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fftshift_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifftshift_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifftshift_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ihfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ihfft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ihfft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ihfft_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ihfft_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ihfftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ihfftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ihfftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ihfftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfft2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfft_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfft_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_rfft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_rfft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_rfft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_rfft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_rfft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_rfftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_rfftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_rfftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fill_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fill_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fill_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fill_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fill_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fill_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flatten_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flip_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flip_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flip_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fliplr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fliplr_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flipud_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flipud_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flipud_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flipud_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flipud_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_float_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_float_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_float_power_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_float_power_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_float_power_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_floor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_floor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_floor_divide_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmod_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_frac_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_frac_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_full_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_full_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_full_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_full_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_full_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gather_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gather_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gather_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gcd_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gcd_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ge_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ge_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ge_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gradient_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gradient_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gradient_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_grid_sampler_2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_grid_sampler_2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_grid_sampler_2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_grid_sampler_3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gt_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gt_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_half_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_half_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hash_tensor_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hash_tensor_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hash_tensor_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_heaviside_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_heaviside_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_histc_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_histc_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_histogram_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_histogram_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hsplit_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hsplit_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hsplit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hsplit_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hsplit_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hstack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hstack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hypot_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_i0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_i0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_imag_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_imag_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_add_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_add_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_add_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_fill_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_fill_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_fill_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_fill_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_put_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_put_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_put_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_put_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_put_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_put_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_amax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_amin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_amin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_amin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_mean_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_select_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_inner_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_inner_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_inner_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_inner_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_int_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_int_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_int_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_int_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_int_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isclose_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isclose_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isclose_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isfinite_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isfinite_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isfinite_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isfinite_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isinf_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isnan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isneginf_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isneginf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isneginf_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isneginf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isposinf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isposinf_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isposinf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isreal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isreal_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isreal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_istft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_item_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_2inputs_2outputs_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_2inputs_2outputs_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_2inputs_2outputs_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_4inputs_with_extra_args_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_4inputs_with_extra_args_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_binary_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_binary_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_binary_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_binary_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_binary_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_binary_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_binary_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_binary_return_by_ref_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_binary_return_by_ref_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_binary_return_by_ref_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_unary_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_unary_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_unary_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_unary_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_kron_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_kron_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_kron_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_kthvalue_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_kthvalue_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lcm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ldexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ldexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_le_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_le_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_le_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lerp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lgamma_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lgamma_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lgamma_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_cholesky_ex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_cholesky_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_cond_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_cond_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_cross_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_cross_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_cross_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_cross_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_cross_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_diagonal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_diagonal_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_diagonal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_eig_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_eigh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_eigvals_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_eigvals_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_eigvalsh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_eigvalsh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_inv_ex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_ldl_factor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_ldl_factor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_ldl_factor_ex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_lstsq_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_lstsq_grad_oriented_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_lu_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_lu_factor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_lu_factor_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_lu_factor_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_matrix_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_matrix_power_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_matrix_power_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_matrix_rank_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_multi_dot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_multi_dot_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_multi_dot_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_norm_subgradients_at_zero_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_pinv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_pinv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_pinv_hermitian_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_pinv_singular_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_pinv_singular_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_pinv_singular_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_slogdet_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_svd_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_svdvals_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_tensorinv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_tensorsolve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_vander_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_vander_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linspace_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linspace_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linspace_tensor_overload_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linspace_tensor_overload_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linspace_tensor_overload_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linspace_tensor_overload_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log10_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log10_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log10_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log10_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log1p_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log1p_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log1p_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_normal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_normal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_softmax_with_dtype_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_softmax_with_dtype_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_softmax_with_dtype_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_softmax_with_dtype_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_softmax_with_dtype_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logaddexp2_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logaddexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logcumsumexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logcumsumexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logcumsumexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logdet_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_and_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_and_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_and_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_not_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_not_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_not_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_not_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_not_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_or_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_or_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_or_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_or_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_or_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_or_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_xor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_xor_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logit_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logspace_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logspace_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logspace_tensor_overload_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logspace_tensor_overload_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logspace_tensor_overload_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logspace_tensor_overload_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logsumexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logsumexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logsumexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logsumexp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logsumexp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_long_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lt_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lu_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mH_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mH_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mH_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mH_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mT_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mT_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mT_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mT_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_amax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_amax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_amin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_argmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_argmax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_argmax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_argmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_argmin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_argmin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_cumprod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_cumprod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_cumprod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_cumsum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_cumsum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_cumsum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_fill_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_fill_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_fill_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_logaddexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_logsumexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_logsumexp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_normalize_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_normalize_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_prod_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_prod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_prod_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_scatter_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_select_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_select_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_softmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_std_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_std_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_std_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_sum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_sum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_sum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_sum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_var_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_var_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_var_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_var_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_matmul_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_matrix_exp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_matrix_exp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_matrix_exp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_binary_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_pool2d_with_indices_backward_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_reduction_no_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_reduction_no_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_reduction_no_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_reduction_no_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_maximum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_maximum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_median_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_median_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_median_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_meshgrid_list_of_tensors_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_meshgrid_list_of_tensors_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_meshgrid_list_of_tensors_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_meshgrid_list_of_tensors_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_meshgrid_variadic_tensors_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_meshgrid_variadic_tensors_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_meshgrid_variadic_tensors_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_meshgrid_variadic_tensors_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_meshgrid_variadic_tensors_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_meshgrid_variadic_tensors_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_meshgrid_variadic_tensors_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_binary_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_binary_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_binary_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_reduction_no_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_reduction_no_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_reduction_no_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_reduction_no_dim_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_reduction_with_dim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_reduction_with_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_reduction_with_dim_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_minimum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_minimum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mm_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mode_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_movedim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_movedim_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_movedim_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_movedim_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_movedim_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_movedim_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_msort_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_msort_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_msort_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mul_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mul_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mul_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mvlgamma_mvlgamma_p_5_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nan_to_num_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nanmean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nanmean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nanmean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nanmedian_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nanmedian_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nanmedian_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nanmedian_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nanquantile_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nansum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_narrow_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_narrow_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_narrow_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_narrow_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_narrow_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_native_dropout_backward_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_native_dropout_backward_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_native_dropout_backward_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_native_dropout_backward_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_native_layer_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ne_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ne_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_neg_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_neg_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_neg_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_neg_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_neg_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_empty_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_empty_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_empty_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_empty_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_empty_strided_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_empty_strided_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_empty_strided_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_empty_strided_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_full_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_full_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_ones_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_ones_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_ones_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_zeros_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_zeros_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nextafter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_adaptive_avg_pool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_adaptive_avg_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_alpha_dropout_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_avg_pool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_avg_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_avg_pool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_avg_pool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_batch_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_bilinear_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_binary_cross_entropy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_celu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_celu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_channel_shuffle_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_channel_shuffle_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_channel_shuffle_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_channel_shuffle_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv1d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv1d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv2d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv3d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv_transpose1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv_transpose1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv_transpose2d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv_transpose3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv_transpose3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv_transpose3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_cosine_embedding_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_cosine_embedding_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_cosine_embedding_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_cosine_embedding_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_cosine_similarity_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_cosine_similarity_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_cross_entropy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_dropout2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_dropout2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_dropout3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_dropout_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_elu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_embedding_bag_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_feature_alpha_dropout_with_train_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_fractional_max_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_fractional_max_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_gelu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_hardswish_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_hardtanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_hardtanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_hardtanh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_hardtanh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_hardtanh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_area_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_area_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_bicubic_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_bicubic_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_bilinear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_linear_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_linear_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_nearest_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_trilinear_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_kl_div_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_l1_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_l1_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_layer_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_linear_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_linear_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_logsigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_margin_ranking_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_margin_ranking_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_pool3d_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_pool3d_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_unpool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_unpool1d_grad_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_unpool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_unpool2d_grad_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_unpool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_unpool3d_grad_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_mish_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_multi_head_attention_forward_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_multi_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_multi_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_multilabel_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_multilabel_soft_margin_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_one_hot_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_circular_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_circular_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_circular_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_circular_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_constant_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_reflect_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_reflect_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_reflect_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_replicate_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_replicate_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_replicate_negative_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_replicate_negative_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_replicate_negative_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_replicate_negative_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pairwise_distance_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pairwise_distance_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pairwise_distance_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pdist_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pixel_shuffle_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pixel_shuffle_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pixel_shuffle_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pixel_shuffle_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pixel_unshuffle_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_poisson_nll_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_poisson_nll_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_prelu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_relu6_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_relu_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_rms_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_silu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_soft_margin_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_soft_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softmin_with_dtype_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softmin_with_dtype_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softmin_with_dtype_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softmin_with_dtype_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softplus_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softplus_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softshrink_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softshrink_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softsign_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softsign_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softsign_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softsign_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_tanhshrink_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_tanhshrink_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_tanhshrink_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_threshold_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_triplet_margin_loss_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_triplet_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_triplet_margin_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_unfold_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_upsample_bilinear_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_upsample_bilinear_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_upsample_nearest_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nonzero_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nonzero_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nonzero_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nonzero_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nonzero_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nonzero_static_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nonzero_static_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nonzero_static_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_norm_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_norm_fro_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_norm_inf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_norm_inf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_normal_in_place_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_normal_in_place_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_normal_number_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_normal_number_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ones_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ones_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ones_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ones_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ones_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ones_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ormqr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_outer_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_outer_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_outer_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_outer_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_permute_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_permute_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_permute_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_permute_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_permute_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_permute_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_permute_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_permute_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_0_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_3_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_3_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_3_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_3_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_4_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_4_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_4_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_positive_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_positive_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_positive_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_positive_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_pow_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_pow_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_pow_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_pow_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_prod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_put_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_qr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_quantile_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rad2deg_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rad2deg_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rad2deg_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rad2deg_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rad2deg_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rand_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rand_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randint_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randint_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randint_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randint_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randint_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randn_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randn_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randn_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ravel_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ravel_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ravel_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ravel_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_real_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_real_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_real_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_real_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_real_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_real_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reciprocal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reciprocal_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reciprocal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_remainder_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_remainder_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_renorm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_repeat_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_repeat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_repeat_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_repeat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_repeat_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_repeat_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_repeat_interleave_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_repeat_interleave_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reshape_as_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reshape_as_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reshape_as_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reshape_as_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reshape_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reshape_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reshape_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resize__cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resize__cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resize__cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resize__cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resize_as__cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resize_as__cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resize_as__cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resolve_conj_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resolve_conj_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resolve_conj_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resolve_conj_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resolve_conj_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resolve_conj_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resolve_neg_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resolve_neg_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_roll_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_roll_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_roll_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_roll_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rot90_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rot90_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_round_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_round_decimals_0_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_round_decimals_0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_round_decimals_3_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_round_decimals_neg_3_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rsqrt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rsqrt_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rsqrt_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rsqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rsqrt_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rsub_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rsub_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rsub_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scalar_tensor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scalar_tensor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scalar_tensor_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scalar_tensor_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scalar_tensor_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_add_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_add_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_add_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_add_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_amax_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_amax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_amax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_amax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_amin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_mean_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_mean_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_sum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_sum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_searchsorted_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_searchsorted_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_select_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_select_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_select_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_select_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_select_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_select_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_select_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_select_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_select_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sgn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sgn_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_short_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_short_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_short_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sigmoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sigmoid_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sigmoid_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sigmoid_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sign_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signal_windows_gaussian_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signal_windows_gaussian_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signal_windows_general_cosine_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signal_windows_hamming_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signal_windows_hann_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signal_windows_nuttall_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signbit_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sinc_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sinc_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sinc_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sinc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sinh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sinh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_slice_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_slice_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_slice_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_slice_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_softmax_with_dtype_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_softmax_with_dtype_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sort_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sort_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sparse_mm_reduce_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_airy_ai_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_airy_ai_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_j0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_j1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_j1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_j1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_j1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_y1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_y1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_y1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_t_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_t_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_u_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_v_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_v_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_w_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_w_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_w_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_entr_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_entr_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_entr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_entr_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_erfcx_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_erfcx_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_erfcx_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_erfcx_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_hermite_polynomial_h_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_hermite_polynomial_he_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_hermite_polynomial_he_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i0e_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i0e_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i0e_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i0e_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i1e_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i1e_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i1e_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_laguerre_polynomial_l_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_laguerre_polynomial_l_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_legendre_polynomial_p_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_legendre_polynomial_p_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_legendre_polynomial_p_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_legendre_polynomial_p_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_log_ndtr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_log_ndtr_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_i0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_i0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_i0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_i1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_k0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_k0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_k0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_k0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_k0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_k1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_k1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_ndtr_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_ndtr_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_ndtr_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_ndtr_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_ndtri_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_ndtri_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_scaled_modified_bessel_k0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_scaled_modified_bessel_k1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_u_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_v_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_v_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_v_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_spherical_bessel_j0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_xlog1py_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_xlog1py_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_zeta_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_zeta_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_list_args_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_list_args_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_list_args_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_list_args_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_list_args_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sqrt_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sqrt_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_square_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_square_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_square_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_square_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_square_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_multiple_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_multiple_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_multiple_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_stack_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_stack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_stack_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_stack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_mean_unbiased_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_mean_unbiased_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_stft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_stft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sub_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sub_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sub_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sub_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sum_to_size_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sum_to_size_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sum_to_size_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_t_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_t_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_t_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_t_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_t_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_take_along_dim_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_take_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_take_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tan_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tan_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tan_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tan_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tanh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tanh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tanh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tensor_split_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tensor_split_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tensordot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tensordot_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tensordot_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tensordot_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tile_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tile_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_to_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_to_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_to_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_to_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_to_sparse_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_to_sparse_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_topk_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_torch__scaled_mm_cpu_float8_e4m3fnuz, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trace_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trace_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trace_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_transpose_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_transpose_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_transpose_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_transpose_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_transpose_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_transpose_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_transpose_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trapezoid_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trapezoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trapezoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trapezoid_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trapz_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trapz_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trapz_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trapz_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_triangular_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tril_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tril_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_triu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_triu_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_triu_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_triu_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_triu_indices_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_true_divide_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trunc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trunc_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trunc_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trunc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unbind_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unbind_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unbind_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unflatten_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unflatten_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unflatten_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unique_consecutive_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unique_consecutive_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unique_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unique_cpu_uint16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unique_cpu_uint64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unique_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsafe_chunk_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsafe_chunk_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsafe_split_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsafe_split_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsafe_split_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsafe_split_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsqueeze_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsqueeze_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsqueeze_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsqueeze_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsqueeze_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsqueeze_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsqueeze_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsqueeze_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsqueeze_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_var_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_var_mean_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_var_unbiased_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_var_unbiased_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vdot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vdot_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_as_complex_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_as_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_as_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_as_real_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vsplit_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vsplit_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vsplit_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vsplit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vsplit_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vsplit_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vsplit_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vstack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vstack_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vstack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_where_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_where_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_xlogy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zero__cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zero__cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zero__cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_H_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_H_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_T_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_T_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___getitem___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___getitem___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___getitem___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___getitem___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___getitem___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___getitem___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___radd___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rand___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rand___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rand___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rdiv___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rdiv___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rdiv___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmatmul___cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmod___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmul___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmul___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___ror___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rpow___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rsub___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rsub___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rsub___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rxor___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__batch_norm_with_update_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__chunk_cat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__chunk_cat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__chunk_cat_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__chunk_cat_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__chunk_cat_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_abs_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_abs_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_abs_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_abs_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_abs_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_acos_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_acos_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_acos_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_add_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_add_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_addcdiv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_addcdiv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_addcdiv_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_addcdiv_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_addcmul_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_addcmul_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_addcmul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_asin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_asin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_atan_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_atan_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_ceil_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_ceil_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_ceil_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_clamp_max_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_clamp_max_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_clamp_max_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_clamp_max_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_clamp_min_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_cos_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_cos_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_cosh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_cosh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_cosh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_div_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_div_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_div_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_div_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_div_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_erf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_erf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_erf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_erfc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_erfc_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_erfc_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_erfc_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_exp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_exp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_exp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_expm1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_expm1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_expm1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_floor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_floor_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_floor_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_floor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_floor_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_frac_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_frac_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_frac_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_lerp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_lerp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_lgamma_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_lgamma_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log10_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log10_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_max_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_max_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_max_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_max_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_max_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_maximum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_maximum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_maximum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_maximum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_minimum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_minimum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_minimum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_minimum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_minimum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_mul_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_mul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_neg_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_neg_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_neg_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_norm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_norm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_pow_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_pow_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_reciprocal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_reciprocal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_reciprocal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_reciprocal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_reciprocal_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_round_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_round_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_rsqrt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_rsqrt_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_rsqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_rsqrt_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_rsqrt_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_rsqrt_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_rsqrt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sigmoid_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sigmoid_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sign_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sign_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sin_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sinh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sinh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sinh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sinh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sqrt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sqrt_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sqrt_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sub_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sub_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sub_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sub_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_tan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_tan_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_tan_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_tan_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_tanh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_tanh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_tanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_tanh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_trunc_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_trunc_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_trunc_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_trunc_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_trunc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_zero_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_zero_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__native_batch_norm_legit_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__segment_reduce_lengths_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__segment_reduce_lengths_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__softmax_backward_data_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_abs_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_abs_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_abs_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_acos_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_acos_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_acos_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_acos_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_acos_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_add_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_add_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addbmm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addbmm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addcdiv_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addcmul_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addcmul_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addcmul_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmm_decomposed_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmm_decomposed_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmm_decomposed_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmv_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmv_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmv_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addr_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_alias_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_alias_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_alias_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_alias_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_all_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_all_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_all_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_all_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_all_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_all_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_amax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_amax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_amax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_amin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_aminmax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_aminmax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_aminmax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_any_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_any_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_any_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_arange_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argmax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argsort_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argsort_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argsort_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argsort_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argsort_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argwhere_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argwhere_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argwhere_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argwhere_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_partial_views_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_scatter_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_scatter_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_asin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_asinh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_asinh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_asinh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atan2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atan2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atan2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atanh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atanh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atanh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atanh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_1d_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_1d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_baddbmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_baddbmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bernoulli_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bfloat16_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bfloat16_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bincount_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bincount_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_and_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_and_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_or_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_or_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_right_shift_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_xor_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_xor_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_xor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_block_diag_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bmm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bool_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bool_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bool_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bool_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_broadcast_tensors_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_broadcast_tensors_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_broadcast_tensors_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_broadcast_tensors_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_broadcast_tensors_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bucketize_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bucketize_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_byte_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_byte_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_byte_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_byte_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_byte_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cartesian_prod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cartesian_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cartesian_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cartesian_prod_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cat_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cat_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cat_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cdist_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cdouble_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cdouble_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cdouble_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cdouble_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ceil_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ceil_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ceil_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ceil_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cfloat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cfloat_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cfloat_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cfloat_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_chalf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_char_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_char_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cholesky_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cholesky_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cholesky_inverse_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cholesky_inverse_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_chunk_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_chunk_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_chunk_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_max_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_min_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_min_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_min_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clone_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clone_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clone_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_column_stack_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_column_stack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_column_stack_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_column_stack_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_column_stack_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_combinations_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_combinations_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_combinations_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_complex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_conj_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_conj_physical_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_conj_physical_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_conj_physical_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_conj_physical_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_constant_pad_nd_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_constant_pad_nd_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_contiguous_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_contiguous_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_contiguous_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_contiguous_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_copysign_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_copysign_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_corrcoef_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_corrcoef_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_corrcoef_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_corrcoef_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cos_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cos_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cos_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cosh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cosh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cosh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_count_nonzero_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cov_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cov_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cov_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cov_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cov_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cross_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cummax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cummax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cummax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cummax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cummin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cummin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumprod_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumprod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumsum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumsum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumulative_trapezoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumulative_trapezoid_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumulative_trapezoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumulative_trapezoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumulative_trapezoid_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_deg2rad_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_deg2rad_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_deg2rad_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_deg2rad_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagflat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagflat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagflat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_scatter_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diff_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diff_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diff_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diff_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_digamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dist_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dist_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_floor_rounding_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_floor_rounding_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_floor_rounding_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_floor_rounding_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_no_rounding_mode_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_no_rounding_mode_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_trunc_rounding_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_trunc_rounding_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_trunc_rounding_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dot_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_double_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_double_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_double_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dsplit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dsplit_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dstack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dstack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dstack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dstack_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_einsum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_einsum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_einsum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_einsum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_permuted_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_strided_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eq_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eq_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eq_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eq_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eq_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_equal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_equal_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_equal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erf_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erf_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erf_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erf_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erf_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erfc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erfc_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erfinv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erfinv_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erfinv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erfinv_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exp2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exp2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exp2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exp2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exp2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exp_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_as_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_as_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_as_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_as_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_as_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expm1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expm1_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eye_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eye_cpu_float8_e4m3fnuz, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eye_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fftshift_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fftshift_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fftshift_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fftshift_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fftshift_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifft_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifft_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifftshift_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifftshift_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifftshift_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifftshift_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifftshift_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifftshift_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ihfft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ihfft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ihfft_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfft_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfftn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfftn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_rfft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_rfft_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_rfftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_rfftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fill_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fill_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fill_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fill_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fill_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flatten_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flatten_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flatten_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flatten_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flatten_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flip_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flip_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flip_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fliplr_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fliplr_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flipud_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_float_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_float_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_float_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_float_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_float_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_float_power_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_float_power_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_float_power_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_float_power_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_float_power_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_float_power_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_floor_divide_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_floor_divide_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_floor_divide_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fmax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fmin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fmin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fmod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fmod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_frexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_like_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gather_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gather_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gather_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gather_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gather_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gather_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gather_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gather_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gcd_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ge_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ge_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_geometric_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_geometric_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_geqrf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gradient_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gradient_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gradient_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gt_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gt_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_half_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_half_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hash_tensor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hash_tensor_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hash_tensor_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_heaviside_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_heaviside_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_heaviside_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_histc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_histogram_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hsplit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hsplit_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hsplit_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hsplit_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hstack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hstack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hstack_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hstack_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hypot_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hypot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_i0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_i0_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_i0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_i0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_igamma_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_igammac_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_igammac_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_imag_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_add_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_add_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_add_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_fill_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_fill_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_fill_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_fill_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_fill_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_fill_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_fill_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_put_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_put_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_amax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_amin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_amin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_mean_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_mean_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_prod_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_select_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_select_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_inner_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_inner_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_int_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_int_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_int_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isclose_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isclose_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isclose_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isfinite_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isfinite_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isfinite_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isfinite_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isfinite_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isfinite_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isinf_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isinf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isinf_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isinf_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isnan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isnan_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isneginf_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isneginf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isposinf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isposinf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isposinf_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isposinf_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isreal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isreal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isreal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_item_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_item_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_item_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_item_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_item_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_2inputs_2outputs_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_4inputs_with_extra_args_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_4inputs_with_extra_args_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_binary_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_binary_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_binary_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_binary_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_binary_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_binary_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_binary_return_by_ref_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_binary_return_by_ref_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_unary_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_unary_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_kron_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_kron_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_kron_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_kron_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_kron_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_kron_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_kthvalue_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ldexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ldexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_le_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_le_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lgamma_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lgamma_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_cholesky_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_cross_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_cross_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_det_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_diagonal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_diagonal_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_diagonal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_eigh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_eigh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_eigvals_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_eigvals_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_ldl_factor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_ldl_factor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_ldl_factor_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_lstsq_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_lstsq_grad_oriented_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_lu_factor_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_lu_factor_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_lu_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_matrix_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_matrix_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_matrix_power_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_matrix_power_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_matrix_rank_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_multi_dot_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_multi_dot_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_multi_dot_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_pinv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_pinv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_pinv_singular_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_qr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_qr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_slogdet_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_solve_triangular_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_svd_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_svdvals_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_svdvals_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_svdvals_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_tensorinv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_tensorinv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_tensorsolve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_vander_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linspace_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linspace_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linspace_tensor_overload_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linspace_tensor_overload_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linspace_tensor_overload_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log10_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log1p_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log1p_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log2_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_normal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_softmax_with_dtype_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_softmax_with_dtype_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logaddexp2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logaddexp2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logaddexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logaddexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_and_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_and_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_and_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_and_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_not_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_not_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_not_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_not_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_xor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_xor_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logspace_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logspace_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logspace_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logspace_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logspace_tensor_overload_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logspace_tensor_overload_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logsumexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logsumexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_long_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_long_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_long_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lu_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mH_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mH_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mH_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mH_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mT_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mT_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mT_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_amax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_amin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_amin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_argmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_argmax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_argmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_cumprod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_fill_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_fill_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_fill_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_fill_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_fill_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_fill_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_log_softmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_logaddexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_logaddexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_logsumexp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_mean_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_mean_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_median_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_prod_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_select_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_select_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_select_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_select_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_select_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_select_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_softmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_std_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_std_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_std_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_std_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_sum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_sum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_sum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_sum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_var_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_var_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_matmul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_matmul_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_binary_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_pool2d_with_indices_backward_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_reduction_no_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_reduction_no_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_reduction_with_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_reduction_with_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_reduction_with_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_reduction_with_dim_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_maximum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_maximum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_maximum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mean_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_median_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_median_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_meshgrid_list_of_tensors_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_meshgrid_variadic_tensors_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_meshgrid_variadic_tensors_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_meshgrid_variadic_tensors_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_meshgrid_variadic_tensors_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_meshgrid_variadic_tensors_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_binary_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_reduction_no_dim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_reduction_no_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_reduction_with_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_reduction_with_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_reduction_with_dim_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_reduction_with_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_minimum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_minimum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_minimum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mode_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_movedim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_movedim_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_movedim_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_msort_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_msort_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_msort_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_msort_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mul_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mul_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mul_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_multinomial_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_1_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_3_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_3_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_3_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nan_to_num_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nan_to_num_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nan_to_num_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nan_to_num_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nan_to_num_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nanmean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nanmedian_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nanmedian_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nanmedian_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nansum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nansum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nansum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nansum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nansum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_native_batch_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_native_dropout_backward_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_native_dropout_backward_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_native_dropout_backward_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_native_layer_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_native_layer_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ne_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ne_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_neg_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_neg_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_neg_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_neg_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_empty_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_empty_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_empty_strided_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_empty_strided_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_empty_strided_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_full_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_full_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_full_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_full_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_full_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_full_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nextafter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_adaptive_avg_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_adaptive_avg_pool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_adaptive_max_pool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_adaptive_max_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_adaptive_max_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_adaptive_max_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_adaptive_max_pool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_avg_pool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_avg_pool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_avg_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_avg_pool2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_avg_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_batch_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_bilinear_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_bilinear_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_bilinear_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_binary_cross_entropy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_celu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_celu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_channel_shuffle_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_channel_shuffle_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_channel_shuffle_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv3d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv_transpose1d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv_transpose2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv_transpose3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv_transpose3d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_cosine_embedding_loss_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_cosine_embedding_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_cosine_embedding_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_cosine_similarity_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_cosine_similarity_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_cross_entropy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_dropout2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_embedding_bag_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_embedding_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_feature_alpha_dropout_with_train_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_fractional_max_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_fractional_max_pool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_gaussian_nll_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_gelu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_glu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_grid_sample_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_group_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_hardshrink_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_hardtanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_hardtanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_hinge_embedding_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_huber_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_area_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_bilinear_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_bilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_linear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_nearest-exact_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_nearest-exact_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_nearest-exact_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_nearest_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_kl_div_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_kl_div_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_l1_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_leaky_relu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_leaky_relu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_linear_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_linear_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_linear_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_local_response_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_logsigmoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_margin_ranking_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_margin_ranking_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_margin_ranking_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_margin_ranking_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_pool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_pool2d_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_pool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_pool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_pool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_pool3d_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_pool3d_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_unpool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_unpool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_unpool2d_grad_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_unpool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_unpool3d_grad_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_mish_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_mish_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_mish_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_mse_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_mse_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_multi_head_attention_forward_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_multi_head_attention_forward_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_normalize_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_normalize_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_circular_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_circular_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_circular_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_circular_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_constant_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_constant_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_constant_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_reflect_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_reflect_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_reflect_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_replicate_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_replicate_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_replicate_negative_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_replicate_negative_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_replicate_negative_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pairwise_distance_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pairwise_distance_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pdist_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pixel_shuffle_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pixel_shuffle_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pixel_shuffle_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pixel_unshuffle_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pixel_unshuffle_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pixel_unshuffle_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_poisson_nll_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_poisson_nll_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_poisson_nll_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_poisson_nll_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_prelu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_relu6_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_relu6_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_relu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_relu_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_relu_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_rms_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_scaled_dot_product_attention_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_scaled_dot_product_attention_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_selu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_silu_complex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_silu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_smooth_l1_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_smooth_l1_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_soft_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softmin_with_dtype_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softplus_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softshrink_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softshrink_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softsign_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softsign_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softsign_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softsign_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_tanhshrink_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_tanhshrink_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_threshold_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_threshold_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_triplet_margin_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_triplet_margin_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_unfold_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_unfold_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_unfold_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_upsample_bilinear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_upsample_nearest_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nonzero_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nonzero_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nonzero_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nonzero_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nonzero_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nonzero_static_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nonzero_static_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nonzero_static_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_norm_fro_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_norm_inf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_norm_nuc_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_norm_nuc_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_norm_nuc_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_normal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_normal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_normal_in_place_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_normal_in_place_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_normal_number_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ones_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ones_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ones_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ones_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ones_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ormqr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ormqr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_outer_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_outer_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_outer_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_outer_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_pca_lowrank_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_pca_lowrank_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_permute_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_permute_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_permute_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_permute_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_permute_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_permute_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_permute_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polar_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_3_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_3_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_4_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_4_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_4_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_positive_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_positive_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_positive_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_positive_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_prod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_put_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_put_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_put_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_qr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_quantile_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rad2deg_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rad2deg_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rad2deg_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rad2deg_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rad2deg_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rand_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rand_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randint_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randint_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randint_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randn_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randn_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randn_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ravel_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ravel_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ravel_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_real_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_real_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_real_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reciprocal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reciprocal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reciprocal_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reciprocal_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_renorm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_renorm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_renorm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_repeat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_repeat_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_repeat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_repeat_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_repeat_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_repeat_interleave_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_repeat_interleave_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_repeat_interleave_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_repeat_interleave_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_repeat_interleave_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reshape_as_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reshape_as_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reshape_as_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reshape_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reshape_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reshape_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resize__cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resize__cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resize_as__cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resize_as__cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resize_as__cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resolve_conj_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resolve_conj_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resolve_conj_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resolve_conj_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resolve_neg_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resolve_neg_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_roll_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_roll_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_roll_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rot90_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_round_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_round_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_round_decimals_0_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_round_decimals_0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_round_decimals_0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_round_decimals_3_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_round_decimals_neg_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rsqrt_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rsqrt_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rsqrt_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rsub_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rsub_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scalar_tensor_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scalar_tensor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scalar_tensor_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scalar_tensor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_add_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_amax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_amin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_mean_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_prod_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_prod_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_sum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_sum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_searchsorted_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_select_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_select_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_select_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_select_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_select_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_select_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sgn_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sgn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_short_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sigmoid_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sigmoid_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sign_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sign_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signal_windows_cosine_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signal_windows_gaussian_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signal_windows_general_hamming_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signal_windows_nuttall_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signbit_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signbit_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signbit_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sin_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sinc_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sinc_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sinc_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sinc_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sinh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sinh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sinh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_slice_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_slice_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_slice_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_slice_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_slice_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_slice_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_slice_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_slice_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_slice_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_slice_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_softmax_with_dtype_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_softmax_with_dtype_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_softmax_with_dtype_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sort_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sort_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sort_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sparse_mm_reduce_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sparse_mm_reduce_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_airy_ai_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_airy_ai_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_j1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_y0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_y1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_y1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_t_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_u_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_u_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_v_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_w_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_entr_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_erfcx_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_hermite_polynomial_h_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_hermite_polynomial_h_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_hermite_polynomial_h_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_hermite_polynomial_he_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i0e_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i0e_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i1e_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i1e_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i1e_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_laguerre_polynomial_l_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_laguerre_polynomial_l_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_laguerre_polynomial_l_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_legendre_polynomial_p_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_log_ndtr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_log_ndtr_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_i0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_i0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_i1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_i1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_k0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_k0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_k0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_k1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_k1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_k1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_k1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_ndtr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_ndtr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_ndtr_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_ndtri_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_ndtri_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_scaled_modified_bessel_k0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_scaled_modified_bessel_k0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_scaled_modified_bessel_k1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_scaled_modified_bessel_k1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_scaled_modified_bessel_k1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_t_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_u_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_u_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_w_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_spherical_bessel_j0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_spherical_bessel_j0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_spherical_bessel_j0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_spherical_bessel_j0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_xlog1py_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_xlog1py_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_xlog1py_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_xlog1py_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_zeta_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_zeta_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_zeta_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_zeta_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_list_args_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_list_args_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_list_args_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_list_args_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_list_args_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_with_sizes_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_with_sizes_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_with_sizes_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_with_sizes_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_with_sizes_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_with_sizes_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sqrt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sqrt_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sqrt_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sqrt_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sqrt_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sqrt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_square_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_square_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_multiple_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_stack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_stack_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_std_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_std_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_std_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_std_mean_unbiased_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_std_mean_unbiased_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_std_mean_unbiased_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_std_unbiased_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_std_unbiased_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_stft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_stft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sub_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sub_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sum_to_size_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_t_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_t_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_t_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_t_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_t_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_take_along_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_take_along_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_take_along_dim_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_take_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_take_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_take_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_take_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_take_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_take_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tan_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tanh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tanh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tanh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tensor_split_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tensor_split_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tensor_split_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tensor_split_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tensordot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tensordot_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tile_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tile_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tile_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_to_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_to_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_to_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_to_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_to_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_to_sparse_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_to_sparse_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_topk_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_topk_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trace_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trace_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_transpose_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_transpose_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_transpose_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_transpose_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_transpose_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_transpose_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_transpose_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_transpose_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_transpose_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_transpose_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trapezoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trapz_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trapz_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trapz_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_triangular_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tril_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tril_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tril_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_triu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_triu_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_triu_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_triu_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_triu_indices_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_true_divide_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trunc_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unflatten_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unflatten_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unfold_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unfold_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unfold_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unfold_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unfold_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unfold_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unfold_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unfold_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unique_consecutive_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unique_consecutive_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unique_consecutive_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unique_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unique_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unique_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unique_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unique_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unravel_index_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unravel_index_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsafe_chunk_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsafe_chunk_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsafe_chunk_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsafe_chunk_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsafe_chunk_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsafe_split_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsafe_split_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsafe_split_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsafe_split_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsafe_split_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_var_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_var_mean_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_var_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_var_unbiased_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vdot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vdot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vdot_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_as_complex_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_as_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_as_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_as_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_as_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vstack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_where_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_xlogy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_xlogy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_xlogy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zeros_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zeros_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zeros_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zeros_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zeros_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zeros_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zeros_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_H_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_T_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_T_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___getitem___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___getitem___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___getitem___cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___getitem___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___getitem___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___radd___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___radd___cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___radd___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rand___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rand___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rdiv___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rdiv___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rdiv___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rdiv___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rdiv___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rmatmul___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rmatmul___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rmatmul___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rmod___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rmul___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rmul___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rmul___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___ror___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rpow___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rsub___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__chunk_cat_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__chunk_cat_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__chunk_cat_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__chunk_cat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_abs_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_abs_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_abs_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_abs_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_acos_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_acos_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_add_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_add_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_addcdiv_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_addcdiv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_addcdiv_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_addcdiv_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_addcmul_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_addcmul_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_addcmul_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_addcmul_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_addcmul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_asin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_asin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_atan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_atan_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_atan_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_ceil_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_ceil_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_clamp_max_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_clamp_max_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_clamp_min_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_clamp_min_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_clamp_min_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_cos_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_cos_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_cos_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_cosh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_cosh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_div_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_div_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_div_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_erf_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_erf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_erf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_erf_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_erfc_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_erfc_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_erfc_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_erfc_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_erfc_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_exp_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_exp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_exp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_expm1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_floor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_floor_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_floor_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_frac_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_frac_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_lgamma_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_lgamma_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log10_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log10_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log10_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log1p_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log1p_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log1p_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log1p_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_max_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_max_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_max_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_max_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_maximum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_maximum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_maximum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_minimum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_minimum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_mul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_mul_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_neg_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_neg_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_norm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_norm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_pow_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_reciprocal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_reciprocal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_round_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_round_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_round_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_round_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_rsqrt_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sigmoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sigmoid_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sigmoid_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sign_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sign_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sign_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sign_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sign_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sin_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sinh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sinh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sqrt_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sqrt_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sqrt_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sub_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tan_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tan_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tanh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tanh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tanh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tanh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_trunc_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_trunc_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_zero_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_zero_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__segment_reduce_lengths_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__segment_reduce_lengths_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__segment_reduce_lengths_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__softmax_backward_data_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__unsafe_masked_index_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_abs_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_abs_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_acos_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_acosh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_acosh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_acosh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_acosh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_add_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_add_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_add_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addbmm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addcdiv_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addcmul_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addcmul_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addcmul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmm_decomposed_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmm_decomposed_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmm_decomposed_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmm_decomposed_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addr_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_alias_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_alias_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_alias_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_alias_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_alias_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_alias_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_alias_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides___rsub___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_abs_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_addcdiv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_exp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_expm1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_log10_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_log_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_neg_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_round_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_sign_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_sqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__unsafe_masked_index_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__unsafe_masked_index_put_accumulate_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_acos_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_acosh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_addbmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_argmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_as_strided_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_atanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_bitwise_left_shift_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_bitwise_not_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_broadcast_tensors_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_bucketize_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_chunk_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_clamp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_complex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_copysign_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_corrcoef_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_cos_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_diag_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_diagflat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_diagonal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_empty_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_eq_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_erfinv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fft_fft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fft_fftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fft_fftshift_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fft_ifft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fft_ifftshift_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fft_ihfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fft_irfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fft_rfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fill_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_ge_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_gradient_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_grid_sampler_3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_half_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_histc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_hypot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_igamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_index_reduce_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_isin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_isnan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_istft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_jiterator_2inputs_2outputs_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_jiterator_4inputs_with_extra_args_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_ldexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_cross_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_lu_factor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_lu_factor_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_matrix_power_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_pinv_singular_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_solve_triangular_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_vecdot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_log_normal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_logaddexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_logdet_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_logsumexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_lt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_masked_log_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_masked_logaddexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_masked_median_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_masked_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_masked_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_masked_sum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_matmul_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_maximum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_min_reduction_no_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_minimum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_mode_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_mv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_native_dropout_backward_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_neg_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_new_empty_strided_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_avg_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_binary_cross_entropy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_channel_shuffle_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_conv1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_conv_transpose2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_ctc_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_dropout3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_dropout_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_fractional_max_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_fractional_max_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_hardswish_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_logsigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_max_unpool1d_grad_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_max_unpool2d_grad_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_max_unpool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_max_unpool3d_grad_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_relu6_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_selu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_soft_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_softplus_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_softsign_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_threshold_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_unfold_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_ones_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_outer_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_polygamma_polygamma_n_0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_polygamma_polygamma_n_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_put_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_rad2deg_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_randn_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_remainder_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_reshape_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_roll_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_scalar_tensor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_scatter_reduce_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_scatter_reduce_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_sigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_signal_windows_general_hamming_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_signal_windows_hamming_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_sin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_slice_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_sparse_mm_reduce_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_chebyshev_polynomial_u_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_laguerre_polynomial_l_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_log_ndtr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_modified_bessel_i0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_modified_bessel_k0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_split_with_sizes_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_square_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_stack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_sub_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_sum_to_size_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_svd_lowrank_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_t_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_tan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_tensordot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_trace_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_transpose_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_trapz_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_tril_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_triu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_triu_indices_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_unsafe_chunk_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_unsqueeze_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_var_mean_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_view_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_view_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_xlogy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_zero__cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_zeros_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_allclose_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_allclose_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_amax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_amax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_amin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_amin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_amin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_amin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_amin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_aminmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_aminmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_aminmax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_aminmax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_aminmax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_angle_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_any_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_any_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_any_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_any_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_any_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_arange_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_arange_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_arange_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argmax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argmax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argmin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argsort_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argsort_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argwhere_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_partial_views_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_partial_views_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_partial_views_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_partial_views_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_scatter_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_asin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_asin_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_asin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_asinh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atan2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atan2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atan_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atanh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atanh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_1d_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_1d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_1d_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_2d_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_3d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bernoulli_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bfloat16_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bfloat16_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bfloat16_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bfloat16_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bfloat16_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_and_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_and_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_and_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_left_shift_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_left_shift_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_not_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_not_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_or_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_xor_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_xor_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_block_diag_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bool_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bool_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bool_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bool_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_broadcast_shapes_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_broadcast_tensors_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_broadcast_tensors_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_broadcast_tensors_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_broadcast_to_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_broadcast_to_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_broadcast_to_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_broadcast_to_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_broadcast_to_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_broadcast_to_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_broadcast_to_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bucketize_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_byte_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_byte_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_byte_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cartesian_prod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cartesian_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cartesian_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cartesian_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cat_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cauchy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cdist_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cdouble_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cdouble_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ceil_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cfloat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cfloat_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cfloat_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cfloat_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_chalf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_chalf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_chalf_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_chalf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_char_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_char_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cholesky_inverse_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_chunk_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_chunk_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_chunk_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_max_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_max_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_max_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_min_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clone_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clone_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clone_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clone_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clone_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clone_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_column_stack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_column_stack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_column_stack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_combinations_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_complex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_conj_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_conj_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_conj_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_conj_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_conj_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_conj_physical_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_conj_physical_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_conj_physical_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_conj_physical_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_conj_physical_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_constant_pad_nd_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_constant_pad_nd_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_constant_pad_nd_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_contiguous_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_contiguous_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_copysign_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_copysign_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_copysign_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_copysign_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_corrcoef_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_corrcoef_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cos_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cos_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cos_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cos_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cosh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cosh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cosh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cosh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cosh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cosh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_count_nonzero_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_count_nonzero_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_count_nonzero_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_count_nonzero_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_count_nonzero_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cov_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cov_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cross_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cross_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cross_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cummax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cummax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cummin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cummin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumprod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumprod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumprod_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumprod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumsum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumsum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumsum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumsum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumsum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumulative_trapezoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumulative_trapezoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumulative_trapezoid_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_deg2rad_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_deg2rad_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diag_embed_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diag_embed_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diag_embed_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diag_embed_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagflat_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagflat_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diff_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diff_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_digamma_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_digamma_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_digamma_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dist_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dist_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dist_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_no_rounding_mode_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_no_rounding_mode_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_no_rounding_mode_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_no_rounding_mode_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_trunc_rounding_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_trunc_rounding_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_trunc_rounding_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_trunc_rounding_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dot_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dot_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dot_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_double_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_double_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_double_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_double_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dsplit_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dsplit_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dsplit_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dsplit_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dstack_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dstack_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dstack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_einsum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_einsum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_einsum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_einsum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_einsum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_like_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_permuted_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_permuted_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_strided_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_strided_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eq_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eq_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eq_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_equal_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_equal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erf_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erf_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erfc_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erfc_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erfinv_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_exp2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_exp2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_exp2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_exp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_exp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_as_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_as_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expm1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expm1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expm1_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expm1_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expm1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expm1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_exponential_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_exponential_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eye_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eye_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eye_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eye_cpu_float8_e5m2fnuz, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eye_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fft2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fft_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fftshift_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fftshift_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfft2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifft2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifft_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifftn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifftshift_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifftshift_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifftshift_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifftshift_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifftshift_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ihfft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ihfft_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ihfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ihfftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfft_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfft_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfft_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfft_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfft_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fill_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fill_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fill_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fill_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fill_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fill_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flatten_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flatten_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flatten_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flatten_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flip_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fliplr_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fliplr_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fliplr_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flipud_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flipud_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flipud_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flipud_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_float_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_float_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_float_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_floor_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_floor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_floor_divide_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_floor_divide_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fmin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fmin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fmin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fmod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_frac_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_frac_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_frexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_full_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_full_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_full_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_full_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_full_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_full_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_full_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_full_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_full_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_full_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gather_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ge_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ge_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_geometric_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_geometric_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_geometric_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_geqrf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gradient_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gradient_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gradient_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gradient_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_grid_sampler_3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gt_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gt_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gt_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gt_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_half_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_half_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_half_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_half_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_half_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hash_tensor_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_heaviside_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_heaviside_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_histc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_histc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_histc_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hsplit_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hsplit_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hsplit_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hsplit_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hstack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hstack_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hstack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hstack_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hstack_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hstack_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hypot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_i0_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_i0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_igamma_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_igammac_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_igammac_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_imag_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_add_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_add_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_fill_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_fill_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_fill_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_put_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_put_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_put_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_put_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_put_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_amax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_amax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_amax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_mean_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_prod_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_prod_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_select_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_select_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_select_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_inner_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_inner_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_inner_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_int_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_int_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isclose_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isclose_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isfinite_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isfinite_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isfinite_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isfinite_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isinf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isinf_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isnan_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isnan_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isneginf_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isneginf_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isneginf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isposinf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isposinf_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isreal_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isreal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isreal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isreal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isreal_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_istft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_item_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_item_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_item_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_item_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_2inputs_2outputs_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_2inputs_2outputs_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_2inputs_2outputs_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_4inputs_with_extra_args_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_4inputs_with_extra_args_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_4inputs_with_extra_args_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_binary_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_binary_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_binary_return_by_ref_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_binary_return_by_ref_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_binary_return_by_ref_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_binary_return_by_ref_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_unary_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_kron_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_kron_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_kron_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_kthvalue_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_kthvalue_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ldexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ldexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ldexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ldexp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_le_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lerp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lgamma_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lgamma_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lgamma_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_cholesky_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_cholesky_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_cholesky_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_cond_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_cond_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_cross_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_cross_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_cross_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_cross_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_cross_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_cross_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_det_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_diagonal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_diagonal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_eigvals_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_eigvals_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_eigvals_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_eigvalsh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_householder_product_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_inv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_ldl_factor_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_ldl_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_lstsq_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_lstsq_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_lstsq_grad_oriented_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_lstsq_grad_oriented_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_lu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_lu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_lu_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_lu_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_matrix_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_matrix_power_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_matrix_power_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_matrix_power_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_matrix_rank_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_matrix_rank_hermitian_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_matrix_rank_hermitian_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_matrix_rank_hermitian_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_multi_dot_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_multi_dot_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_norm_subgradients_at_zero_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_qr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_qr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_solve_ex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_svd_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_svdvals_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_svdvals_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_svdvals_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_svdvals_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_tensorinv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_vector_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linspace_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linspace_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linspace_tensor_overload_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linspace_tensor_overload_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log10_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log1p_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log1p_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_softmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_softmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_softmax_with_dtype_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_softmax_with_dtype_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logcumsumexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logcumsumexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_and_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_and_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_not_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_not_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_not_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_not_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_or_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_or_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_xor_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_xor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_xor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_xor_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_xor_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_xor_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_xor_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logit_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logit_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logspace_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logspace_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logspace_tensor_overload_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logspace_tensor_overload_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logspace_tensor_overload_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logspace_tensor_overload_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logspace_tensor_overload_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logspace_tensor_overload_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logsumexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logsumexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logsumexp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_long_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_long_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_long_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lt_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lu_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lu_unpack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mH_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mH_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mT_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mT_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mT_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mT_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mT_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mT_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_amax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_amax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_amin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_amin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_amin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_argmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_argmin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_argmin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_argmin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_cumprod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_cumprod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_cumprod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_cumprod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_cumsum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_cumsum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_cumsum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_fill_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_fill_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_fill_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_logsumexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_logsumexp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_median_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_median_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_normalize_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_normalize_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_normalize_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_prod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_scatter_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_scatter_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_select_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_select_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_select_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_select_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_select_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_softmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_softmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_std_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_std_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_sum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_var_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_var_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_var_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_matmul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_matmul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_matmul_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_matmul_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_matmul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_matrix_exp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_matrix_exp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_binary_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_binary_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_binary_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_binary_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_binary_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_reduction_no_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_reduction_no_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_reduction_no_dim_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_reduction_no_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_reduction_with_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_reduction_with_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_maximum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_maximum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_meshgrid_list_of_tensors_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_meshgrid_list_of_tensors_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_meshgrid_list_of_tensors_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_meshgrid_variadic_tensors_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_meshgrid_variadic_tensors_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_binary_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_binary_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_binary_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_reduction_no_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_reduction_no_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_reduction_no_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_reduction_no_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_reduction_with_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_reduction_with_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_minimum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_minimum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mode_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mode_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mode_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_movedim_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_movedim_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_movedim_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_movedim_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_msort_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_msort_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_msort_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_msort_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mul_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mul_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mul_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_multinomial_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mvlgamma_mvlgamma_p_5_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mvlgamma_mvlgamma_p_5_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nan_to_num_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nan_to_num_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nan_to_num_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nanmedian_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nanmedian_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nanmedian_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nanquantile_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nansum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_narrow_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_narrow_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_narrow_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_narrow_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_native_batch_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_native_dropout_backward_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_native_dropout_backward_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_native_layer_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ne_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ne_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ne_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_neg_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_neg_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_empty_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_empty_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_empty_strided_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_full_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_full_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_ones_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_zeros_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_zeros_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nextafter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_adaptive_max_pool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_adaptive_max_pool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_adaptive_max_pool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_alpha_dropout_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_alpha_dropout_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_avg_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_avg_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_avg_pool2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_avg_pool3d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_batch_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_bilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_bilinear_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_bilinear_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_bilinear_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_binary_cross_entropy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_binary_cross_entropy_with_logits_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_binary_cross_entropy_with_logits_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_celu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_celu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_channel_shuffle_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_channel_shuffle_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_channel_shuffle_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_channel_shuffle_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_channel_shuffle_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv1d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv2d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv3d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv_transpose1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv_transpose1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv_transpose1d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv_transpose2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv_transpose2d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv_transpose2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_cosine_embedding_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_cosine_embedding_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_cosine_similarity_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_cosine_similarity_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_cross_entropy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_dropout2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_elu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_embedding_bag_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_embedding_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_feature_alpha_dropout_with_train_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_feature_alpha_dropout_with_train_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_feature_alpha_dropout_with_train_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_fractional_max_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_fractional_max_pool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_fractional_max_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_fractional_max_pool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_gelu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_grid_sample_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_hardshrink_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_hardswish_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_hardtanh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_hardtanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_hardtanh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_hinge_embedding_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_hinge_embedding_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_hinge_embedding_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_area_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_bicubic_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_bilinear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_bilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_bilinear_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_nearest-exact_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_nearest-exact_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_nearest-exact_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_trilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_trilinear_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_l1_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_layer_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_leaky_relu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_leaky_relu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_linear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_linear_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_local_response_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_local_response_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_local_response_norm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_logsigmoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_logsigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_margin_ranking_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_margin_ranking_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_margin_ranking_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_margin_ranking_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_pool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_pool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_pool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_pool3d_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_unpool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_unpool1d_grad_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_unpool2d_grad_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_mse_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_mse_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_multi_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_multilabel_soft_margin_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_nll_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_normalize_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_circular_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_circular_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_circular_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_circular_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_circular_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_circular_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_constant_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_constant_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_constant_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_reflect_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_replicate_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_replicate_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_replicate_negative_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_replicate_negative_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pairwise_distance_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pairwise_distance_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pairwise_distance_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pixel_shuffle_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pixel_shuffle_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pixel_unshuffle_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pixel_unshuffle_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_poisson_nll_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_prelu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_relu6_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_relu6_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_relu6_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_relu_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_rms_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_rms_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_rms_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_scaled_dot_product_attention_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_scaled_dot_product_attention_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_selu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_selu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_silu_complex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_smooth_l1_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_soft_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softmin_with_dtype_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softmin_with_dtype_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softmin_with_dtype_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softplus_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softplus_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softshrink_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softshrink_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softsign_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softsign_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softsign_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softsign_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_tanhshrink_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_tanhshrink_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_threshold_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_threshold_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_threshold_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_triplet_margin_loss_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_triplet_margin_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_triplet_margin_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_triplet_margin_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_unfold_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_upsample_bilinear_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_upsample_nearest_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_upsample_nearest_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nonzero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nonzero_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nonzero_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nonzero_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nonzero_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nonzero_static_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nonzero_static_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nonzero_static_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nonzero_static_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nonzero_static_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_norm_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_norm_fro_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_norm_inf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_norm_inf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_norm_inf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_norm_inf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_norm_inf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_normal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_normal_in_place_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_normal_in_place_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_normal_in_place_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_normal_number_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ones_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ones_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ones_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_outer_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_outer_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_outer_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_outer_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_pca_lowrank_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_pca_lowrank_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_permute_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_permute_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_permute_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_permute_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_permute_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_0_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_3_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_3_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_3_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_4_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_4_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_4_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_positive_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_positive_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_positive_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_positive_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_pow_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_prod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_put_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_qr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_quantile_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rad2deg_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rad2deg_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rad2deg_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rad2deg_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rad2deg_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rad2deg_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rad2deg_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rand_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rand_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rand_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randint_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randint_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randint_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randint_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randint_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randint_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randn_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randn_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randn_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randn_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randn_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ravel_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ravel_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ravel_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ravel_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_real_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_real_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_real_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_real_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_real_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reciprocal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reciprocal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reciprocal_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_remainder_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_repeat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_repeat_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_repeat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_repeat_interleave_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_repeat_interleave_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_repeat_interleave_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_repeat_interleave_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reshape_as_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reshape_as_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reshape_as_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reshape_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reshape_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reshape_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reshape_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resize__cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resize__cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resize__cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resize_as__cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resize_as__cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resize_as__cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resolve_conj_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resolve_conj_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resolve_neg_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resolve_neg_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resolve_neg_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_roll_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_roll_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rot90_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rot90_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rot90_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_round_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_round_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_round_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_round_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_round_decimals_0_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_round_decimals_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_round_decimals_neg_3_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rsqrt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rsqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rsqrt_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rsub_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rsub_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rsub_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scalar_tensor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scalar_tensor_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scalar_tensor_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_add_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_add_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_add_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_amax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_amax_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_amax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_amin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_amin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_mean_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_prod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_sum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_sum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_sum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_searchsorted_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_searchsorted_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_select_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_select_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_select_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_select_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_select_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_select_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_select_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_select_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sgn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sgn_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sgn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sgn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_short_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_short_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sigmoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sigmoid_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sigmoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sigmoid_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sign_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sign_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signal_windows_bartlett_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signal_windows_exponential_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signal_windows_gaussian_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signal_windows_general_cosine_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signal_windows_general_cosine_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signal_windows_hann_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signbit_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signbit_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signbit_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signbit_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sinc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sinc_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sinc_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sinc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sinh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sinh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sinh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_slice_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_slice_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_slice_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_slice_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_slice_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_slice_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_slice_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_softmax_with_dtype_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_softmax_with_dtype_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_softmax_with_dtype_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_softmax_with_dtype_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sort_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sort_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sort_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sparse_mm_reduce_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sparse_sampled_addmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sparse_sampled_addmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sparse_sampled_addmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_airy_ai_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_airy_ai_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_j0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_j0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_j0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_j1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_j1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_j1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_j1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_y0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_y0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_y1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_y1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_t_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_u_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_u_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_u_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_v_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_v_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_v_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_v_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_v_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_w_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_entr_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_entr_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_erfcx_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_erfcx_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_hermite_polynomial_h_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_hermite_polynomial_h_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_hermite_polynomial_he_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_hermite_polynomial_he_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_hermite_polynomial_he_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_hermite_polynomial_he_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_hermite_polynomial_he_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_hermite_polynomial_he_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_i0e_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_i1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_i1e_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_i1e_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_laguerre_polynomial_l_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_laguerre_polynomial_l_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_legendre_polynomial_p_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_legendre_polynomial_p_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_legendre_polynomial_p_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_log_ndtr_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_i0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_i1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_k0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_k0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_k1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_k1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_ndtr_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_ndtr_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_ndtr_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_ndtri_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_scaled_modified_bessel_k0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_scaled_modified_bessel_k0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_scaled_modified_bessel_k1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_scaled_modified_bessel_k1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_scaled_modified_bessel_k1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_u_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_w_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_spherical_bessel_j0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_spherical_bessel_j0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_xlog1py_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_xlog1py_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_xlog1py_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_zeta_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_zeta_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_list_args_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_list_args_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_list_args_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_list_args_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_with_sizes_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_with_sizes_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_with_sizes_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_with_sizes_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_with_sizes_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_with_sizes_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_with_sizes_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sqrt_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sqrt_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sqrt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_square_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_multiple_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_multiple_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_multiple_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_multiple_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_stack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_stack_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_stack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_stack_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_stack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_std_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_std_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_std_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_std_mean_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_std_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_std_unbiased_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_std_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_stft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sub_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sub_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sub_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sum_to_size_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sum_to_size_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_svd_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_t_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_t_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_t_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_t_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_t_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_t_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_t_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_t_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_t_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_take_along_dim_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_take_along_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_take_along_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tan_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tan_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tan_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tan_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tanh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tanh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tanh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tensor_split_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tensor_split_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tensor_split_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tensordot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tensordot_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tile_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tile_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tile_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_to_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_to_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_to_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_to_sparse_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_to_sparse_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_to_sparse_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_topk_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_torch__scaled_mm_cpu_float8_e4m3fn, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_torch__scaled_mm_cpu_float8_e5m2, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trace_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trace_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trace_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trapezoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trapezoid_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trapz_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trapz_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trapz_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_triangular_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_triangular_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_triangular_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tril_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tril_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tril_indices_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_triu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_triu_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_triu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_triu_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_true_divide_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_true_divide_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trunc_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trunc_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trunc_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unflatten_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unflatten_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unflatten_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unfold_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unfold_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unfold_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_uniform_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_uniform_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_uniform_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unique_consecutive_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unique_consecutive_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unique_consecutive_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unique_consecutive_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unique_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unique_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unique_cpu_uint16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unique_cpu_uint64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unravel_index_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unravel_index_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unravel_index_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsafe_chunk_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsafe_chunk_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsafe_chunk_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsafe_chunk_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsafe_split_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsqueeze_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsqueeze_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsqueeze_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsqueeze_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsqueeze_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsqueeze_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsqueeze_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_var_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_var_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_var_mean_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_var_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_var_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_var_unbiased_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_var_unbiased_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vdot_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vdot_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_as_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_as_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_as_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_as_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vstack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vstack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vstack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_where_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_where_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_where_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_where_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_where_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_xlogy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zero__cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zero__cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zero__cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zeros_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zeros_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zeros_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zeros_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zeros_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_H_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_H_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_H_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_T_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___getitem___cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___getitem___cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___getitem___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___getitem___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___radd___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___radd___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___radd___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___radd___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___radd___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rand___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rand___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rdiv___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rdiv___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rdiv___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rdiv___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rmatmul___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rmatmul___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rmod___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rmul___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rmul___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rmul___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___ror___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rpow___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rsub___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rsub___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rsub___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__batch_norm_with_update_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__batch_norm_with_update_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__chunk_cat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__chunk_cat_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_abs_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_abs_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_abs_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_acos_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_acos_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_acos_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_add_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_add_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_addcdiv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_addcdiv_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_addcdiv_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_addcdiv_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_addcdiv_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_addcmul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_addcmul_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_addcmul_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_asin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_asin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_atan_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_atan_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_ceil_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_ceil_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_clamp_max_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_clamp_max_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_clamp_min_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_clamp_min_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_clamp_min_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_cos_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_cos_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_cosh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_div_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_div_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_div_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_erf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_erf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_erf_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_erfc_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_erfc_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_exp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_exp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_exp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_exp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_expm1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_floor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_frac_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_frac_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_frac_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_frac_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_frac_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_lerp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_lerp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_lerp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_lerp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_lerp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_lerp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_lerp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_lgamma_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_lgamma_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_lgamma_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log10_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log10_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log10_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log1p_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log1p_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log1p_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log1p_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log1p_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log1p_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log2_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_max_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_max_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_max_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_max_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_maximum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_maximum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_maximum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_maximum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_maximum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_minimum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_minimum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_minimum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_mul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_mul_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_mul_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_mul_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_neg_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_neg_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_norm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_norm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_pow_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_pow_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_pow_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_pow_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_reciprocal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_reciprocal_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_round_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_round_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_round_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_rsqrt_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_rsqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_rsqrt_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sigmoid_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sign_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sinh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sinh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sinh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sqrt_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sub_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sub_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sub_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sub_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_tan_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_tan_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_tan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_tanh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_tanh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_tanh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_trunc_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_trunc_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_zero_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__native_batch_norm_legit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__segment_reduce_lengths_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__segment_reduce_offsets_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__segment_reduce_offsets_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__softmax_backward_data_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__unsafe_masked_index_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__unsafe_masked_index_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__unsafe_masked_index_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__unsafe_masked_index_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__unsafe_masked_index_put_accumulate_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__unsafe_masked_index_put_accumulate_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__unsafe_masked_index_put_accumulate_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__upsample_bilinear2d_aa_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__upsample_bilinear2d_aa_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_abs_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_abs_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_abs_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_acos_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_acos_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_acos_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_acosh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_acosh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_acosh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_acosh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_acosh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_acosh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_add_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_add_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_add_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addbmm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addcdiv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addcdiv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addcdiv_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addcdiv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addcdiv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addcmul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addcmul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addcmul_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addcmul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmm_decomposed_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmm_decomposed_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmm_decomposed_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmm_decomposed_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmm_decomposed_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmv_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmv_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addr_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addr_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addr_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_alias_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_alias_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_alias_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides___rmul___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides___rpow___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides___rxor___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_addcmul_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_asin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_atan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_ceil_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_erfc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_exp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_expm1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_floor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_lerp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_log10_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_log1p_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_mul_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_sigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_sign_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_sinh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_zero_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__segment_reduce_lengths_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__segment_reduce_offsets_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__softmax_backward_data_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__unsafe_masked_index_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_addmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_addmm_decomposed_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_addmv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_angle_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_argwhere_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_atan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_atanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_atleast_3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_bitwise_right_shift_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_bmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_bool_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_broadcast_tensors_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_cdouble_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_cholesky_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_clamp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_clamp_min_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_column_stack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_complex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_copysign_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_count_nonzero_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_cummin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_cumprod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_cumulative_trapezoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_diff_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_erfc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_expand_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_exponential_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_fft_fft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_fft_ifftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_fft_ifftshift_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_fft_ihfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_flatten_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_flip_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_flipud_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_frac_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_gradient_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_hash_tensor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_index_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_index_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_isnan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_istft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_jiterator_binary_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_jiterator_binary_return_by_ref_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_jiterator_unary_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_cholesky_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_diagonal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_eig_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_eigvalsh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_ldl_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_lu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_lu_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_matrix_power_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_multi_dot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_norm_subgradients_at_zero_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_solve_triangular_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_svdvals_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linspace_tensor_overload_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_log_softmax_with_dtype_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_logical_and_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_logical_xor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_logspace_tensor_overload_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_logsumexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_mH_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_masked_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_masked_cumsum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_masked_fill_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_masked_logaddexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_masked_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_masked_median_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_masked_normalize_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_masked_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_max_pool2d_with_indices_backward_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_median_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_min_binary_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_msort_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_mv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_native_dropout_backward_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_ne_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_neg_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_new_full_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_bilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_conv3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_conv_transpose1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_conv_transpose3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_cosine_embedding_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_dropout2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_dropout3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_hardtanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_huber_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_interpolate_area_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_interpolate_linear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_margin_ranking_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_max_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_max_unpool3d_grad_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_mish_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_mse_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_multilabel_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_normalize_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_pad_replicate_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_prelu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_silu_complex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_softmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_triplet_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_upsample_bilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_ones_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_ones_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_polar_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_polygamma_polygamma_n_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_polygamma_polygamma_n_4_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_put_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_qr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_quantile_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_randn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_randn_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_real_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_repeat_interleave_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_resize__cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_resize_as__cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_resolve_conj_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_scatter_reduce_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_select_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_short_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_sigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_signal_windows_general_cosine_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_signal_windows_hann_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_signal_windows_kaiser_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_signal_windows_nuttall_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_signbit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_sinc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_slice_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_slice_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_airy_ai_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_bessel_j1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_chebyshev_polynomial_v_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_erfcx_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_i1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_i1e_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_laguerre_polynomial_l_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_modified_bessel_k0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_ndtri_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_scaled_modified_bessel_k0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_zeta_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_split_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_split_list_args_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_stft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_sub_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_tensor_split_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_torch__scaled_mm_cpu_float8_e4m3fn, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_triangular_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_tril_indices_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_uniform_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_unsqueeze_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_var_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_view_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_xlogy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_allclose_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_amax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_amax_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_amax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_amax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_amin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_amin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_amin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_aminmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_aminmax_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_aminmax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_angle_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_angle_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_angle_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_angle_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_any_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_any_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_any_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_arange_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_arange_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_arange_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_arange_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_arange_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argmax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argmin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argsort_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argsort_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argsort_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argwhere_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argwhere_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argwhere_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argwhere_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_partial_views_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_partial_views_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_partial_views_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_partial_views_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_scatter_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_asin_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_asin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_asin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_asinh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_asinh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_asinh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_asinh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_asinh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atan2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atan2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atan_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atan_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atan_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_1d_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_1d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_2d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_2d_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_3d_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_3d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_baddbmm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_baddbmm_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bernoulli_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bernoulli_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bfloat16_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bincount_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bincount_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_and_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_and_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_and_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_left_shift_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_left_shift_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_not_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_not_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_or_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_or_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_right_shift_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_xor_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_block_diag_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_block_diag_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_block_diag_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bmm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bool_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bool_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_broadcast_tensors_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_broadcast_tensors_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_broadcast_tensors_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_broadcast_tensors_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_broadcast_tensors_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_broadcast_tensors_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_broadcast_to_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_broadcast_to_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_broadcast_to_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bucketize_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bucketize_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bucketize_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bucketize_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cartesian_prod_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cartesian_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cartesian_prod_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cartesian_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cat_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cat_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cat_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cat_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cauchy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cauchy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cauchy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cdouble_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cdouble_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cdouble_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ceil_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ceil_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ceil_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ceil_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ceil_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cfloat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cfloat_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cfloat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_chalf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_chalf_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_chalf_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cholesky_inverse_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cholesky_inverse_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cholesky_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_chunk_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_chunk_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_chunk_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_chunk_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_chunk_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_max_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_max_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_max_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_min_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_min_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_min_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clone_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_column_stack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_column_stack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_column_stack_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_column_stack_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_column_stack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_complex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_conj_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_conj_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_conj_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_conj_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_conj_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_conj_physical_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_constant_pad_nd_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_constant_pad_nd_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_contiguous_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_contiguous_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_contiguous_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_contiguous_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_contiguous_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_contiguous_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_copysign_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_copysign_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_copysign_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_corrcoef_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_corrcoef_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cos_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cos_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cos_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cos_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cosh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cosh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cosh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_count_nonzero_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_count_nonzero_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_count_nonzero_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cov_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cov_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cross_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cross_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cross_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cross_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cross_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cross_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cummax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cummin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cummin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cummin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cummin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumsum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumsum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumsum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumsum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumsum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumsum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumsum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumsum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumulative_trapezoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumulative_trapezoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumulative_trapezoid_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumulative_trapezoid_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_deg2rad_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_deg2rad_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diag_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diag_embed_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diag_embed_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagflat_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagflat_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagflat_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_scatter_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diff_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diff_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_digamma_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_digamma_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_digamma_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dist_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dist_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dist_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_floor_rounding_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_no_rounding_mode_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_no_rounding_mode_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_trunc_rounding_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_trunc_rounding_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_trunc_rounding_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_double_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_double_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dsplit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dsplit_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dsplit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dsplit_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dstack_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dstack_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_einsum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_einsum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_einsum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_permuted_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_permuted_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_permuted_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_permuted_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_strided_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_strided_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_strided_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eq_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eq_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_equal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_equal_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_equal_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_equal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erf_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erf_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erf_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erfc_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erfc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exp2_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exp2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exp2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exp2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_as_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_as_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_as_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expm1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expm1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expm1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exponential_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exponential_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exponential_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exponential_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eye_cpu_float8_e5m2fnuz, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eye_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eye_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fft2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fft_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fftshift_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fftshift_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fftshift_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifft_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifft_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifft_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifftshift_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifftshift_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifftshift_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifftshift_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifftshift_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifftshift_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ihfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ihfft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ihfft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ihfft_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ihfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfft2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfft_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfft_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfft_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_rfft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_rfft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_rfft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_rfft_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_rfftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_rfftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fill_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fill_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fill_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fill_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flatten_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flatten_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flip_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flip_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fliplr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fliplr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flipud_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flipud_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_float_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_float_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_float_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_float_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_float_power_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_float_power_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_float_power_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_float_power_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_floor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_floor_divide_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmod_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_frac_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_frexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_full_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_full_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_full_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_full_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_full_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_full_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_full_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_full_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_full_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_full_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ge_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_geometric_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_geometric_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_geometric_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gradient_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_grid_sampler_2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_grid_sampler_3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gt_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gt_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_half_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_half_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_half_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hash_tensor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hash_tensor_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hash_tensor_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hash_tensor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_heaviside_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_heaviside_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_heaviside_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_histc_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_histogram_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_histogramdd_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hsplit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hsplit_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hsplit_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hstack_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hstack_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hstack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_i0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_i0_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_igamma_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_imag_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_add_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_add_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_fill_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_fill_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_put_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_put_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_put_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_amax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_amax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_amax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_amin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_amin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_mean_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_mean_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_mean_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_mean_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_select_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_select_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_select_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_inner_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_inner_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_inner_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_int_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_int_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_int_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isclose_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isclose_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isclose_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isclose_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isfinite_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isfinite_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isfinite_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isfinite_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isfinite_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isfinite_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isinf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isinf_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isinf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isinf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isinf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isinf_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isinf_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isneginf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isneginf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isneginf_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isneginf_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isneginf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isposinf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isposinf_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isposinf_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isreal_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isreal_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_item_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_item_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_item_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_item_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_2inputs_2outputs_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_2inputs_2outputs_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_2inputs_2outputs_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_4inputs_with_extra_args_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_binary_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_binary_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_binary_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_binary_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_binary_return_by_ref_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_binary_return_by_ref_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_binary_return_by_ref_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_unary_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_unary_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_kron_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_kron_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_kron_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_kron_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_kthvalue_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_kthvalue_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lcm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ldexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ldexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ldexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ldexp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ldexp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ldexp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ldexp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_le_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_le_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_le_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_le_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lerp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lerp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lerp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lerp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lgamma_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lgamma_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_cholesky_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_cholesky_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_cond_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_cross_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_cross_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_cross_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_cross_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_cross_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_det_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_det_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_diagonal_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_diagonal_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_diagonal_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_diagonal_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_diagonal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_eigh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_eigh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_eigh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_eigvalsh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_householder_product_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_householder_product_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_inv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_inv_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_inv_ex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_ldl_factor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_ldl_factor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_ldl_factor_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_ldl_factor_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_ldl_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_ldl_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_ldl_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_lstsq_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_lstsq_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_lstsq_grad_oriented_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_lu_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_lu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_lu_factor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_lu_factor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_lu_factor_ex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_lu_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_lu_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_matrix_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_matrix_rank_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_multi_dot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_multi_dot_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_multi_dot_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_norm_subgradients_at_zero_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_pinv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_pinv_hermitian_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_pinv_singular_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_slogdet_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_solve_triangular_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_solve_triangular_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_svdvals_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_tensorinv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_tensorinv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_tensorsolve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_vander_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_vander_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_vander_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_vecdot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_vecdot_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_vector_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_vector_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linspace_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linspace_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linspace_tensor_overload_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log10_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log10_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log10_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log1p_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log1p_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log1p_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log1p_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log2_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_softmax_with_dtype_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_softmax_with_dtype_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logaddexp2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logaddexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logaddexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logdet_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_and_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_and_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_and_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_not_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_or_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_or_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_or_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_or_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_or_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_or_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_xor_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_xor_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_xor_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logit_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logit_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logspace_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logspace_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logspace_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logspace_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logspace_tensor_overload_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logspace_tensor_overload_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_long_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_long_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lt_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lt_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lt_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lu_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lu_unpack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mH_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mH_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mH_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mT_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mT_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mT_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mT_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_amin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_amin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_argmin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_argmin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_cumprod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_cumprod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_cumprod_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_cumsum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_cumsum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_cumsum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_cumsum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_fill_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_fill_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_log_softmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_log_softmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_logsumexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_logsumexp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_median_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_normalize_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_prod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_prod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_scatter_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_select_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_select_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_select_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_select_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_softmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_std_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_sum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_sum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_var_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_var_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_var_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_matmul_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_matrix_exp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_binary_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_binary_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_binary_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_reduction_no_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_reduction_no_dim_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_reduction_with_dim_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_maximum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_maximum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_median_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_median_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_meshgrid_list_of_tensors_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_meshgrid_list_of_tensors_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_meshgrid_variadic_tensors_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_meshgrid_variadic_tensors_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_meshgrid_variadic_tensors_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_meshgrid_variadic_tensors_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_meshgrid_variadic_tensors_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_meshgrid_variadic_tensors_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_min_binary_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_min_reduction_no_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_min_reduction_no_dim_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_min_reduction_no_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_minimum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_minimum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_minimum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_minimum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mode_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mode_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mode_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_movedim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_msort_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_msort_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mul_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mul_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_multinomial_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mv_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mvlgamma_mvlgamma_p_3_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nan_to_num_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nan_to_num_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nanmean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nanmean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nanquantile_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nansum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nansum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nansum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nansum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nansum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_narrow_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_narrow_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_native_batch_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_native_layer_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_native_layer_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_native_layer_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ne_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_neg_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_neg_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_neg_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_neg_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_neg_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_empty_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_empty_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_empty_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_empty_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_full_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_full_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_ones_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_ones_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_zeros_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_zeros_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nextafter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_adaptive_avg_pool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_adaptive_avg_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_adaptive_avg_pool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_adaptive_avg_pool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_adaptive_max_pool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_adaptive_max_pool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_adaptive_max_pool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_adaptive_max_pool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_alpha_dropout_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_alpha_dropout_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_avg_pool1d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_avg_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_avg_pool2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_avg_pool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_bilinear_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_binary_cross_entropy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_binary_cross_entropy_with_logits_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_celu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_celu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_channel_shuffle_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv_transpose1d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv_transpose1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv_transpose2d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv_transpose2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_cosine_embedding_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_cross_entropy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_cross_entropy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_dropout2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_dropout2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_dropout2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_dropout3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_dropout_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_embedding_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_feature_alpha_dropout_with_train_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_fractional_max_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_fractional_max_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_group_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_group_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_hardshrink_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_hardsigmoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_hardswish_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_hardswish_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_huber_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_huber_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_area_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_bicubic_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_linear_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_nearest-exact_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_nearest_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_layer_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_layer_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_leaky_relu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_leaky_relu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_linear_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_linear_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_linear_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_linear_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_margin_ranking_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_margin_ranking_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_margin_ranking_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_pool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_pool2d_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_pool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_unpool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_unpool1d_grad_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_unpool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_unpool2d_grad_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_unpool2d_grad_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_unpool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_unpool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_unpool3d_grad_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_unpool3d_grad_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_unpool3d_grad_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_mish_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_mse_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_multi_head_attention_forward_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_multi_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_multilabel_soft_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_normalize_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_circular_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_circular_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_circular_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_circular_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_constant_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_constant_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_constant_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_constant_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_constant_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_reflect_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_reflect_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_replicate_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_replicate_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_replicate_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_replicate_negative_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_replicate_negative_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_replicate_negative_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pairwise_distance_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pairwise_distance_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pairwise_distance_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pixel_shuffle_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pixel_unshuffle_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pixel_unshuffle_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pixel_unshuffle_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_poisson_nll_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_poisson_nll_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_poisson_nll_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_poisson_nll_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_prelu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_prelu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_relu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_relu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_relu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_relu_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_rms_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_rms_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_rrelu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_scaled_dot_product_attention_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_scaled_dot_product_attention_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_selu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_selu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_silu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_smooth_l1_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softmin_with_dtype_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softmin_with_dtype_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softplus_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softsign_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softsign_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_tanhshrink_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_threshold_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_threshold_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_threshold_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_threshold_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_triplet_margin_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_triplet_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_triplet_margin_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_unfold_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_unfold_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_unfold_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_unfold_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_upsample_nearest_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_norm_fro_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_norm_inf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_norm_nuc_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_normal_in_place_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_normal_number_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_normal_number_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_normal_number_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ormqr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_outer_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_outer_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_outer_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_outer_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_pca_lowrank_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_permute_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_permute_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_permute_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_permute_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_permute_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_permute_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_pinverse_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_0_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_3_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_4_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_4_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_4_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_4_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_4_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_positive_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_positive_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_positive_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_positive_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_pow_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_pow_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_pow_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_prod_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_prod_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_put_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_put_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_put_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rad2deg_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rad2deg_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rad2deg_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rad2deg_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rand_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randint_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randint_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randn_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randn_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ravel_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ravel_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_real_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_real_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reciprocal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reciprocal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reciprocal_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_remainder_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_remainder_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_remainder_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_repeat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_repeat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_repeat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_repeat_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_repeat_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_repeat_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_repeat_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_repeat_interleave_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_repeat_interleave_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_repeat_interleave_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_repeat_interleave_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_repeat_interleave_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reshape_as_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reshape_as_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reshape_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reshape_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reshape_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reshape_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resize__cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resize__cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resize__cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resize__cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resize_as__cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resize_as__cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resize_as__cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_conj_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_conj_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_conj_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_conj_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_neg_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_neg_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_roll_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_roll_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_roll_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_roll_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_roll_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rot90_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rot90_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_round_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_round_decimals_0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_round_decimals_3_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_round_decimals_neg_3_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rsqrt_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rsqrt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rsub_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rsub_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scalar_tensor_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scalar_tensor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_add_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_add_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_add_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_add_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_amax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_amax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_amin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_amin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_mean_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_mean_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_prod_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_prod_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_prod_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_sum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_searchsorted_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_searchsorted_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_select_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_select_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_select_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_select_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_select_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_select_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_select_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_select_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_select_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sgn_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sgn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_short_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_short_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_short_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_short_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sigmoid_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sign_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sign_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signal_windows_bartlett_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signal_windows_blackman_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signal_windows_cosine_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signal_windows_hamming_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signal_windows_nuttall_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signbit_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signbit_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signbit_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sin_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sinc_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sinh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sinh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_slice_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_slice_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_slice_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_slice_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_softmax_with_dtype_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_softmax_with_dtype_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_softmax_with_dtype_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sort_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sparse_mm_reduce_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sparse_mm_reduce_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sparse_sampled_addmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sparse_sampled_addmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_j0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_j0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_j1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_j1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_y0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_y0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_y1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_t_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_t_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_t_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_t_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_u_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_u_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_v_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_entr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_hermite_polynomial_h_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_hermite_polynomial_h_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_hermite_polynomial_he_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_hermite_polynomial_he_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_hermite_polynomial_he_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i0e_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i0e_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i0e_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i1e_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i1e_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i1e_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_laguerre_polynomial_l_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_legendre_polynomial_p_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_legendre_polynomial_p_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_log_ndtr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_i0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_i0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_i0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_i0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_i1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_i1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_i1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_k0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_k0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_k1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_k1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_k1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_ndtr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_ndtr_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_ndtr_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_ndtri_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_ndtri_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_ndtri_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_scaled_modified_bessel_k0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_scaled_modified_bessel_k1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_scaled_modified_bessel_k1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_scaled_modified_bessel_k1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_t_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_t_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_v_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_w_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_w_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_spherical_bessel_j0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_spherical_bessel_j0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_xlog1py_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_xlog1py_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_xlog1py_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_xlog1py_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_zeta_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_zeta_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_list_args_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sqrt_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sqrt_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sqrt_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_square_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_square_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_square_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_multiple_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_multiple_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_multiple_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_multiple_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_multiple_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_stack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_stack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_stack_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_stack_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_std_mean_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_std_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_std_mean_unbiased_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_std_mean_unbiased_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_std_unbiased_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_std_unbiased_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sub_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sum_to_size_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sum_to_size_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sum_to_size_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_svd_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_svd_lowrank_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_svd_lowrank_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_svd_lowrank_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_svd_lowrank_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_t_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_t_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_t_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_t_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_t_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_t_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_t_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_t_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_t_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_t_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_t_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_take_along_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_take_along_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_take_along_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_take_along_dim_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_take_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_take_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_take_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_take_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_take_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tan_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tan_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tanh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tanh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tanh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tanh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tanh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tensor_split_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tensor_split_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tensor_split_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tensor_split_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tensor_split_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tensordot_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tensordot_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tile_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tile_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tile_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tile_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_to_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_to_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_to_sparse_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_to_sparse_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_topk_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_topk_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_torch__scaled_mm_cpu_float8_e4m3fnuz, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_torch__scaled_mm_cpu_float8_e5m2, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trace_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trace_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trace_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_transpose_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_transpose_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_transpose_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_transpose_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_transpose_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trapezoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trapezoid_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trapezoid_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trapz_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trapz_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_triangular_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tril_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tril_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tril_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_triu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_triu_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_triu_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_true_divide_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_true_divide_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_true_divide_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_true_divide_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trunc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unbind_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unbind_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unbind_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unbind_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unfold_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unfold_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unfold_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unfold_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unfold_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unfold_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unfold_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_uniform_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_uniform_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_uniform_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unique_consecutive_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unique_consecutive_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unique_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unique_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unique_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unique_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unique_cpu_uint64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unravel_index_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_chunk_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_chunk_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_chunk_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_split_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_split_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_split_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_split_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsqueeze_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsqueeze_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsqueeze_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsqueeze_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsqueeze_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsqueeze_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_var_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_var_mean_unbiased_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_var_mean_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_var_unbiased_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vdot_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vdot_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vdot_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_as_complex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_as_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_as_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_as_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_as_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_as_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_as_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vsplit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vsplit_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vsplit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vsplit_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vstack_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vstack_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_where_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_where_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_where_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_xlogy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_xlogy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zero__cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zero__cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zero__cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zero__cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zeros_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zeros_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zeros_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zeros_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zeros_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_embedding_bag_byte_prepack_cpu, test/test_meta.py::TestMetaCPU::test_embedding_bag_dense_backward_mode_1_cpu, test/test_meta.py::TestMetaCPU::test_group_norm_backward_output_mask1_cpu, test/test_meta.py::TestMetaCPU::test_group_norm_backward_output_mask3_cpu, test/test_meta.py::TestMetaCPU::test_huber_loss_backward_cpu, test/test_meta.py::TestMetaCPU::test_index_select_out_cpu, test/test_meta.py::TestMetaCPU::test_inplace_bin_ops_error_cpu, test/test_meta.py::TestMetaCPU::test_layer_norm_backward_output_mask4_cpu, test/test_meta.py::TestMetaCPU::test_layer_norm_backward_output_mask7_cpu, test/test_meta.py::TestMetaCPU::test_local_scalar_dense_call_cpu, test/test_meta.py::TestMetaCPU::test_map_location_deserialize_cpu, test/test_meta.py::TestMetaCPU::test_meta_inplace_H_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_H_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_H_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_H_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_T_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_T_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_T_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace___getitem___cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace___getitem___cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace___radd___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace___radd___cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace___radd___cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace___radd___cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace___radd___cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace___rand___cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace___rand___cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace___rdiv___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace___rdiv___cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmatmul___cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmul___cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmul___cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmul___cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmul___cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace___ror___cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace___ror___cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace___ror___cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace___rpow___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace___rpow___cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace___rpow___cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace___rpow___cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace___rpow___cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace___rsub___cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace___rsub___cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace___rxor___cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace___rxor___cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__chunk_cat_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__chunk_cat_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__chunk_cat_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__chunk_cat_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_abs_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_acos_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_acos_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_acos_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_acos_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_acos_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_add_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_add_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_add_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_addcdiv_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_addcdiv_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_addcmul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_addcmul_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_addcmul_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_addcmul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_asin_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_asin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_asin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_asin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_asin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_atan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_atan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_atan_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_ceil_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_ceil_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_ceil_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_clamp_max_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_clamp_max_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_clamp_min_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_clamp_min_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_clamp_min_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_cos_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_cos_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_cos_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_cos_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_cosh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_cosh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_cosh_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_cosh_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_div_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_div_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_div_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_erf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_erf_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_erf_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_erf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_erfc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_erfc_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_erfc_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_erfc_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_exp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_exp_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_exp_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_expm1_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_expm1_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_expm1_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_expm1_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_floor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_floor_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_floor_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_floor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_frac_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_frac_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_lerp_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_lerp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_lgamma_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_lgamma_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log10_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log10_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log10_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log10_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log1p_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log1p_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log2_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log2_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log2_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log2_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_max_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_max_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_max_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_max_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_minimum_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_minimum_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_minimum_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_mul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_mul_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_mul_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_mul_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_mul_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_mul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_neg_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_neg_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_neg_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_norm_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_norm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_pow_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_pow_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_pow_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_reciprocal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_reciprocal_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_reciprocal_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_reciprocal_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_round_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_round_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_round_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_round_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_rsqrt_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_rsqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_rsqrt_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sigmoid_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sigmoid_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sigmoid_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sigmoid_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sign_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sign_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sin_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sinh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sinh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sinh_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sqrt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sqrt_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sqrt_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sub_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sub_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sub_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sub_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_tan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_tan_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_tan_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_tanh_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_trunc_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_trunc_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_trunc_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_zero_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__native_batch_norm_legit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__softmax_backward_data_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__unsafe_masked_index_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__unsafe_masked_index_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__unsafe_masked_index_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__unsafe_masked_index_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__unsafe_masked_index_put_accumulate_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__unsafe_masked_index_put_accumulate_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__unsafe_masked_index_put_accumulate_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_abs_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_abs_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_abs_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_abs_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_acos_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_acos_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_acos_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_acosh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_acosh_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_acosh_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_add_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_add_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_add_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_addbmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_addbmm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_addbmm_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_addbmm_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_addcdiv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_addcdiv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_addcdiv_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_addcmul_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_addcmul_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmm_decomposed_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmm_decomposed_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmm_decomposed_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmm_decomposed_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmm_decomposed_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmv_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmv_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmv_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmv_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_addr_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_addr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_addr_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_addr_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_alias_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_alias_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_all_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_all_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_all_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_allclose_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_amax_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_amin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_amin_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_amin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_aminmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_aminmax_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_aminmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_aminmax_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_angle_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_any_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_any_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_arange_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_argmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_argmin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_argsort_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_argsort_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_argsort_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_argwhere_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_argwhere_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_partial_views_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_partial_views_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_partial_views_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_partial_views_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_partial_views_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_partial_views_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_partial_views_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_scatter_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_asin_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_asin_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_asin_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_asin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_asin_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_asin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_asinh_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_asinh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_asinh_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_asinh_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_asinh_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_asinh_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_atan2_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_atan2_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_atan_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_atan_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_atan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_atanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_atanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_atanh_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_atanh_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_atanh_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_1d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_2d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_3d_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_baddbmm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_baddbmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_baddbmm_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_baddbmm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_bernoulli_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_bfloat16_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_bfloat16_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_bincount_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_and_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_and_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_left_shift_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_not_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_not_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_not_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_or_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_xor_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_xor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_block_diag_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_block_diag_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_block_diag_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_bmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_bmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_bmm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_bool_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_bool_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_bool_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_bool_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_broadcast_tensors_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_broadcast_tensors_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_broadcast_tensors_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_broadcast_tensors_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_broadcast_to_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_bucketize_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_bucketize_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_byte_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_byte_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_byte_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_byte_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_byte_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_byte_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cartesian_prod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_cartesian_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cartesian_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cat_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cat_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cauchy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cdouble_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cdouble_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cdouble_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_ceil_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cfloat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_cfloat_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cfloat_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_chalf_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_chalf_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_chalf_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_char_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_char_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_char_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_char_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cholesky_inverse_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cholesky_inverse_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cholesky_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_chunk_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_chunk_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_chunk_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_chunk_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_chunk_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_chunk_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_max_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_max_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_max_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_clone_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_clone_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_column_stack_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_column_stack_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_column_stack_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_column_stack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_combinations_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_combinations_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_combinations_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_combinations_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_combinations_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_combinations_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_combinations_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_complex_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_conj_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_conj_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_conj_physical_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_conj_physical_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_conj_physical_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_conj_physical_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_constant_pad_nd_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_constant_pad_nd_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_constant_pad_nd_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_constant_pad_nd_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_contiguous_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_contiguous_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_contiguous_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_contiguous_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_contiguous_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_copysign_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_copysign_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_copysign_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_copysign_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_corrcoef_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_corrcoef_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cosh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cosh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_cosh_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cosh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_count_nonzero_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_count_nonzero_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_count_nonzero_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cov_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_cov_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cov_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cov_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cross_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_cross_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cross_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cross_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cummax_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cummax_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cummax_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cummin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumprod_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumprod_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumprod_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumsum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumsum_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumsum_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumulative_trapezoid_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumulative_trapezoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumulative_trapezoid_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumulative_trapezoid_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_deg2rad_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_deg2rad_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_embed_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_embed_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_embed_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_embed_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagflat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagflat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_scatter_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_diff_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_diff_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_diff_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_diff_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_diff_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_diff_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_digamma_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_digamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_digamma_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_digamma_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_dist_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_floor_rounding_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_floor_rounding_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_floor_rounding_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_no_rounding_mode_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_trunc_rounding_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_trunc_rounding_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_trunc_rounding_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_dot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_dot_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_double_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_double_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_double_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_dsplit_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_dsplit_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_dsplit_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_dstack_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_dstack_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_dstack_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_einsum_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_einsum_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_einsum_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_like_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_permuted_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_permuted_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_permuted_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_strided_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_strided_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_strided_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_strided_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_eq_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_eq_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_eq_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_eq_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_equal_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_equal_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_equal_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_erf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_erfc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_erfc_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_erfc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_erfinv_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_erfinv_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_exp2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_exp2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_exp2_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_exp2_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_exp2_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_exp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_exp_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_exp_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_exp_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_as_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_as_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_as_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_as_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_as_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_expm1_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_expm1_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_expm1_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_exponential_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_exponential_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_eye_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_eye_cpu_float8_e4m3fnuz, test/test_meta.py::TestMetaCPU::test_meta_inplace_eye_cpu_float8_e5m2fnuz, test/test_meta.py::TestMetaCPU::test_meta_inplace_eye_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_eye_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fft2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fft_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fft_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fftshift_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fftshift_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fftshift_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fftshift_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfft2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfft_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfft_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfft_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfftn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifft_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifft_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifft_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifftshift_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifftshift_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifftshift_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifftshift_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ihfft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ihfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ihfft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ihfft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ihfft_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ihfftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfft2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfft_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfft_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_rfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_rfft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_rfft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_rfft_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_rfftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_rfftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fill_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_fill_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fill_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_flatten_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_flatten_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_flatten_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_flip_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_flip_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_flip_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fliplr_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_fliplr_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fliplr_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_flipud_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_float_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_float_power_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_float_power_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_floor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_floor_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_floor_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_floor_divide_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmax_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmin_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmod_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_like_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_gather_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_gather_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_ge_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_ge_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_ge_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_ge_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_ge_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_geometric_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_geometric_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_geometric_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_geometric_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_geqrf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_gradient_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_gradient_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_gradient_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_gradient_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_grid_sampler_2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_grid_sampler_2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_grid_sampler_3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_grid_sampler_3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_gt_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_gt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_half_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_hash_tensor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_hash_tensor_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_hash_tensor_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_heaviside_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_heaviside_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_heaviside_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_hsplit_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_hsplit_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_hstack_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_hypot_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_i0_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_i0_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_i0_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_i0_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_i0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_igamma_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_igamma_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_igammac_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_igammac_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_imag_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_add_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_add_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_add_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_fill_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_fill_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_put_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_put_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_put_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_amax_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_amax_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_amax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_amin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_amin_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_mean_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_mean_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_select_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_select_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_select_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_select_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_inner_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_inner_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_int_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_int_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_isclose_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_isfinite_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_isfinite_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_isfinite_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_isfinite_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_isfinite_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_isin_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_isin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_isinf_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_isinf_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_isnan_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_isneginf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_isneginf_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_isneginf_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_isreal_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_isreal_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_isreal_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_istft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_item_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_item_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_item_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_2inputs_2outputs_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_2inputs_2outputs_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_2inputs_2outputs_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_2inputs_2outputs_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_4inputs_with_extra_args_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_4inputs_with_extra_args_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_4inputs_with_extra_args_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_4inputs_with_extra_args_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_binary_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_binary_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_binary_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_binary_return_by_ref_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_binary_return_by_ref_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_binary_return_by_ref_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_unary_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_unary_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_unary_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_unary_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_unary_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_kron_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_kron_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_kron_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_kron_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_kthvalue_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_kthvalue_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_kthvalue_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_kthvalue_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_lcm_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_lcm_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_lcm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_ldexp_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_ldexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_ldexp_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_le_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_lerp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_lerp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_lerp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_lgamma_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_cholesky_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_cholesky_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_cond_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_cross_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_cross_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_det_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_diagonal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_diagonal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_diagonal_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_diagonal_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_diagonal_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_diagonal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_eigh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_eigvals_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_eigvals_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_householder_product_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_inv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_inv_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_ldl_factor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_ldl_factor_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_ldl_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_lstsq_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_lstsq_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_lstsq_grad_oriented_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_lstsq_grad_oriented_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_lu_factor_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_lu_factor_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_matrix_power_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_matrix_power_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_matrix_rank_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_multi_dot_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_multi_dot_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_norm_subgradients_at_zero_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_norm_subgradients_at_zero_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_pinv_singular_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_pinv_singular_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_slogdet_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_solve_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_solve_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_svdvals_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_svdvals_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_vander_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_vander_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_vecdot_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linspace_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_log10_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_log10_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_log10_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_log1p_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_log2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_log2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_log2_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_normal_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_softmax_with_dtype_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logaddexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_logcumsumexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logcumsumexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_and_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_and_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_and_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_not_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_or_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_or_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_xor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_xor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_xor_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logit_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logit_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_logspace_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logspace_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logspace_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logspace_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_logspace_tensor_overload_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_logspace_tensor_overload_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logspace_tensor_overload_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logspace_tensor_overload_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_logsumexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logsumexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logsumexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_long_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_long_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_long_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_long_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_lt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_lt_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_lt_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_lt_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_lu_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_lu_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_mH_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mH_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mH_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_mH_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_mT_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mT_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mT_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_amin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_amin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_argmax_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_argmax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_argmin_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_cumprod_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_cumprod_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_cumsum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_cumsum_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_cumsum_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_fill_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_logaddexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_logsumexp_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_median_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_select_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_select_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_select_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_select_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_softmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_softmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_softmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_std_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_std_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_sum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_sum_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_sum_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_var_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_var_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_var_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_matmul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_matmul_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_matrix_exp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_binary_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_binary_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_binary_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_binary_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_reduction_no_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_reduction_with_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_maximum_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_maximum_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_median_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_meshgrid_list_of_tensors_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_meshgrid_list_of_tensors_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_meshgrid_list_of_tensors_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_meshgrid_list_of_tensors_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_meshgrid_variadic_tensors_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_meshgrid_variadic_tensors_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_meshgrid_variadic_tensors_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_meshgrid_variadic_tensors_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_meshgrid_variadic_tensors_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_binary_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_binary_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_binary_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_reduction_no_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_reduction_no_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_reduction_with_dim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_reduction_with_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_reduction_with_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_mode_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mode_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_mode_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_movedim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_movedim_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_movedim_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_movedim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_msort_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_msort_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_msort_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_mul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mul_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mul_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mv_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mv_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_mv_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nan_to_num_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nan_to_num_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nanmean_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nanmedian_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nanmedian_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nanmedian_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nanquantile_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nansum_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nansum_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nansum_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nansum_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nansum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_narrow_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_narrow_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_narrow_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_narrow_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_narrow_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_narrow_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_narrow_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_native_batch_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_ne_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_neg_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_neg_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_strided_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_strided_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_strided_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_full_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_full_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_ones_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_ones_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_ones_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_ones_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_ones_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_zeros_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nextafter_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nextafter_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_adaptive_avg_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_adaptive_max_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_adaptive_max_pool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_alpha_dropout_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_alpha_dropout_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_avg_pool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_avg_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_avg_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_binary_cross_entropy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_celu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_celu_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_channel_shuffle_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_channel_shuffle_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv2d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv_transpose1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv_transpose1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv_transpose2d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv_transpose3d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_cosine_embedding_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_cosine_similarity_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_cross_entropy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_dropout3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_dropout_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_elu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_embedding_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_embedding_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_feature_alpha_dropout_with_train_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_fractional_max_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_fractional_max_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_gaussian_nll_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_gaussian_nll_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_gelu_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_group_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hardsigmoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hardsigmoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hardswish_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hardswish_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hardtanh_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hardtanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hinge_embedding_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_huber_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_huber_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_instance_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_area_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_bicubic_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_bicubic_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_bilinear_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_bilinear_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_linear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_nearest-exact_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_nearest-exact_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_nearest_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_nearest_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_nearest_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_kl_div_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_l1_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_layer_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_linear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_linear_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_linear_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_linear_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_margin_ranking_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_margin_ranking_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_pool2d_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_pool2d_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_pool3d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_unpool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_unpool1d_grad_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_unpool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_unpool2d_grad_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_unpool2d_grad_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_unpool3d_grad_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_mse_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_multi_head_attention_forward_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_nll_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_nll_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_normalize_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_normalize_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_normalize_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_one_hot_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_circular_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_circular_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_circular_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_constant_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_reflect_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_reflect_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_reflect_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_reflect_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_replicate_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_replicate_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_replicate_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_replicate_negative_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_replicate_negative_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pairwise_distance_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pairwise_distance_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pairwise_distance_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pdist_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pixel_shuffle_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pixel_shuffle_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pixel_shuffle_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pixel_unshuffle_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pixel_unshuffle_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pixel_unshuffle_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pixel_unshuffle_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_poisson_nll_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_poisson_nll_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_poisson_nll_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_prelu_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_relu6_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_relu6_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_relu_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_relu_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_relu_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_relu_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_rms_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_rms_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_scaled_dot_product_attention_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_scaled_dot_product_attention_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_selu_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_selu_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_silu_complex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_silu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_smooth_l1_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_smooth_l1_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_soft_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softmin_with_dtype_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softmin_with_dtype_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softmin_with_dtype_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softmin_with_dtype_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softplus_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softplus_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softsign_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softsign_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softsign_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softsign_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_tanhshrink_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_tanhshrink_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_tanhshrink_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_threshold_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_triplet_margin_loss_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_triplet_margin_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_triplet_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_triplet_margin_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_triplet_margin_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_unfold_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_unfold_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_unfold_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_unfold_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_upsample_bilinear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_upsample_bilinear_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_upsample_nearest_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nonzero_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nonzero_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nonzero_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nonzero_static_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nonzero_static_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_nonzero_static_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nonzero_static_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nonzero_static_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_norm_fro_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_norm_inf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_norm_inf_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_normal_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_normal_in_place_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_ormqr_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_outer_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_permute_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_permute_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_permute_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_permute_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_permute_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_pinverse_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_pinverse_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_polar_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_0_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_0_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_0_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_1_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_3_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_3_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_3_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_3_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_4_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_positive_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_pow_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_pow_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_pow_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_pow_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_prod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_prod_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_prod_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_put_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_put_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_qr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_qr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_qr_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_rad2deg_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_rad2deg_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_rad2deg_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_rad2deg_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_rand_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_rand_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_randint_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_randint_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_randint_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_randint_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_randint_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_randint_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_randn_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_ravel_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_ravel_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_ravel_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_ravel_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_real_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_real_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_reciprocal_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_reciprocal_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_remainder_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_remainder_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_renorm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_renorm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_repeat_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_repeat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_repeat_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_repeat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_repeat_interleave_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_repeat_interleave_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_reshape_as_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_reshape_as_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_reshape_as_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_reshape_as_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_reshape_as_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_reshape_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_reshape_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_reshape_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_resize__cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_resize__cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_resolve_conj_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_resolve_conj_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_resolve_conj_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_resolve_conj_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_resolve_neg_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_roll_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_roll_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_roll_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_roll_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_roll_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_rot90_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_rot90_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_rot90_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_rot90_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_round_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_round_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_round_decimals_3_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_round_decimals_neg_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_rsqrt_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_rsqrt_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_rsub_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_rsub_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_rsub_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_scalar_tensor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_add_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_add_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_add_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_amax_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_amax_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_amin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_amin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_amin_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_sum_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_sum_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_searchsorted_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_searchsorted_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_searchsorted_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_select_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_select_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_select_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_select_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_select_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_select_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_select_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sgn_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sgn_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sgn_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_short_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_short_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_short_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_short_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_short_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_sigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sigmoid_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sigmoid_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sign_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sign_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_sign_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sign_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_signal_windows_cosine_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_signal_windows_exponential_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_signal_windows_gaussian_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_signal_windows_hamming_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_signal_windows_hamming_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_signal_windows_hann_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_signal_windows_nuttall_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_signbit_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_signbit_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sin_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_sin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sin_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sin_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_sinc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sinc_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sinc_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sinc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_sinh_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_sinh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_sinh_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sinh_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_slice_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_slice_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_slice_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_slice_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_slice_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_slice_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_softmax_with_dtype_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_softmax_with_dtype_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sort_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sort_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sort_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sort_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sparse_mm_reduce_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sparse_sampled_addmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_sparse_sampled_addmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sparse_sampled_addmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_airy_ai_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_airy_ai_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_airy_ai_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_y0_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_y0_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_y0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_y1_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_u_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_u_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_u_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_entr_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_entr_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_entr_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_erfcx_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_erfcx_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_hermite_polynomial_h_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_hermite_polynomial_he_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_hermite_polynomial_he_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i0e_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i1_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i1_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i1_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_legendre_polynomial_p_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_legendre_polynomial_p_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_legendre_polynomial_p_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_log_ndtr_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_log_ndtr_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_log_ndtr_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_i0_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_i0_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_i1_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_i1_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_i1_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_i1_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_k0_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_k0_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_k0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_k1_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_k1_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_ndtr_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_ndtr_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_ndtri_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_scaled_modified_bessel_k0_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_scaled_modified_bessel_k0_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_scaled_modified_bessel_k0_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_scaled_modified_bessel_k0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_scaled_modified_bessel_k1_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_scaled_modified_bessel_k1_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_scaled_modified_bessel_k1_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_v_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_w_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_w_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_xlog1py_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_xlog1py_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_xlog1py_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_xlog1py_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_zeta_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_zeta_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_zeta_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_zeta_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_list_args_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_list_args_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_with_sizes_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_with_sizes_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_with_sizes_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_with_sizes_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_with_sizes_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_with_sizes_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_with_sizes_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_with_sizes_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_sqrt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sqrt_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_sqrt_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sqrt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_square_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_square_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_square_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_multiple_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_multiple_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_multiple_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_multiple_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_stack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_stack_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_stack_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_stack_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_std_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_std_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_std_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_std_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_std_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_std_mean_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_std_mean_unbiased_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_stft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_sub_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sub_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_sum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sum_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sum_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sum_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_sum_to_size_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sum_to_size_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_t_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_t_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_t_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_t_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_take_along_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_take_along_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_take_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_take_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_take_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_tan_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_tanh_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_tanh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_tensordot_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_tile_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_tile_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_tile_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_to_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_to_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_to_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_to_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_to_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_to_sparse_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_to_sparse_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_to_sparse_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_to_sparse_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_topk_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_topk_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_topk_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_trace_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_trace_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_trace_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_trapezoid_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_trapezoid_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_trapz_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_trapz_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_trapz_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_trapz_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_tril_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_tril_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_triu_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_triu_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_triu_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_triu_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_triu_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_triu_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_triu_indices_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_triu_indices_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_true_divide_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_trunc_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_trunc_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_unflatten_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unflatten_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_unfold_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unfold_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unfold_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unfold_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unfold_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unfold_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_unfold_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_unfold_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unfold_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unfold_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unique_consecutive_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unique_consecutive_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unique_consecutive_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unique_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unique_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unique_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unique_cpu_uint32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unravel_index_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsafe_chunk_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsafe_split_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsafe_split_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsafe_split_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_var_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_var_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_var_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_var_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_var_mean_unbiased_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_var_mean_unbiased_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_var_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_var_unbiased_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_vdot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_vdot_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_vdot_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_as_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_as_real_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_vsplit_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_vsplit_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_vsplit_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_vstack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_vstack_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_vstack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_vstack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_vstack_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_vstack_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_where_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_where_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_where_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_xlogy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_xlogy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_xlogy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_xlogy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_xlogy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_zero__cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_zero__cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_like_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_H_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_H_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_H_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_T_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_T_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace___getitem___cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace___getitem___cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace___getitem___cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace___getitem___cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace___radd___cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace___radd___cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace___radd___cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace___rand___cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace___rand___cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace___rand___cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace___rdiv___cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace___rdiv___cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace___rdiv___cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmatmul___cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmatmul___cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmatmul___cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmul___cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace___ror___cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace___ror___cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace___rpow___cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace___rsub___cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace___rsub___cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace___rsub___cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace___rxor___cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__batch_norm_with_update_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__chunk_cat_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_abs_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_acos_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_acos_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_addcdiv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_addcdiv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_addcdiv_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_addcdiv_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_addcdiv_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_addcmul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_addcmul_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_addcmul_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_asin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_asin_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_asin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_ceil_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_ceil_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_ceil_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_ceil_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_clamp_max_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_clamp_max_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_clamp_max_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_clamp_max_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_clamp_max_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_clamp_min_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_clamp_min_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_cos_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_cos_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_cos_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_cos_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_cos_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_cosh_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_cosh_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_div_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_div_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_div_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_erf_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_erfc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_erfc_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_erfc_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_erfc_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_exp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_exp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_exp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_expm1_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_expm1_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_expm1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_floor_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_frac_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_frac_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_lerp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_lerp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_lerp_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_lerp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_lgamma_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_lgamma_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log10_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log1p_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log1p_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log1p_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log1p_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_max_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_max_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_max_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_maximum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_maximum_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_maximum_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_maximum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_minimum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_minimum_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_mul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_mul_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_mul_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_mul_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_mul_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_mul_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_neg_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_norm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_pow_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_pow_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_pow_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_pow_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_reciprocal_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_reciprocal_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_reciprocal_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_reciprocal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_round_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_round_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_round_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_rsqrt_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_rsqrt_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sigmoid_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sigmoid_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sign_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sign_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sign_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sin_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sub_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sub_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sub_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_tan_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_tan_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_tan_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_tan_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_tan_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_tanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_tanh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_trunc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_trunc_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_trunc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_zero_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_zero_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_zero_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__native_batch_norm_legit_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__native_batch_norm_legit_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__segment_reduce_lengths_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__softmax_backward_data_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__unsafe_masked_index_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__unsafe_masked_index_put_accumulate_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__unsafe_masked_index_put_accumulate_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_abs_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_abs_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_abs_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_abs_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_acos_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_acos_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_acos_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_acos_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_acosh_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_acosh_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_acosh_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_acosh_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_acosh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_add_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_add_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_addbmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_addbmm_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_addbmm_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_addcdiv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_addcmul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_addcmul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_addcmul_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_addcmul_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_addcmul_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmm_decomposed_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmv_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmv_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmv_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_addr_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_addr_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_addr_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_alias_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_alias_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_alias_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_alias_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_all_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_all_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_all_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_all_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_allclose_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_allclose_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_amax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_amax_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_amax_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_amin_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_amin_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_amin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_aminmax_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_aminmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_aminmax_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_angle_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_angle_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_angle_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_angle_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_any_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_any_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_any_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_arange_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_arange_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_arange_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_argmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_argmax_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_argmax_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_argmin_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_argmin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_argsort_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_argsort_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_argsort_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_argwhere_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_argwhere_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_asin_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_asin_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_asin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_asin_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_asin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_asinh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_asinh_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_asinh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_asinh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_atan2_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_atan2_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_atan2_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_atan_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_atan_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_atan_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_atan_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_atanh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_atanh_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_atanh_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_atanh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_1d_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_2d_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_3d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_3d_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_baddbmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_baddbmm_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_baddbmm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_bfloat16_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_bfloat16_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_bfloat16_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_bfloat16_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_bfloat16_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_bincount_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_and_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_and_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_and_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_left_shift_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_not_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_xor_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_xor_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_xor_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_xor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_block_diag_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_block_diag_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_block_diag_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_block_diag_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_block_diag_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_bmm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_bool_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_bool_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_bool_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_tensors_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_tensors_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_tensors_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_tensors_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_to_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_to_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_to_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_to_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_bucketize_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_bucketize_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_bucketize_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_byte_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cartesian_prod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cartesian_prod_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cartesian_prod_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cat_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_cat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cat_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cat_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_cdist_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cdouble_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cdouble_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_ceil_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cfloat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cfloat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_cfloat_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cfloat_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cfloat_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cfloat_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_chalf_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_chalf_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_char_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_char_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_char_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_char_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_char_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_char_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cholesky_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_cholesky_inverse_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_cholesky_inverse_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cholesky_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cholesky_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_chunk_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_chunk_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_chunk_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_chunk_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_max_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_max_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_max_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_min_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_min_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_min_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_clone_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_clone_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_clone_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_clone_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_clone_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_column_stack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_column_stack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_column_stack_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_column_stack_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_combinations_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_combinations_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_combinations_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_complex_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_physical_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_physical_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_constant_pad_nd_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_constant_pad_nd_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_contiguous_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_contiguous_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_contiguous_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_copysign_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_corrcoef_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_corrcoef_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cos_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cos_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cos_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_cosh_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cosh_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_count_nonzero_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_cov_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cov_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cross_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cross_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cross_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cummax_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cummin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cummin_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumprod_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumprod_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumprod_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumsum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumsum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumulative_trapezoid_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumulative_trapezoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumulative_trapezoid_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumulative_trapezoid_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_deg2rad_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_deg2rad_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_deg2rad_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_deg2rad_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_diag_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_diag_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_diag_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_diag_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_diag_embed_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_diag_embed_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagflat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagflat_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagflat_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagflat_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagflat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_diff_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_diff_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_diff_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_digamma_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_digamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_digamma_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_digamma_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_dist_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_dist_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_floor_rounding_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_trunc_rounding_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_dot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_dot_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_dot_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_dot_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_dot_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_double_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_double_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_double_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_dsplit_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_dsplit_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_dsplit_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_dsplit_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_dstack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_dstack_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_dstack_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_dstack_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_dstack_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_dstack_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_einsum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_einsum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_einsum_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_einsum_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_einsum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_permuted_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_permuted_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_permuted_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_permuted_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_strided_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_strided_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_strided_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_strided_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_strided_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_eq_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_eq_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_eq_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_eq_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_equal_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_equal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_equal_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_equal_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_equal_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_erf_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_erf_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_erf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_erfc_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_erfc_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_erfc_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_exp2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_exp2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_exp2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_exp2_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_exp_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_exp_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_as_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_as_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_as_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_as_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_expm1_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_expm1_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_exponential_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_exponential_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_exponential_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_exponential_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_eye_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_eye_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_eye_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fft_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fftshift_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fftshift_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfft_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifft2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifft_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifftn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifftshift_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifftshift_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ihfft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ihfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ihfft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ihfft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ihfft_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ihfftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ihfftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ihfftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ihfftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfft_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfft_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfft_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfftn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_rfft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_rfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_rfft_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_rfft_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_rfftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fill_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_fill_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fill_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_flatten_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_flatten_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_flatten_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_flatten_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_flip_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_flip_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fliplr_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_fliplr_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fliplr_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_flipud_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_flipud_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_float_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_float_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_float_power_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_floor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_floor_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_floor_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_floor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_floor_divide_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmax_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmin_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmin_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmin_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_frac_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_full_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_full_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_full_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_gather_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_gather_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_gather_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_gather_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_gather_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_gcd_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_gcd_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_gcd_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_ge_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_ge_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_geometric_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_geometric_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_geqrf_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_gradient_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_gradient_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_grid_sampler_2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_grid_sampler_3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_gt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_gt_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_half_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_hash_tensor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_hash_tensor_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_hash_tensor_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_hash_tensor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_heaviside_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_heaviside_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_histc_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_histogram_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_hsplit_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_hsplit_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_hsplit_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_hstack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_hypot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_hypot_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_i0_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_i0_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_i0_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_igamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_igamma_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_igammac_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_igammac_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_add_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_add_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_fill_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_fill_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_put_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_put_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_put_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_put_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_amax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_amax_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_amax_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_amin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_prod_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_select_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_select_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_select_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_inner_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_int_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isclose_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_isclose_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_isclose_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isfinite_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_isin_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_isin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_isinf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_isinf_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_isnan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_isnan_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_isneginf_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isneginf_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isneginf_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_isneginf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_isposinf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isposinf_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_isposinf_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_isreal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_isreal_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_isreal_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_item_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_item_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_item_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_item_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_2inputs_2outputs_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_2inputs_2outputs_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_2inputs_2outputs_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_2inputs_2outputs_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_4inputs_with_extra_args_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_4inputs_with_extra_args_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_4inputs_with_extra_args_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_binary_return_by_ref_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_binary_return_by_ref_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_binary_return_by_ref_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_unary_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_kron_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_kron_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_kron_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_kthvalue_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_ldexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_ldexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_ldexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_ldexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_le_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_le_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_le_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_le_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_le_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_lerp_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_lgamma_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_lgamma_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_cholesky_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_cholesky_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_cholesky_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_cholesky_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_cholesky_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_cond_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_cross_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_diagonal_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_diagonal_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_diagonal_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_eig_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_eig_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_eigh_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_eigh_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_eigvals_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_eigvals_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_eigvalsh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_householder_product_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_inv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_inv_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_ldl_factor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_ldl_factor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_ldl_factor_ex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_ldl_factor_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_ldl_factor_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_ldl_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_lstsq_grad_oriented_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_lu_factor_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_matrix_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_matrix_power_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_multi_dot_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_multi_dot_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_norm_subgradients_at_zero_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_norm_subgradients_at_zero_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_pinv_hermitian_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_slogdet_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_solve_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_solve_triangular_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_tensorsolve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_vander_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_vecdot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_vector_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_linspace_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linspace_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_linspace_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linspace_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_linspace_tensor_overload_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_log10_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_log10_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_log10_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_log10_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_log10_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_log10_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_log1p_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_log1p_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_log1p_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_log2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_log2_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_softmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_softmax_with_dtype_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_softmax_with_dtype_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_softmax_with_dtype_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logaddexp2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logaddexp2_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logaddexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logcumsumexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logdet_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_and_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_and_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_and_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_and_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_not_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_or_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_or_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_or_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_xor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_xor_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_xor_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_xor_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_xor_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_xor_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logit_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_logit_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_logit_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logspace_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_logspace_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logspace_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_logspace_tensor_overload_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_logspace_tensor_overload_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logspace_tensor_overload_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_logsumexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logsumexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logsumexp_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_logsumexp_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_long_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_long_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_long_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_long_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_lt_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_lu_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_lu_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_lu_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_lu_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_lu_unpack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_lu_unpack_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_lu_unpack_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mH_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mH_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mT_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_amax_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_amax_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_amax_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_amin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_argmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_argmax_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_argmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_argmin_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_argmin_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_argmin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_cumprod_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_cumsum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_cumsum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_cumsum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_cumsum_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_cumsum_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_cumsum_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_fill_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_fill_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_fill_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_fill_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_log_softmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_logaddexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_logaddexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_logaddexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_logsumexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_logsumexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_logsumexp_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_median_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_normalize_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_prod_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_scatter_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_scatter_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_select_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_select_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_select_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_softmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_std_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_std_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_std_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_std_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_sum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_sum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_sum_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_sum_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_var_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_matmul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_matmul_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_matmul_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_matmul_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_binary_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_binary_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_reduction_no_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_reduction_no_dim_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_reduction_with_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_maximum_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_median_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_median_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_median_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_median_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_median_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_meshgrid_list_of_tensors_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_meshgrid_list_of_tensors_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_meshgrid_list_of_tensors_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_meshgrid_variadic_tensors_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_meshgrid_variadic_tensors_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_meshgrid_variadic_tensors_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_meshgrid_variadic_tensors_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_binary_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_binary_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_reduction_no_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_reduction_no_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_reduction_no_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_reduction_no_dim_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_reduction_with_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_reduction_with_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_reduction_with_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_mm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mm_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_mm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_mode_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_mode_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mode_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mode_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_mode_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_movedim_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_movedim_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_movedim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_msort_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_msort_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_mul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mul_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_mul_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_multinomial_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_multinomial_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_mv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_mv_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_mv_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mvlgamma_mvlgamma_p_1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mvlgamma_mvlgamma_p_1_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_mvlgamma_mvlgamma_p_1_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_mvlgamma_mvlgamma_p_3_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mvlgamma_mvlgamma_p_3_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nan_to_num_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nan_to_num_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nan_to_num_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nanmean_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nanmedian_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nanquantile_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nansum_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_narrow_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_narrow_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_narrow_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_narrow_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_narrow_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_narrow_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_narrow_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_narrow_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_narrow_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_narrow_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_narrow_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_native_batch_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_native_dropout_backward_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_native_dropout_backward_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_native_dropout_backward_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_native_layer_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_ne_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_ne_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_ne_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_neg_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_neg_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_strided_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_strided_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_full_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_full_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_full_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_full_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_ones_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_ones_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_ones_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_zeros_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_zeros_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_zeros_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nextafter_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_adaptive_avg_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_adaptive_avg_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_adaptive_avg_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_adaptive_avg_pool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_adaptive_max_pool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_adaptive_max_pool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_alpha_dropout_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_avg_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_avg_pool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_avg_pool1d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_avg_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_avg_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_avg_pool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_avg_pool3d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_batch_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_batch_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_bilinear_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_bilinear_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_bilinear_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_binary_cross_entropy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_celu_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_celu_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_channel_shuffle_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_channel_shuffle_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv3d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv3d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv_transpose1d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv_transpose1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv_transpose1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv_transpose2d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv_transpose2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_cosine_embedding_loss_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_cosine_embedding_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_cosine_embedding_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_cosine_similarity_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_cosine_similarity_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_dropout2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_dropout3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_dropout3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_dropout_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_embedding_bag_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_embedding_bag_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_feature_alpha_dropout_with_train_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_feature_alpha_dropout_with_train_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_fractional_max_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_fractional_max_pool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_fractional_max_pool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_gaussian_nll_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_glu_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_grid_sample_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_hardtanh_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_hinge_embedding_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_hinge_embedding_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_huber_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_huber_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_instance_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_instance_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_instance_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_area_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_area_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_area_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_bicubic_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_bilinear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_linear_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_nearest_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_nearest_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_kl_div_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_l1_loss_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_l1_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_l1_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_layer_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_layer_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_linear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_linear_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_linear_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_linear_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_linear_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_local_response_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_logsigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_margin_ranking_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_margin_ranking_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_margin_ranking_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_pool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_pool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_unpool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_unpool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_unpool2d_grad_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_unpool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_mish_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_multi_head_attention_forward_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_multi_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_multi_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_multilabel_soft_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_normalize_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_normalize_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_one_hot_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_circular_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_constant_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_constant_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_reflect_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_replicate_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_replicate_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_replicate_negative_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_replicate_negative_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_replicate_negative_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_replicate_negative_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_replicate_negative_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_replicate_negative_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pairwise_distance_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pixel_shuffle_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pixel_shuffle_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pixel_unshuffle_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pixel_unshuffle_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pixel_unshuffle_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pixel_unshuffle_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_poisson_nll_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_poisson_nll_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_poisson_nll_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_poisson_nll_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_prelu_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_relu6_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_relu_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_relu_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_rms_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_rrelu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_scaled_dot_product_attention_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_silu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_silu_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_smooth_l1_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_soft_margin_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softmin_with_dtype_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softmin_with_dtype_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softmin_with_dtype_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softplus_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softshrink_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softsign_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softsign_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_tanhshrink_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_threshold_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_triplet_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_triplet_margin_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_triplet_margin_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_triplet_margin_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_unfold_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_unfold_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_unfold_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nonzero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nonzero_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nonzero_static_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nonzero_static_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_norm_fro_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_norm_fro_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_norm_inf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_norm_inf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_norm_inf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_norm_inf_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_norm_inf_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_norm_nuc_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_normal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_normal_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_normal_number_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_ones_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_ones_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_ones_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_ones_like_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_ones_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_ones_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_ones_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_ormqr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_ormqr_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_outer_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_outer_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_pca_lowrank_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_pca_lowrank_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_pinverse_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_pinverse_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_pinverse_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_0_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_0_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_2_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_2_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_3_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_3_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_3_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_3_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_4_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_4_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_4_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_positive_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_positive_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_positive_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_positive_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_pow_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_pow_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_pow_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_prod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_prod_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_put_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_put_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_put_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_qr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_qr_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_qr_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_quantile_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_rad2deg_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_rad2deg_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_rand_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_randint_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_randint_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_randint_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_randint_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_randn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_randn_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_randn_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_ravel_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_ravel_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_ravel_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_ravel_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_real_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_real_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_real_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_reciprocal_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_reciprocal_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_remainder_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_remainder_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_remainder_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_remainder_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_repeat_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_repeat_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_repeat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_repeat_interleave_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_repeat_interleave_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_reshape_as_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_reshape_as_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_reshape_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_reshape_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_resize__cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_resize__cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_resize__cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_resize_as__cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_resize_as__cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_resize_as__cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_resize_as__cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_resolve_conj_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_resolve_conj_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_resolve_conj_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_resolve_neg_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_resolve_neg_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_roll_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_roll_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_roll_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_roll_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_roll_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_roll_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_rot90_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_rot90_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_rot90_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_round_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_round_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_round_decimals_0_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_round_decimals_neg_3_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_rsqrt_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_rsub_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_rsub_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_rsub_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_scalar_tensor_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_scalar_tensor_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_scalar_tensor_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_scalar_tensor_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_add_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_add_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_add_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_add_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_amax_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_amin_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_amin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_amin_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_mean_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_mean_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_mean_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_prod_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_sum_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_sum_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_sum_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_searchsorted_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_searchsorted_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_select_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_select_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_select_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_sgn_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_short_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sigmoid_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sigmoid_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_sign_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sign_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sign_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_signal_windows_blackman_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_signal_windows_exponential_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_signal_windows_general_hamming_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_signal_windows_hann_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_signal_windows_kaiser_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_signal_windows_kaiser_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_signbit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_signbit_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_signbit_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_sin_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sin_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_sinc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sinc_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_sinc_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sinh_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_sinh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_sinh_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sinh_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sinh_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sinh_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_sinh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_slice_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_slice_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_slice_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_softmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_softmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_softmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_softmax_with_dtype_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sort_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sort_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sort_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_airy_ai_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_j0_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_j1_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_j1_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_j1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_y0_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_y0_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_y0_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_y0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_y1_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_y1_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_t_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_u_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_u_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_u_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_v_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_v_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_w_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_w_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_entr_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_entr_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_entr_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_erfcx_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_erfcx_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_erfcx_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_hermite_polynomial_h_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_hermite_polynomial_h_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_hermite_polynomial_h_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_hermite_polynomial_he_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_hermite_polynomial_he_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_hermite_polynomial_he_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_hermite_polynomial_he_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_i0e_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_i0e_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_i1_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_i1e_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_i1e_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_i1e_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_laguerre_polynomial_l_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_laguerre_polynomial_l_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_legendre_polynomial_p_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_log_ndtr_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_log_ndtr_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_i0_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_i0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_i1_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_i1_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_i1_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_i1_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_k1_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_ndtr_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_ndtr_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_ndtri_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_t_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_u_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_u_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_v_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_v_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_v_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_spherical_bessel_j0_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_spherical_bessel_j0_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_xlog1py_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_xlog1py_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_zeta_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_list_args_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_list_args_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_list_args_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_with_sizes_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_with_sizes_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_with_sizes_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_with_sizes_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_with_sizes_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_with_sizes_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_with_sizes_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sqrt_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_square_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_square_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_multiple_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_multiple_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_multiple_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_stack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_stack_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_stack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_stack_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_std_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_std_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_std_mean_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_std_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_std_mean_unbiased_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_std_mean_unbiased_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_std_unbiased_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_std_unbiased_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_std_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sub_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_sub_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sub_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sub_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sub_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sub_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_sum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sum_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sum_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sum_to_size_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sum_to_size_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_svd_lowrank_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_svd_lowrank_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_t_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_t_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_t_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_t_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_t_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_t_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_t_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_t_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_t_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_t_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_t_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_take_along_dim_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_take_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_take_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_take_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_tan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_tan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_tan_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_tan_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_tensor_split_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_tensor_split_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_tensordot_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_tensordot_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_tile_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_to_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_to_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_to_sparse_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_to_sparse_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_topk_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_topk_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_torch__scaled_mm_cpu_float8_e4m3fn, test/test_meta.py::TestMetaCPU::test_meta_outplace_torch__scaled_mm_cpu_float8_e5m2fnuz, test/test_meta.py::TestMetaCPU::test_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_trace_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_trace_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_transpose_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_transpose_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_transpose_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_transpose_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_transpose_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_transpose_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_transpose_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_trapezoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_trapezoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_trapezoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_trapz_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_trapz_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_triangular_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_tril_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_tril_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_tril_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_tril_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_tril_indices_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_triu_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_triu_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_triu_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_true_divide_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_true_divide_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_true_divide_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_true_divide_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_true_divide_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_trunc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_trunc_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unbind_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unbind_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unbind_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unbind_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unbind_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unbind_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unflatten_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_unflatten_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unflatten_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unflatten_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unflatten_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_unfold_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unfold_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_unfold_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_unfold_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unfold_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unfold_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_uniform_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_uniform_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unique_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unique_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unique_cpu_uint32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unique_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_unravel_index_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unravel_index_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsafe_chunk_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsafe_chunk_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsafe_chunk_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsafe_chunk_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsafe_split_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsafe_split_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsafe_split_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_var_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_var_mean_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_var_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_var_mean_unbiased_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_var_mean_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_var_unbiased_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_vdot_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_vdot_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_as_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_as_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_as_real_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_vsplit_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_vsplit_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_vsplit_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_vsplit_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_vsplit_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_vsplit_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_vsplit_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_where_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_where_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_xlogy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_zero__cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_zero__cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_zero__cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_zero__cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_zeros_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_zeros_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_zeros_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_zeros_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_zeros_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_zeros_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_zeros_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_zeros_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_zeros_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_nonzero_cpu 2025-08-26T22:32:15.1527472Z 2025-08-26T22:32:19.7729075Z Running test_functionalization_of_rng_ops 1/1 ... [2025-08-26 22:32:19.771203] 2025-08-26T22:32:19.7734532Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:32:19.7735629Z 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-26 22:32:19.771203] 2025-08-26T22:32:24.7730471Z 2025-08-26T22:32:24.7732895Z 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_7ccde377aac14a46_.log 2025-08-26T22:32:24.7733625Z 2025-08-26T22:32:30.4057413Z Running optim/test_lrscheduler 1/1 ... [2025-08-26 22:32:30.405559] 2025-08-26T22:32:30.4057944Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:32:30.4064077Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'optim/test_lrscheduler.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 22:32:30.406164] 2025-08-26T22:32:34.7471122Z 2025-08-26T22:32:34.7472173Z optim/test_lrscheduler 1/1 was successful, full logs can be found in artifacts with path test/test-reports/optim.test_lrscheduler_1.1_b1266ec495adb2ed_.log 2025-08-26T22:32:34.7472843Z 2025-08-26T22:32:40.1542077Z Running optim/test_optim 1/1 ... [2025-08-26 22:32:40.153566] 2025-08-26T22:32:40.1542555Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:32:40.1548675Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'optim/test_optim.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-26 22:32:40.154726] 2025-08-26T22:32:44.4774716Z 2025-08-26T22:32:44.4775599Z optim/test_optim 1/1 was successful, full logs can be found in artifacts with path test/test-reports/optim.test_optim_1.1_2a9417a896fc0b97_.log 2025-08-26T22:32:44.4776195Z 2025-08-26T22:32:49.8370192Z Running functorch/test_vmap 2/2 ... [2025-08-26 22:32:49.836824] 2025-08-26T22:32:49.8376772Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:32:49.8377821Z 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-26 22:32:49.837369] 2025-08-26T22:35:32.2747243Z 2025-08-26T22:35:32.2748461Z test_ops_fwd_gradients 2/2 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_fwd_gradients_2.2_e9c56a42ebe24648_.log 2025-08-26T22:35:32.3368753Z Running 1591 items in this shard: test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_H_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_T_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad___getitem___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad___rmatmul___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad___rmod___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad___rmul___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad___rpow___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad___rpow___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad___rsub___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad__batch_norm_with_update_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad__chunk_cat_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad__chunk_cat_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad__native_batch_norm_legit_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad__segment_reduce_lengths_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad__softmax_backward_data_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad__unsafe_masked_index_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad__unsafe_masked_index_put_accumulate_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad__unsafe_masked_index_put_accumulate_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad__upsample_bilinear2d_aa_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_abs_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_acosh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_addcdiv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_addcmul_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_addmm_decomposed_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_addmv_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_addmv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_addr_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_all_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_all_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_allclose_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_amax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_angle_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_angle_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_any_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_any_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_argmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_argmin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_as_strided_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_as_strided_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_as_strided_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_as_strided_partial_views_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_as_strided_scatter_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_asin_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_asinh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_atan2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_atan_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_atanh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_atleast_1d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_atleast_2d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_atleast_2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_bfloat16_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_bmm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_bmm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_bool_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_broadcast_to_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_bucketize_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_byte_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_byte_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cartesian_prod_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cat_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cauchy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cdouble_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_ceil_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cfloat_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_chalf_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_chalf_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_char_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cholesky_inverse_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cholesky_solve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_chunk_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_clone_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_clone_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_conj_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_conj_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_contiguous_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_corrcoef_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_corrcoef_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cos_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cosh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cosh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cov_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cross_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cummin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cumprod_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cumsum_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_diagflat_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_diagflat_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_diagonal_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_diagonal_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_diagonal_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_diagonal_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_diagonal_scatter_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_diff_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_digamma_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_div_floor_rounding_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_div_no_rounding_mode_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_div_trunc_rounding_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_dot_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_double_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_dsplit_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_dsplit_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_empty_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_empty_like_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_empty_permuted_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_eq_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_eq_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_erfc_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_exp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_exp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_expand_as_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_expand_as_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_expand_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_expand_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_expm1_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_exponential_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_eye_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_eye_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_fft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_hfft2_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_ifftn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_ifftshift_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_ihfft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_ihfftn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_irfft2_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_irfft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_rfft2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fill_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fill_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_flatten_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_flatten_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fliplr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_flipud_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_float_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_float_power_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_floor_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fmod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_frac_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_frexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_full_like_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_full_like_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_gather_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_gather_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_geqrf_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_geqrf_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_grid_sampler_2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_grid_sampler_3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_hash_tensor_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_histc_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_hsplit_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_hstack_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_hypot_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_i0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_igamma_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_index_add_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_index_fill_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_index_put_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_index_put_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_index_reduce_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_inner_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_int_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_isclose_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_isfinite_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_isinf_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_isnan_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_isneginf_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_isreal_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_isreal_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_item_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_jiterator_4inputs_with_extra_args_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_lerp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_cholesky_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_cholesky_ex_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_cond_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_cond_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_cross_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_det_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_det_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_diagonal_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_eig_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_eigh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_eigvals_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_householder_product_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_inv_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_inv_ex_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_ldl_factor_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_ldl_factor_ex_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_ldl_solve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_lstsq_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_lstsq_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_lstsq_grad_oriented_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_lu_factor_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_lu_solve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_matrix_norm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_matrix_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_matrix_power_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_matrix_power_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_matrix_rank_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_matrix_rank_hermitian_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_matrix_rank_hermitian_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_norm_subgradients_at_zero_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_norm_subgradients_at_zero_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_pinv_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_pinv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_pinv_hermitian_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_qr_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_qr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_slogdet_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_solve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_solve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_solve_ex_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_solve_triangular_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_svd_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_svdvals_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_svdvals_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_tensorinv_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_tensorsolve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_tensorsolve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_vander_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_vecdot_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_vecdot_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_vector_norm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linspace_tensor_overload_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_log2_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_log_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_log_normal_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_log_softmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_log_softmax_with_dtype_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logaddexp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logcumsumexp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logical_and_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logical_not_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logical_or_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logical_xor_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logspace_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logspace_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logspace_tensor_overload_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logspace_tensor_overload_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logsumexp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logsumexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_long_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_lu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_lu_solve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_mH_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_mT_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_mT_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_amax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_cumprod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_cumsum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_fill_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_fill_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_log_softmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_logsumexp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_median_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_normalize_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_normalize_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_prod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_scatter_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_scatter_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_select_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_softmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_std_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_var_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_matmul_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_matrix_exp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_max_binary_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_maximum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_mean_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_meshgrid_list_of_tensors_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_meshgrid_list_of_tensors_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_meshgrid_variadic_tensors_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_minimum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_movedim_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_msort_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_multinomial_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nan_to_num_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nansum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_narrow_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_narrow_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_native_batch_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_ne_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_neg_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_neg_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_new_empty_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_new_full_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_new_full_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_new_ones_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_new_zeros_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_new_zeros_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_adaptive_avg_pool1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_adaptive_avg_pool3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_adaptive_max_pool2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_batch_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_binary_cross_entropy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_binary_cross_entropy_with_logits_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_conv2d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_conv2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_conv3d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_conv_transpose1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_conv_transpose2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_conv_transpose3d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_conv_transpose3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_cosine_embedding_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_cosine_similarity_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_cross_entropy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_elu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_feature_alpha_dropout_with_train_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_feature_alpha_dropout_without_train_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_fractional_max_pool2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_gelu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_hardsigmoid_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_hardswish_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_hardtanh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_interpolate_area_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_interpolate_bicubic_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_interpolate_bilinear_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_interpolate_nearest_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_l1_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_linear_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_local_response_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_logsigmoid_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_max_pool1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_max_pool2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_max_pool3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_max_unpool1d_grad_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_mish_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_mse_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_multilabel_margin_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_nll_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_normalize_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_pad_circular_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_pad_constant_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_pad_replicate_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_pad_replicate_negative_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_pairwise_distance_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_pixel_shuffle_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_pixel_unshuffle_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_pixel_unshuffle_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_prelu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_silu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_smooth_l1_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_soft_margin_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_softmin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_softmin_with_dtype_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_softmin_with_dtype_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_softplus_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_softsign_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_softsign_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_tanhshrink_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_tanhshrink_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_threshold_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_triplet_margin_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_triplet_margin_with_distance_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_unfold_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_upsample_bilinear_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nonzero_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nonzero_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_norm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_norm_fro_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_norm_inf_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_norm_inf_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_normal_in_place_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_normal_number_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_ones_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_ones_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_outer_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_permute_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_pinverse_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_polar_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_polygamma_polygamma_n_2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_polygamma_polygamma_n_3_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_positive_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_prod_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_prod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_put_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_qr_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_qr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_rad2deg_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_randint_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_randint_like_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_randn_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_randn_like_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_randn_like_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_ravel_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_ravel_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_real_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_real_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_reciprocal_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_renorm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_repeat_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_repeat_interleave_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_reshape_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_resize__cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_resize__cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_resize_as__cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_resize_as__cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_resolve_conj_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_resolve_conj_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_resolve_neg_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_resolve_neg_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_roll_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_roll_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_rot90_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_rot90_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_round_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_round_decimals_0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_rsub_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_scalar_tensor_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_scatter_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_scatter_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_scatter_reduce_amax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_scatter_reduce_sum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_searchsorted_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_select_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_select_scatter_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sgn_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sgn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_short_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sigmoid_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sign_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_signal_windows_bartlett_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_signal_windows_blackman_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_signal_windows_exponential_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_signal_windows_general_hamming_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_signal_windows_hamming_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_signal_windows_hann_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_signal_windows_kaiser_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sin_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sinc_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sinh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_slice_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_slice_scatter_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sparse_mm_reduce_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sparse_sampled_addmm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sparse_sampled_addmm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_airy_ai_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_bessel_j1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_bessel_y1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_chebyshev_polynomial_u_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_hermite_polynomial_h_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_hermite_polynomial_he_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_i1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_modified_bessel_i0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_modified_bessel_k0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_ndtr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_scaled_modified_bessel_k1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_shifted_chebyshev_polynomial_t_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_shifted_chebyshev_polynomial_u_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_spherical_bessel_j0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_split_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_split_list_args_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_split_with_sizes_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_split_with_sizes_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_split_with_sizes_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_square_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_square_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_squeeze_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_squeeze_multiple_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_squeeze_multiple_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_stack_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_stack_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_std_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_std_mean_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_std_unbiased_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sub_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sub_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sum_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sum_to_size_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_svd_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_svd_lowrank_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_t_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_take_along_dim_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_take_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_take_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_tan_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_tan_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_tanh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_tanh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_tensor_split_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_tensor_split_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_tensordot_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_tensordot_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_tile_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_to_sparse_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_torch_ops_aten__safe_softmax_default_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_trace_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_transpose_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_transpose_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_transpose_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_trapz_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_tril_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_triu_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_triu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_true_divide_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_trunc_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_unbind_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_unbind_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_unbind_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_unfold_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_unfold_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_uniform_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_unsafe_chunk_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_unsafe_chunk_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_unsafe_split_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_unsqueeze_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_unsqueeze_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_var_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_var_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_var_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_view_as_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_view_as_real_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_vstack_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_vstack_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_where_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_xlogy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_zeros_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_zeros_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_zeros_like_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_H_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_T_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD___radd___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD___radd___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD___rdiv___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD___rmod___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD___rmul___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD___rpow___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD___rsub___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD___rsub___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD__batch_norm_with_update_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD__chunk_cat_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD__chunk_cat_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD__native_batch_norm_legit_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD__segment_reduce_lengths_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD__segment_reduce_offsets_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD__unsafe_masked_index_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD__unsafe_masked_index_put_accumulate_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_abs_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_abs_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_acos_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_acosh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_add_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_addbmm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_addcdiv_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_addcmul_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_addcmul_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_addmm_decomposed_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_addmv_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_addmv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_addr_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_addr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_allclose_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_amax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_amin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_aminmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_angle_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_angle_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_arange_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_argmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_as_strided_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_as_strided_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_as_strided_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_asin_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_asinh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_atan2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_atan_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_atanh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_atanh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_atleast_1d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_atleast_2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_atleast_3d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_baddbmm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_bfloat16_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_block_diag_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_bmm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_broadcast_tensors_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_broadcast_to_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_broadcast_to_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_byte_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cartesian_prod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cat_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cat_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cdouble_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_ceil_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_chalf_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_char_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cholesky_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cholesky_inverse_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cholesky_solve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_chunk_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_clamp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_clone_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_column_stack_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_combinations_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_combinations_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_complex_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_conj_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_conj_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_constant_pad_nd_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_contiguous_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_corrcoef_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cos_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cosh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cov_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cross_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cummax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cummin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cumprod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cumsum_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cumsum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cumulative_trapezoid_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_deg2rad_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_diagflat_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_diagonal_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_diagonal_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_diagonal_scatter_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_div_floor_rounding_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_div_no_rounding_mode_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_dot_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_dot_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_double_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_dsplit_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_dstack_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_dstack_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_einsum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_empty_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_empty_like_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_empty_like_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_empty_strided_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_eq_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_equal_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_erf_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_expand_as_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_expm1_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_fft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_fftn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_fftshift_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_hfft2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_hfft_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_hfftn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_ifft2_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_ifft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_ihfft2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_irfft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_irfftn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_rfft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_flatten_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fliplr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_flipud_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_float_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_float_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_float_power_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fmod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_frac_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_frexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_full_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_full_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_ge_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_gradient_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_half_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_half_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_hash_tensor_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_histc_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_histogram_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_hsplit_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_hstack_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_hstack_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_hypot_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_i0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_index_add_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_index_add_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_index_fill_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_index_fill_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_index_put_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_index_select_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_index_select_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_inner_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_int_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_int_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_isclose_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_isfinite_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_isin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_isinf_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_isnan_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_isnan_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_isreal_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_item_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_jiterator_2inputs_2outputs_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_jiterator_2inputs_2outputs_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_jiterator_4inputs_with_extra_args_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_jiterator_binary_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_jiterator_binary_return_by_ref_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_kron_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_kron_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_kthvalue_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_ldexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_le_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_lerp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_lgamma_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_cholesky_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_cholesky_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_cholesky_ex_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_cond_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_cond_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_cross_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_det_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_det_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_diagonal_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_eigvals_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_eigvals_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_eigvalsh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_eigvalsh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_inv_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_inv_ex_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_ldl_factor_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_ldl_factor_ex_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_ldl_solve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_lstsq_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_lu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_lu_factor_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_lu_solve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_lu_solve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_matrix_power_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_matrix_rank_hermitian_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_multi_dot_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_norm_subgradients_at_zero_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_pinv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_pinv_hermitian_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_pinv_singular_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_qr_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_solve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_solve_ex_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_solve_ex_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_solve_triangular_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_svd_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_svd_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_svdvals_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_tensorinv_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_tensorsolve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_vander_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_vander_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_vector_norm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_vector_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linspace_tensor_overload_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linspace_tensor_overload_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_log10_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_log10_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_log1p_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_log2_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_log_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_log_normal_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_log_softmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_log_softmax_with_dtype_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logaddexp2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logcumsumexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logdet_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logdet_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logical_and_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logical_and_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logical_not_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logical_or_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logical_or_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logical_xor_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logit_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logspace_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logsumexp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_long_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_lu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_lu_solve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_lu_unpack_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_lu_unpack_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_mH_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_mT_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_amax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_amin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_argmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_cumprod_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_cumsum_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_fill_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_fill_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_log_softmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_prod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_scatter_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_select_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_softmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_std_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_max_binary_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_max_pool2d_with_indices_backward_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_max_reduction_no_dim_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_maximum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_mean_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_median_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_meshgrid_list_of_tensors_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_meshgrid_list_of_tensors_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_meshgrid_variadic_tensors_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_min_reduction_no_dim_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_min_reduction_with_dim_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_minimum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_mm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_mode_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_movedim_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_movedim_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_msort_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_mul_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_multinomial_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nan_to_num_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nanquantile_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_narrow_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_narrow_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_narrow_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_native_layer_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_neg_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_new_empty_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_new_empty_strided_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_new_full_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_new_ones_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_new_ones_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nextafter_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_adaptive_avg_pool1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_adaptive_max_pool1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_adaptive_max_pool2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_adaptive_max_pool3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_avg_pool2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_binary_cross_entropy_with_logits_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_celu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_channel_shuffle_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_conv1d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_conv1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_conv2d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_conv2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_conv_transpose1d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_conv_transpose1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_conv_transpose3d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_conv_transpose3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_cosine_similarity_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_cross_entropy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_ctc_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_elu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_embedding_bag_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_feature_alpha_dropout_without_train_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_feature_alpha_dropout_without_train_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_fractional_max_pool3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_gaussian_nll_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_gelu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_hardshrink_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_hardtanh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_hinge_embedding_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_instance_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_interpolate_area_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_interpolate_linear_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_interpolate_nearest_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_interpolate_trilinear_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_l1_loss_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_l1_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_leaky_relu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_linear_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_logsigmoid_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_max_pool1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_max_pool2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_max_pool3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_max_unpool1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_max_unpool2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_max_unpool3d_grad_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_mish_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_multi_margin_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_multilabel_margin_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_multilabel_soft_margin_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_pad_circular_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_pad_constant_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_pad_replicate_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_pad_replicate_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_pad_replicate_negative_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_pad_replicate_negative_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_pairwise_distance_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_pdist_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_pixel_shuffle_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_poisson_nll_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_relu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_selu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_silu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_smooth_l1_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_softmin_with_dtype_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_softmin_with_dtype_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_softplus_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_tanhshrink_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_threshold_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_unfold_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nonzero_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nonzero_static_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_norm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_norm_fro_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_norm_nuc_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_normal_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_normal_in_place_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_normal_in_place_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_normal_number_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_ones_like_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_ormqr_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_pca_lowrank_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_pca_lowrank_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_permute_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_pinverse_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_polygamma_polygamma_n_2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_polygamma_polygamma_n_3_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_polygamma_polygamma_n_4_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_positive_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_pow_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_put_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_put_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_qr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_rand_like_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_randint_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_randn_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_randn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_randn_like_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_randn_like_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_real_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_reciprocal_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_reciprocal_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_remainder_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_renorm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_renorm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_repeat_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_repeat_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_repeat_interleave_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_reshape_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_resize_as__cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_resize_as__cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_resolve_neg_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_resolve_neg_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_roll_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_round_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_round_decimals_0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_round_decimals_3_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_round_decimals_neg_3_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_rsub_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_rsub_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_scalar_tensor_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_scalar_tensor_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_scatter_add_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_scatter_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_scatter_reduce_sum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_select_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_select_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sgn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_short_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_signal_windows_bartlett_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_signal_windows_blackman_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_signal_windows_cosine_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_signal_windows_hann_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_signal_windows_kaiser_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sin_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sinc_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sinc_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_softmax_with_dtype_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sort_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_airy_ai_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_bessel_j0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_bessel_j1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_chebyshev_polynomial_t_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_chebyshev_polynomial_u_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_entr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_erfcx_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_hermite_polynomial_h_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_hermite_polynomial_he_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_i1e_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_laguerre_polynomial_l_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_log_ndtr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_modified_bessel_k0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_modified_bessel_k1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_ndtri_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_scaled_modified_bessel_k1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_shifted_chebyshev_polynomial_t_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_shifted_chebyshev_polynomial_u_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_shifted_chebyshev_polynomial_w_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_spherical_bessel_j0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_zeta_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_split_list_args_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_split_with_sizes_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_split_with_sizes_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sqrt_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_square_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_square_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_squeeze_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_stack_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_std_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_std_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_std_mean_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_std_unbiased_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_std_unbiased_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sub_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sum_to_size_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_svd_lowrank_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_t_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_t_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_take_along_dim_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_take_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_tan_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_tanh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_tanh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_tensor_split_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_tensordot_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_tile_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_to_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_topk_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_transpose_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_transpose_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_transpose_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_trapezoid_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_trapz_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_triangular_solve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_tril_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_true_divide_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_unbind_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_unbind_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_unbind_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_unbind_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_unflatten_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_unfold_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_unfold_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_unique_consecutive_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_unsafe_chunk_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_unsafe_split_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_unsqueeze_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_unsqueeze_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_unsqueeze_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_var_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_var_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_var_unbiased_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_vdot_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_view_as_complex_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_view_as_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_view_as_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_vsplit_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_vsplit_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_where_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_zeros_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_zeros_like_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_zeros_like_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_H_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_T_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD___getitem___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD___radd___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD___radd___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD___rdiv___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD___rdiv___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD___rmatmul___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD___rmul___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD___rmul___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD___rpow___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD__chunk_cat_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD__segment_reduce_lengths_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD__softmax_backward_data_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD__unsafe_masked_index_put_accumulate_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD__upsample_bilinear2d_aa_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_abs_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_acos_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_add_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_addbmm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_addbmm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_addcmul_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_addcmul_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_addmm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_addmm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_addmm_decomposed_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_addmm_decomposed_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_addmv_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_addmv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_addr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_all_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_allclose_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_allclose_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_amin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_aminmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_angle_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_angle_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_arange_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_argmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_argwhere_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_argwhere_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_as_strided_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_as_strided_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_as_strided_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_as_strided_partial_views_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_as_strided_scatter_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_asin_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_asin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_asinh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_atleast_1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_atleast_2d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_atleast_2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_atleast_3d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_atleast_3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_baddbmm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_bernoulli_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_bfloat16_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_block_diag_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_bmm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_bmm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_bool_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_broadcast_to_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_byte_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cartesian_prod_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cat_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cdist_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cdouble_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cfloat_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cfloat_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_chunk_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_chunk_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_clamp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_clamp_max_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_clamp_min_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_clone_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_column_stack_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_combinations_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_complex_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_conj_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_conj_physical_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_constant_pad_nd_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_copysign_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cosh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_count_nonzero_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cov_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cross_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cummin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cumprod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cumulative_trapezoid_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cumulative_trapezoid_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_deg2rad_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_diag_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_diag_embed_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_diag_embed_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_diagflat_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_diagonal_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_diagonal_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_diagonal_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_diagonal_scatter_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_diagonal_scatter_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_diff_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_digamma_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_dist_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_div_floor_rounding_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_div_no_rounding_mode_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_div_trunc_rounding_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_dot_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_double_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_dsplit_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_dsplit_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_dstack_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_dstack_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_einsum_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_empty_like_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_empty_like_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_empty_permuted_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_empty_permuted_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_empty_strided_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_equal_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_equal_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_erfinv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_exp2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_exp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_exp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_expand_as_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_expand_as_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_expand_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_expm1_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_fft2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_fft_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_fft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_fftn_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_fftn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_fftshift_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_hfft2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_hfft_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_hfftn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_ifft2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_ifft_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_ifftn_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_ifftn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_ihfft2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_irfft2_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_irfft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_irfftn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_rfftn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fill_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_flatten_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_flatten_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_flip_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_flip_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fliplr_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fliplr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_flipud_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_float_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_float_power_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_float_power_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fmod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_full_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_full_like_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_gather_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_ge_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_geometric_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_geqrf_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_geqrf_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_grid_sampler_3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_hash_tensor_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_histogramdd_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_hsplit_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_igamma_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_index_add_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_index_fill_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_index_fill_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_index_put_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_index_reduce_amin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_index_select_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_inner_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_int_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_int_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_isclose_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_isclose_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_isnan_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_isneginf_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_isposinf_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_istft_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_item_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_item_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_jiterator_2inputs_2outputs_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_jiterator_4inputs_with_extra_args_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_jiterator_binary_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_jiterator_binary_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_kron_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_kron_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_kthvalue_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_ldexp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_ldexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_lerp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_lerp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_lgamma_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_cholesky_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_cholesky_ex_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_cond_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_cross_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_det_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_diagonal_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_eig_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_eigh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_eigvals_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_householder_product_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_householder_product_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_inv_ex_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_inv_ex_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_ldl_factor_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_ldl_factor_ex_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_ldl_factor_ex_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_ldl_solve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_lu_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_lu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_lu_factor_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_lu_factor_ex_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_lu_solve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_matrix_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_matrix_rank_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_multi_dot_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_norm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_norm_subgradients_at_zero_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_norm_subgradients_at_zero_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_pinv_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_qr_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_slogdet_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_slogdet_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_solve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_solve_ex_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_solve_ex_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_solve_triangular_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_svd_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_svd_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_svdvals_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_svdvals_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_tensorinv_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_tensorinv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_tensorsolve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_vecdot_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_vecdot_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_vector_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linspace_tensor_overload_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_log1p_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_log2_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_log2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_log_normal_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_log_softmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_log_softmax_with_dtype_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logaddexp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logcumsumexp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logcumsumexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logdet_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logical_and_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logical_not_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logical_xor_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logspace_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logspace_tensor_overload_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logspace_tensor_overload_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logsumexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_long_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_lu_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_lu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_lu_solve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_mH_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_mT_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_amax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_amin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_argmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_fill_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_logaddexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_median_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_normalize_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_scatter_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_scatter_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_softmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_std_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_sum_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_sum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_var_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_matrix_exp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_maximum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_median_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_meshgrid_variadic_tensors_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_min_binary_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_min_reduction_no_dim_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_min_reduction_with_dim_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_minimum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_mode_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_movedim_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_movedim_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nan_to_num_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nanmedian_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nanquantile_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_narrow_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_ne_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_neg_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_neg_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_new_empty_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_new_empty_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_new_full_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_new_ones_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_new_zeros_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_new_zeros_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_adaptive_avg_pool1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_adaptive_avg_pool2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_adaptive_max_pool3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_alpha_dropout_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_avg_pool1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_batch_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_conv1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_conv3d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_conv_transpose1d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_conv_transpose2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_conv_transpose3d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_cosine_embedding_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_ctc_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_dropout3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_embedding_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_feature_alpha_dropout_with_train_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_feature_alpha_dropout_without_train_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_fractional_max_pool2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_fractional_max_pool3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_gaussian_nll_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_gelu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_grid_sample_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_group_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_hardsigmoid_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_hardswish_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_hinge_embedding_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_interpolate_area_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_interpolate_bicubic_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_interpolate_linear_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_linear_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_logsigmoid_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_margin_ranking_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_max_pool1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_max_pool2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_max_pool3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_max_unpool2d_grad_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_max_unpool3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_max_unpool3d_grad_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_multi_head_attention_forward_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_multilabel_margin_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_pad_circular_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_pad_constant_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_pad_constant_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_pad_reflect_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_pad_reflect_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_pdist_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_pixel_shuffle_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_pixel_unshuffle_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_pixel_unshuffle_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_poisson_nll_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_prelu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_relu6_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_rrelu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_scaled_dot_product_attention_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_selu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_softmin_with_dtype_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_softshrink_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_softsign_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_tanhshrink_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_tanhshrink_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_threshold_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_triplet_margin_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_triplet_margin_with_distance_loss_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_unfold_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_unfold_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_upsample_bilinear_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nonzero_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nonzero_static_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_norm_fro_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_norm_inf_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_norm_inf_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_norm_nuc_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_norm_nuc_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_normal_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_normal_in_place_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_normal_number_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_ones_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_ones_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_ormqr_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_outer_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_permute_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_permute_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_permute_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_polygamma_polygamma_n_0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_polygamma_polygamma_n_1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_polygamma_polygamma_n_4_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_positive_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_positive_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_prod_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_prod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_put_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_put_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_qr_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_rad2deg_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_rand_like_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_randn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_randn_like_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_ravel_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_real_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_renorm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_renorm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_repeat_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_reshape_as_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_reshape_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_resize_as__cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_resolve_conj_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_resolve_neg_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_roll_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_round_decimals_neg_3_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_rsqrt_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_rsub_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_scatter_add_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_scatter_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_scatter_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_scatter_reduce_amax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_scatter_reduce_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_scatter_reduce_prod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_scatter_reduce_sum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_select_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sgn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_short_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_short_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sigmoid_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_signal_windows_bartlett_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_signal_windows_cosine_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_signal_windows_exponential_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_signal_windows_gaussian_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_signal_windows_general_cosine_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_signal_windows_kaiser_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_signbit_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_slice_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_slice_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_slice_scatter_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sparse_mm_reduce_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sparse_sampled_addmm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_bessel_j0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_chebyshev_polynomial_t_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_chebyshev_polynomial_u_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_chebyshev_polynomial_v_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_entr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_hermite_polynomial_h_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_i0e_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_i1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_log_ndtr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_modified_bessel_i0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_modified_bessel_k0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_shifted_chebyshev_polynomial_t_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_shifted_chebyshev_polynomial_u_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_shifted_chebyshev_polynomial_v_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_spherical_bessel_j0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_zeta_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_split_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_split_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_split_list_args_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_split_with_sizes_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_split_with_sizes_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_split_with_sizes_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sqrt_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sqrt_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_square_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_square_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_squeeze_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_squeeze_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_squeeze_multiple_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_stack_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_stack_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_std_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_std_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_std_mean_unbiased_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_std_mean_unbiased_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_std_unbiased_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_stft_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_stft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sum_to_size_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_svd_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_svd_lowrank_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_take_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_tan_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_tanh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_tensor_split_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_tensor_split_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_tensordot_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_tile_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_to_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_to_sparse_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_topk_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_trace_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_transpose_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_trapz_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_tril_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_tril_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_triu_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_triu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_true_divide_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_true_divide_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_unbind_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_unflatten_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_unfold_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_unfold_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_uniform_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_unique_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_unsafe_chunk_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_unsafe_chunk_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_unsqueeze_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_unsqueeze_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_unsqueeze_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_var_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_var_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_var_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_var_mean_unbiased_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_vdot_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_view_as_complex_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_view_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_view_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_view_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_vsplit_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_vstack_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_where_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_where_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_xlogy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_zero__cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_zero__cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_zeros_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_zeros_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_zeros_like_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_zeros_like_cpu_float64 2025-08-26T22:35:32.4123533Z 2025-08-26T22:35:38.6665591Z Running test_mkldnn 1/1 ... [2025-08-26 22:35:38.664033] 2025-08-26T22:35:38.6666309Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:35:38.6673255Z 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-26 22:35:38.664033] 2025-08-26T22:36:44.5326033Z 2025-08-26T22:36:44.5327181Z test_mkldnn 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_mkldnn_1.1_920c2801bc3da1a7_.log 2025-08-26T22:36:44.5362130Z 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-26T22:36:44.5392982Z 2025-08-26T22:36:50.3863048Z Running torch_np/numpy_tests/core/test_dlpack 1/1 ... [2025-08-26 22:36:50.383601] 2025-08-26T22:36:50.3864140Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:36:50.3873274Z 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-26 22:36:50.383601] 2025-08-26T22:36:55.9124937Z 2025-08-26T22:36:55.9126013Z 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_9a0c72d6538c47e1_.log 2025-08-26T22:36:55.9144082Z 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-26T22:36:55.9160525Z 2025-08-26T22:37:01.7780299Z Running test_unary_ufuncs 1/1 ... [2025-08-26 22:37:01.776910] 2025-08-26T22:37:01.7781121Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:37:01.7788630Z 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-26 22:37:01.776910] 2025-08-26T22:39:06.5105529Z 2025-08-26T22:39:06.5106469Z functorch/test_vmap 2/2 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_vmap_2.2_15cf576cca2ef483_.log 2025-08-26T22:39:06.5563479Z Running 1071 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_grid_sampler_3d_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_grid_sampler_3d_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-26T22:39:06.5992008Z 2025-08-26T22:39:11.7757032Z Running test_xnnpack_integration 1/1 ... [2025-08-26 22:39:11.775257] 2025-08-26T22:39:11.7757555Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:39:11.7763291Z 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-26 22:39:11.775841] 2025-08-26T22:39:25.7222109Z 2025-08-26T22:39:25.7223086Z test_xnnpack_integration 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_xnnpack_integration_1.1_71c09fa956df7f88_.log 2025-08-26T22:39:25.7227791Z 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-26T22:39:25.7231549Z 2025-08-26T22:39:31.3153292Z Running torch_np/numpy_tests/lib/test_index_tricks 1/1 ... [2025-08-26 22:39:31.314131] 2025-08-26T22:39:31.3153870Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:39:31.3159742Z 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-26 22:39:31.315257] 2025-08-26T22:39:36.4009304Z 2025-08-26T22:39:36.4010689Z 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_636e240225862854_.log 2025-08-26T22:39:36.4027620Z 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-26T22:39:36.4043290Z 2025-08-26T22:39:39.3231081Z 2025-08-26T22:39:39.3231941Z test_meta 4/4 was successful, full logs can be found in artifacts with path test/test-reports/test_meta_4.4_81161fcea3a2ba08_.log 2025-08-26T22:39:39.6507699Z Running 10309 items in this shard: test/test_meta.py::TestMetaConverter::test_channels_last_non_leaf, test/test_meta.py::TestMetaConverter::test_empty_strided_non_dense_leaf, test/test_meta.py::TestMetaConverter::test_imag, test/test_meta.py::TestMetaConverter::test_non_leaf_torture, test/test_meta.py::TestMetaConverter::test_view_of_view_of_leaf, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype___rdiv___cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_atan2_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_float_power_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_fmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_fmod_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_hypot_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_isclose_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_logaddexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_minimum_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_mul_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_rsub_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_atan2_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_div_trunc_rounding_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_float_power_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_jiterator_binary_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_ldexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_logical_xor_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_ne_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_remainder_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_rsub_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_special_chebyshev_polynomial_t_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_special_hermite_polynomial_h_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_special_laguerre_polynomial_l_cpu_float32, test/test_meta.py::TestMetaCPU::test_cdist_forward_cpu, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_H_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_H_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_H_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_T_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_T_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___getitem___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___getitem___cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___radd___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___radd___cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___radd___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___radd___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rand___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rand___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rand___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rand___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rdiv___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rdiv___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rdiv___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rdiv___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rmatmul___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rmod___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rmod___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rmul___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rmul___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rmul___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rmul___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___ror___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___ror___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rpow___cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rpow___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rsub___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__batch_norm_with_update_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__chunk_cat_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__chunk_cat_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__chunk_cat_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__chunk_cat_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__chunk_cat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_abs_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_abs_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_acos_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_acos_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_add_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_add_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_add_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_addcdiv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_addcdiv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_addcdiv_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_addcmul_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_addcmul_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_addcmul_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_asin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_asin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_asin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_atan_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_atan_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_atan_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_atan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_ceil_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_ceil_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_ceil_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_ceil_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_ceil_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_ceil_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_ceil_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_ceil_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_clamp_max_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_clamp_max_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_clamp_max_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_clamp_max_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_clamp_max_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_clamp_max_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_clamp_min_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_clamp_min_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_clamp_min_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_clamp_min_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_cos_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_cosh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_cosh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_cosh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_div_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_div_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_div_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_erf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_erf_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_erf_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_erfc_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_erfc_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_exp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_exp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_exp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_expm1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_expm1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_floor_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_floor_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_floor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_floor_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_floor_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_floor_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_frac_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_frac_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_frac_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_frac_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_lerp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_lerp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_lerp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_lerp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_lgamma_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_lgamma_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_lgamma_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_lgamma_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_lgamma_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log10_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log10_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log10_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log10_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log1p_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log1p_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log1p_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log1p_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_max_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_maximum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_maximum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_maximum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_minimum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_minimum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_minimum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_minimum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_mul_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_neg_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_neg_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_norm_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_norm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_pow_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_pow_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_pow_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_pow_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_pow_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_pow_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_pow_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_reciprocal_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_round_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_round_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_round_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_rsqrt_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_rsqrt_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_rsqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_rsqrt_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_rsqrt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sigmoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sigmoid_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sigmoid_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sigmoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sigmoid_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sign_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sign_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sign_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sqrt_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sqrt_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sqrt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sub_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_tan_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_tanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_tanh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_tanh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_tanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_trunc_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_trunc_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_zero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_zero_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_zero_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__native_batch_norm_legit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__native_batch_norm_legit_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__segment_reduce_lengths_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__segment_reduce_offsets_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__segment_reduce_offsets_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__segment_reduce_offsets_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__unsafe_masked_index_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__unsafe_masked_index_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__unsafe_masked_index_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__unsafe_masked_index_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__unsafe_masked_index_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__unsafe_masked_index_put_accumulate_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__unsafe_masked_index_put_accumulate_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__unsafe_masked_index_put_accumulate_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__upsample_bilinear2d_aa_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_abs_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_abs_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_abs_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_abs_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_acos_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_acos_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_acos_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_acos_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_acosh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_acosh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_acosh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_acosh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_acosh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_add_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_add_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_add_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_add_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_add_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addcdiv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addcmul_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmm_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmm_decomposed_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmm_decomposed_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmv_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmv_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addr_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addr_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addr_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_alias_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_alias_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_alias_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_alias_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_all_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_allclose_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_allclose_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_amax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_amax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_amin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_amin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_amin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_aminmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_aminmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_angle_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_angle_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_angle_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_angle_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_angle_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_arange_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_arange_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_arange_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argmax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argmin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argsort_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argsort_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argsort_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argsort_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argsort_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argwhere_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_partial_views_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_partial_views_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_partial_views_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_partial_views_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_partial_views_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_scatter_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_asin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_asin_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_asin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_asin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_asinh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_asinh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atan_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atan_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atanh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atanh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atanh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atanh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_2d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_2d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_2d_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_3d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_3d_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bernoulli_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bfloat16_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bfloat16_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bfloat16_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bfloat16_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bfloat16_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bincount_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_and_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_and_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_left_shift_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_not_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_not_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_or_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_right_shift_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_xor_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_block_diag_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_block_diag_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_block_diag_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bmm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bmm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bool_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bool_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_broadcast_tensors_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_broadcast_tensors_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_broadcast_to_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_broadcast_to_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_broadcast_to_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bucketize_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bucketize_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bucketize_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_byte_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_byte_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cartesian_prod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cartesian_prod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cat_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cat_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cat_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cauchy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cdist_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cdist_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cdouble_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cdouble_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cdouble_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cdouble_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ceil_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ceil_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cfloat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cfloat_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cfloat_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chalf_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chalf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chalf_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chalf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chalf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chalf_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chalf_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_char_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_char_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_char_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cholesky_inverse_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cholesky_inverse_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cholesky_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chunk_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_max_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_max_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_min_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_min_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clone_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clone_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_combinations_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_combinations_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_combinations_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_combinations_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_conj_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_conj_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_conj_physical_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_conj_physical_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_constant_pad_nd_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_constant_pad_nd_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_constant_pad_nd_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_contiguous_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_contiguous_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_copysign_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_corrcoef_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_corrcoef_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_corrcoef_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_corrcoef_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cos_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cosh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cosh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cosh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cosh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_count_nonzero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_count_nonzero_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_count_nonzero_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_count_nonzero_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cov_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cov_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cov_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cross_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cross_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cross_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cross_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cummax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cummax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cummin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cummin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cummin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumprod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumprod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumprod_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumprod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumsum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumsum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumsum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumsum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumulative_trapezoid_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumulative_trapezoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumulative_trapezoid_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_deg2rad_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diag_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diag_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diag_embed_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diag_embed_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diag_embed_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diag_embed_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diag_embed_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diag_embed_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diag_embed_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diag_embed_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagflat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagflat_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diff_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diff_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_digamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_digamma_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_digamma_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dist_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dist_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dist_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dist_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_floor_rounding_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_floor_rounding_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_floor_rounding_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_floor_rounding_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_no_rounding_mode_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_no_rounding_mode_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_no_rounding_mode_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_trunc_rounding_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_trunc_rounding_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dot_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dot_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dot_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dot_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_double_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_double_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_double_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dsplit_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dsplit_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dstack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dstack_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dstack_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_einsum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_einsum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_einsum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_permuted_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_permuted_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_strided_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_strided_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_strided_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eq_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_equal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_equal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_equal_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erf_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erfc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erfc_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erfc_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erfc_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erfc_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erfc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erfinv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erfinv_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_as_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expm1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expm1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expm1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expm1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exponential_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exponential_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eye_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eye_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eye_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eye_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eye_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fft_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fftn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fftshift_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fftshift_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fftshift_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfft2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfft2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfft_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfftn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfftn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifft_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifftshift_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifftshift_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifftshift_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifftshift_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ihfft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ihfft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ihfft_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ihfftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfft2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfft_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfftn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_rfft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_rfft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_rfft_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_rfft_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_rfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_rfftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flatten_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flatten_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flatten_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flatten_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flip_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flip_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fliplr_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fliplr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fliplr_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fliplr_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flipud_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flipud_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_float_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_float_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_float_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_float_power_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_float_power_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_float_power_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_float_power_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_float_power_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_floor_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_floor_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_floor_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_floor_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_floor_divide_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_frac_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_frexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_full_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_full_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_full_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_full_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_full_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_full_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_full_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_full_like_cpu_uint16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_full_like_cpu_uint32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gather_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gather_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gather_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gather_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gather_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gather_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ge_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ge_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_geometric_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_geometric_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_geqrf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gt_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gt_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_half_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_half_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hash_tensor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_heaviside_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_heaviside_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_heaviside_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_heaviside_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_heaviside_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hsplit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hsplit_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hsplit_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hsplit_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hstack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hstack_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hstack_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hstack_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hstack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_i0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_i0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_igamma_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_igamma_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_igammac_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_add_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_add_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_add_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_add_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_fill_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_put_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_put_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_put_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_put_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_amax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_amax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_amin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_mean_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_mean_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_mean_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_prod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_select_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_select_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_select_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_inner_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_inner_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_int_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isclose_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isclose_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isfinite_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isfinite_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isfinite_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isfinite_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isfinite_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isfinite_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isfinite_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isfinite_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isinf_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isnan_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isnan_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isnan_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isnan_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isneginf_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isposinf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isreal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isreal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isreal_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isreal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isreal_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isreal_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_item_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_item_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_item_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_item_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_2inputs_2outputs_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_2inputs_2outputs_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_4inputs_with_extra_args_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_binary_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_binary_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_binary_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_binary_return_by_ref_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_binary_return_by_ref_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_binary_return_by_ref_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_binary_return_by_ref_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_unary_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_unary_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_unary_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_kron_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_kron_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_kron_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_kthvalue_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_kthvalue_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_kthvalue_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_kthvalue_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_kthvalue_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lcm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lcm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ldexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ldexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ldexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ldexp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ldexp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ldexp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_le_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_le_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_le_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lerp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lerp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lgamma_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lgamma_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lgamma_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lgamma_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_cholesky_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_cond_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_det_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_det_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_det_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_det_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_diagonal_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_diagonal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_diagonal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_diagonal_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_diagonal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_eig_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_eigvals_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_eigvalsh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_householder_product_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_householder_product_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_inv_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_ldl_factor_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_lstsq_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_lstsq_grad_oriented_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_lstsq_grad_oriented_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_lu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_lu_factor_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_matrix_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_matrix_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_matrix_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_matrix_rank_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_matrix_rank_hermitian_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_multi_dot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_norm_subgradients_at_zero_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_norm_subgradients_at_zero_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_pinv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_pinv_hermitian_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_qr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_qr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_slogdet_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_slogdet_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_slogdet_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_solve_ex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_solve_triangular_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_solve_triangular_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_svd_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_svd_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_svdvals_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_svdvals_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_tensorinv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_tensorsolve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_tensorsolve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_vander_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_vander_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_vander_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_vander_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_vecdot_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_vecdot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_vecdot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_vector_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_vector_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_vector_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linspace_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linspace_tensor_overload_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linspace_tensor_overload_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linspace_tensor_overload_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log1p_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log1p_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log1p_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log1p_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_softmax_with_dtype_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_softmax_with_dtype_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_softmax_with_dtype_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logaddexp2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logdet_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_and_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_and_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_and_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_and_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_not_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_not_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_not_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_not_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_not_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_or_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_or_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_or_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_xor_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_xor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_xor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logit_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logspace_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logspace_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logspace_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logspace_tensor_overload_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logspace_tensor_overload_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logspace_tensor_overload_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logspace_tensor_overload_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_long_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_long_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_long_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lt_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lt_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lt_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lu_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lu_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lu_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lu_unpack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lu_unpack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lu_unpack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mH_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mH_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mT_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mT_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mT_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mT_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_amax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_amax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_argmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_argmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_argmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_cumprod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_cumsum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_cumsum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_cumsum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_fill_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_fill_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_fill_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_logaddexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_logsumexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_logsumexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_logsumexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_logsumexp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_mean_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_mean_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_median_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_normalize_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_normalize_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_prod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_scatter_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_select_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_select_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_select_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_select_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_select_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_select_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_select_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_softmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_std_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_std_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_std_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_std_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_std_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_sum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_sum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_var_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_var_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_var_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_var_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_matmul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_matmul_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_matrix_exp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_binary_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_binary_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_pool2d_with_indices_backward_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_reduction_no_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_reduction_with_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_reduction_with_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_reduction_with_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_reduction_with_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_maximum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_maximum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mean_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_median_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_meshgrid_list_of_tensors_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_meshgrid_list_of_tensors_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_meshgrid_list_of_tensors_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_meshgrid_variadic_tensors_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_binary_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_binary_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_reduction_no_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_reduction_with_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_reduction_with_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_reduction_with_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_minimum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_minimum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_minimum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mode_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mode_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mode_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mode_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_movedim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_msort_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_msort_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_msort_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mul_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mul_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_multinomial_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mv_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mv_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mv_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mvlgamma_mvlgamma_p_5_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mvlgamma_mvlgamma_p_5_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nan_to_num_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nan_to_num_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nan_to_num_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nanmean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nanmedian_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nanmedian_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nanquantile_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nansum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nansum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_narrow_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_narrow_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_narrow_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_narrow_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_narrow_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_narrow_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_narrow_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_narrow_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_native_batch_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_native_batch_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_native_batch_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_native_dropout_backward_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_native_layer_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_native_layer_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ne_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ne_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ne_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ne_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ne_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_neg_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_empty_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_empty_strided_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_empty_strided_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_empty_strided_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_full_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_full_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_full_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_full_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_full_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_full_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_ones_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_ones_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_ones_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_ones_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_ones_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_zeros_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_zeros_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_zeros_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_zeros_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_adaptive_avg_pool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_adaptive_avg_pool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_adaptive_max_pool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_adaptive_max_pool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_alpha_dropout_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_avg_pool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_avg_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_batch_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_batch_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_bilinear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_bilinear_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_bilinear_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_bilinear_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_bilinear_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_binary_cross_entropy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_binary_cross_entropy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_binary_cross_entropy_with_logits_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_binary_cross_entropy_with_logits_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_celu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_celu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_channel_shuffle_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_channel_shuffle_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_channel_shuffle_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv1d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv3d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv_transpose2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv_transpose2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv_transpose3d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_cosine_embedding_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_cosine_similarity_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_cosine_similarity_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_cross_entropy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_ctc_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_dropout2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_dropout3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_dropout_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_elu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_embedding_bag_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_embedding_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_embedding_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_embedding_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_feature_alpha_dropout_with_train_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_fractional_max_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_gaussian_nll_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_gaussian_nll_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_glu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_glu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_grid_sample_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_grid_sample_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_group_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_group_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_hardshrink_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_hardtanh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_hinge_embedding_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_hinge_embedding_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_huber_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_huber_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_huber_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_instance_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_bicubic_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_bicubic_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_bilinear_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_linear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_nearest-exact_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_nearest-exact_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_nearest_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_nearest_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_nearest_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_trilinear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_kl_div_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_l1_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_layer_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_layer_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_leaky_relu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_linear_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_linear_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_linear_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_local_response_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_local_response_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_local_response_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_logsigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_pool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_pool2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_pool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_pool3d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_unpool1d_grad_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_unpool1d_grad_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_unpool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_unpool3d_grad_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_mish_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_mse_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_multi_head_attention_forward_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_nll_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_normalize_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_normalize_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_circular_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_circular_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_constant_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_constant_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_reflect_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_reflect_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_replicate_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_replicate_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_replicate_negative_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_replicate_negative_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_replicate_negative_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_replicate_negative_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pairwise_distance_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pairwise_distance_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pixel_shuffle_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pixel_shuffle_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pixel_shuffle_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pixel_unshuffle_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pixel_unshuffle_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_poisson_nll_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_poisson_nll_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_prelu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_relu6_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_relu6_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_relu6_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_relu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_rrelu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_scaled_dot_product_attention_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_scaled_dot_product_attention_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_selu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_silu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_silu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_smooth_l1_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_soft_margin_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_soft_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softmin_with_dtype_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softmin_with_dtype_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softmin_with_dtype_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softsign_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softsign_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softsign_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_tanhshrink_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_tanhshrink_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_threshold_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_threshold_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_threshold_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_triplet_margin_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_unfold_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_unfold_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_upsample_bilinear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_upsample_bilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_upsample_bilinear_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_upsample_nearest_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nonzero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nonzero_static_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nonzero_static_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nonzero_static_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nonzero_static_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nonzero_static_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nonzero_static_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_norm_fro_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_norm_fro_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_norm_inf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_norm_nuc_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_normal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_normal_in_place_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_normal_in_place_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_normal_number_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_normal_number_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ones_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ones_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ones_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ones_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ones_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ones_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ones_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ones_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ormqr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ormqr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_outer_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_outer_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_outer_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_outer_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_pca_lowrank_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_pca_lowrank_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_permute_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_permute_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_permute_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_permute_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_permute_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_permute_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_pinverse_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polar_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_0_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_4_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_pow_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_pow_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_prod_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_prod_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_prod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_put_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_put_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_put_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_put_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_put_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_put_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_put_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rad2deg_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rand_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randint_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randint_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randint_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randint_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randn_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randn_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ravel_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ravel_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ravel_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ravel_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_real_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_real_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_real_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reciprocal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reciprocal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reciprocal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reciprocal_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_remainder_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_remainder_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_renorm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_renorm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_repeat_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_repeat_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_repeat_interleave_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_repeat_interleave_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_repeat_interleave_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reshape_as_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reshape_as_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reshape_as_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reshape_as_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reshape_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reshape_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reshape_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reshape_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resize__cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resize__cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resize__cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resize_as__cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resize_as__cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resize_as__cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resolve_conj_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resolve_conj_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resolve_conj_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resolve_neg_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resolve_neg_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resolve_neg_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resolve_neg_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_roll_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_roll_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_roll_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rot90_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_round_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_round_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_round_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_round_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_round_decimals_3_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rsqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rsqrt_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rsqrt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rsub_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rsub_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scalar_tensor_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scalar_tensor_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_add_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_amax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_amin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_amin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_amin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_mean_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_prod_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_prod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_sum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_sum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_sum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_select_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_select_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_select_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_select_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_select_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_select_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_select_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sgn_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sgn_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sgn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sgn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sgn_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_short_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_short_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_short_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_short_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sigmoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sigmoid_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sigmoid_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sigmoid_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sigmoid_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sign_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signal_windows_bartlett_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signal_windows_blackman_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signal_windows_cosine_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signal_windows_general_cosine_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signal_windows_general_hamming_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signal_windows_hann_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signbit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signbit_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signbit_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signbit_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sinc_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sinc_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sinh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sinh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sinh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sinh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_slice_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_slice_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_slice_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_softmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_softmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sort_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sparse_sampled_addmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_airy_ai_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_j0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_j1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_j1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_y0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_y0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_y0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_y0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_y1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_y1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_y1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_y1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_t_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_t_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_t_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_t_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_u_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_u_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_v_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_v_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_w_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_w_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_w_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_entr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_entr_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_erfcx_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_hermite_polynomial_h_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_hermite_polynomial_h_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_hermite_polynomial_h_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_hermite_polynomial_he_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_hermite_polynomial_he_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_hermite_polynomial_he_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i0e_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i1e_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i1e_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i1e_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i1e_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_laguerre_polynomial_l_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_legendre_polynomial_p_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_legendre_polynomial_p_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_legendre_polynomial_p_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_legendre_polynomial_p_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_log_ndtr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_log_ndtr_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_log_ndtr_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_i0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_i1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_k0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_k1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_ndtri_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_ndtri_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_ndtri_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_scaled_modified_bessel_k0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_scaled_modified_bessel_k0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_scaled_modified_bessel_k1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_scaled_modified_bessel_k1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_scaled_modified_bessel_k1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_u_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_u_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_v_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_w_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_spherical_bessel_j0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_spherical_bessel_j0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_spherical_bessel_j0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_xlog1py_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_xlog1py_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_xlog1py_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_zeta_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_list_args_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_list_args_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sqrt_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sqrt_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_square_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_multiple_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_multiple_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_stack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_stack_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_stack_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_stack_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_mean_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_unbiased_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_unbiased_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sub_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sub_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sum_to_size_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_svd_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_svd_lowrank_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_t_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_t_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_t_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_take_along_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_take_along_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_take_along_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_take_along_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_take_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_take_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_take_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_take_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tan_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tan_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tanh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tanh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tanh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tanh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tanh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tensor_split_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tensor_split_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tensor_split_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tensor_split_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_to_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_to_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_to_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_to_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_to_sparse_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_to_sparse_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_topk_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_topk_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trace_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_transpose_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_transpose_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_transpose_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trapezoid_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trapz_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trapz_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tril_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tril_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tril_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tril_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tril_indices_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_triu_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_triu_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_triu_indices_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_true_divide_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_true_divide_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_true_divide_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_true_divide_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_true_divide_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_true_divide_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_true_divide_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trunc_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trunc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trunc_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trunc_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unbind_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unbind_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unbind_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unbind_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unbind_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unbind_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unbind_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unflatten_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unflatten_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unflatten_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unflatten_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_uniform_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_uniform_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unique_consecutive_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unique_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unique_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsafe_chunk_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsafe_chunk_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsafe_chunk_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsafe_chunk_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsafe_chunk_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsafe_split_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsafe_split_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsqueeze_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsqueeze_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsqueeze_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsqueeze_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsqueeze_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsqueeze_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsqueeze_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsqueeze_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsqueeze_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_var_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_var_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_var_mean_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_var_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_var_mean_unbiased_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_var_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_var_unbiased_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vdot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vdot_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vdot_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_as_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_as_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_as_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_as_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_as_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_as_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vsplit_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vsplit_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vsplit_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vstack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vstack_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_where_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_where_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_where_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_where_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_where_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_xlogy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_xlogy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zero__cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zero__cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zero__cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_H_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_H_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_H_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_T_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_T_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_T_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_T_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_T_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_T_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_T_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_T_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___getitem___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___getitem___cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___getitem___cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___radd___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___radd___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___radd___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___radd___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___radd___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rdiv___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rdiv___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rdiv___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmatmul___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmatmul___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmatmul___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmod___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmod___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmod___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmul___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmul___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmul___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmul___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmul___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___ror___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___ror___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___ror___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rpow___cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rpow___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rsub___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rsub___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rsub___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rxor___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rxor___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rxor___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rxor___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__batch_norm_with_update_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__chunk_cat_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__chunk_cat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_acos_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_acos_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_acos_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_acos_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_add_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_add_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_addcdiv_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_addcdiv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_addcdiv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_addcmul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_addcmul_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_addcmul_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_addcmul_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_addcmul_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_asin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_asin_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_asin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_asin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_atan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_atan_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_atan_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_ceil_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_clamp_max_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_clamp_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_clamp_max_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_clamp_max_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_clamp_min_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_clamp_min_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_clamp_min_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_clamp_min_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_clamp_min_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_clamp_min_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_clamp_min_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_cos_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_cosh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_cosh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_cosh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_cosh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_div_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_div_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_div_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_div_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_erf_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_erf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_erf_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_erfc_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_erfc_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_erfc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_exp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_exp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_exp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_exp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_expm1_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_expm1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_floor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_floor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_floor_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_floor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_frac_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_frac_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_frac_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_lerp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_lerp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_lerp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_lgamma_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_lgamma_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log10_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log10_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log10_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log10_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log1p_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log1p_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log1p_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log1p_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_max_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_max_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_maximum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_maximum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_maximum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_minimum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_mul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_mul_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_mul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_mul_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_mul_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_neg_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_neg_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_norm_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_pow_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_pow_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_pow_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_pow_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_reciprocal_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_rsqrt_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sigmoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sigmoid_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sign_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sign_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sign_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sign_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sinh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sinh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sinh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sinh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sqrt_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sqrt_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sqrt_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sub_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sub_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_tan_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_tan_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_tanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_tanh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_tanh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_trunc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_trunc_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_zero_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_zero_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_zero_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_zero_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__native_batch_norm_legit_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__softmax_backward_data_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_put_accumulate_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_put_accumulate_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_put_accumulate_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_put_accumulate_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_put_accumulate_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__upsample_bilinear2d_aa_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__upsample_bilinear2d_aa_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_abs_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_abs_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_abs_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_abs_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_acos_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_acos_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_acos_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_acos_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_acosh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_acosh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_acosh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_acosh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_add_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addbmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addbmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addbmm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addcdiv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addcdiv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addcdiv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addcdiv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addcmul_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addcmul_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addcmul_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmm_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmm_decomposed_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmm_decomposed_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmm_decomposed_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addr_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addr_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_alias_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_alias_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_alias_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_all_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_all_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_allclose_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_amax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_amax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_amin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_amin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_amin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_aminmax_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_aminmax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_angle_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_angle_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_angle_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_angle_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_angle_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_angle_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_any_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_any_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_any_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_any_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_arange_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_arange_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argmax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argmin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argmin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argmin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argsort_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argsort_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argwhere_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argwhere_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argwhere_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argwhere_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argwhere_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_partial_views_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_partial_views_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_asin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_asin_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_asin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_asin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_asin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_asin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_asinh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_asinh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atan2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atan2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atan2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atan_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atan_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atan_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atanh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atanh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_1d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_1d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_1d_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_1d_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_2d_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_2d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_2d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_3d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_3d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_3d_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_baddbmm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_baddbmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_baddbmm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_baddbmm_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_baddbmm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bfloat16_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bfloat16_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_and_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_left_shift_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_not_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_or_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_right_shift_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_xor_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_xor_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_block_diag_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_block_diag_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_block_diag_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_block_diag_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bmm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bmm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bool_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bool_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bool_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bool_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_broadcast_tensors_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_broadcast_tensors_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_broadcast_tensors_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_broadcast_tensors_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_broadcast_to_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_broadcast_to_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_broadcast_to_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_broadcast_to_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_broadcast_to_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bucketize_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bucketize_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_byte_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_byte_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_byte_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_byte_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cartesian_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cartesian_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cat_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cat_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cauchy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cdist_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cdouble_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ceil_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ceil_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cfloat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cfloat_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cfloat_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_chalf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_chalf_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_chalf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_char_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_char_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_char_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cholesky_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cholesky_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cholesky_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cholesky_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_chunk_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_chunk_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_chunk_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_chunk_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_chunk_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_chunk_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_max_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_max_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_max_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_min_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_min_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_min_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_min_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clone_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_column_stack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_column_stack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_column_stack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_column_stack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_column_stack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_combinations_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_combinations_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_combinations_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_combinations_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_complex_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_conj_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_conj_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_conj_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_conj_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_conj_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_conj_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_conj_physical_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_conj_physical_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_constant_pad_nd_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_constant_pad_nd_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_constant_pad_nd_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_contiguous_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_contiguous_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_contiguous_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_copysign_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_copysign_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_corrcoef_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_corrcoef_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cos_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cos_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cos_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cos_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cosh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cosh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cosh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cosh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cosh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_count_nonzero_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_count_nonzero_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_count_nonzero_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cross_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cross_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cross_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cummax_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cummin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cummin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cummin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumprod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumprod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumsum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumsum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumsum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumulative_trapezoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diag_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diag_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diag_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diag_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diag_embed_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diag_embed_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diag_embed_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diag_embed_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diag_embed_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diag_embed_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagflat_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagflat_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagflat_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diff_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diff_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_digamma_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_digamma_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_digamma_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_digamma_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dist_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dist_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_floor_rounding_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_no_rounding_mode_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_no_rounding_mode_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_trunc_rounding_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dot_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dot_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dot_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_double_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_double_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_double_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_double_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_double_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dsplit_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dsplit_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dsplit_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dstack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dstack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_permuted_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_permuted_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_permuted_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_strided_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_strided_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_strided_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eq_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eq_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_equal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_equal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erfc_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erfc_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erfc_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erfc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erfinv_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erfinv_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exp2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_as_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_as_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_as_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expm1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expm1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expm1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expm1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exponential_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eye_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eye_cpu_float8_e5m2, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eye_cpu_float8_e5m2fnuz, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eye_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fft2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fft_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fft_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fft_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fftshift_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fftshift_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fftshift_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfft_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfft_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfftn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifft2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifft2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifft_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ihfft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ihfft_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ihfft_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ihfft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ihfftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ihfftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfft2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfft_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_rfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_rfft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_rfft_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_rfft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_rfft_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_rfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_rfftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_rfftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_rfftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fill_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fill_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flatten_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flatten_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flip_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flip_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flip_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flip_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flip_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fliplr_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flipud_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flipud_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flipud_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_float_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_float_power_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_float_power_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_float_power_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_floor_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_floor_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_floor_divide_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_floor_divide_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_floor_divide_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fmax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fmin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fmin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fmod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fmod_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fmod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_frac_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_frexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_frexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_like_cpu_uint16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gcd_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ge_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ge_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ge_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_geometric_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_geometric_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_geqrf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_geqrf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_geqrf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gradient_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_grid_sampler_2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_grid_sampler_2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_grid_sampler_2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_grid_sampler_3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_grid_sampler_3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gt_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gt_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_half_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_half_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_half_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hash_tensor_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hash_tensor_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_heaviside_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_heaviside_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_histc_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hsplit_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hsplit_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hsplit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hsplit_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hstack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hstack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hstack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hstack_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hstack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hstack_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hypot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_i0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_i0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_igamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_add_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_add_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_add_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_add_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_fill_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_fill_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_fill_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_fill_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_put_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_put_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_put_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_amax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_amax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_amin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_mean_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_select_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_inner_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_inner_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_inner_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_inner_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_inner_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_inner_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_int_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_int_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_int_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_int_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isclose_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isclose_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isclose_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isfinite_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isfinite_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isinf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isinf_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isnan_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isnan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isneginf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isposinf_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isposinf_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isreal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isreal_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isreal_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_item_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_item_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_item_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_2inputs_2outputs_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_2inputs_2outputs_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_4inputs_with_extra_args_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_4inputs_with_extra_args_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_4inputs_with_extra_args_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_binary_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_binary_return_by_ref_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_binary_return_by_ref_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_binary_return_by_ref_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_binary_return_by_ref_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_unary_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_unary_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_unary_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_unary_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_kron_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_kron_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_kron_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_kthvalue_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lcm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ldexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ldexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ldexp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_le_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_le_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_le_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_le_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lerp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lerp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lgamma_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_cholesky_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_cholesky_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_cholesky_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_cond_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_cond_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_cross_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_cross_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_det_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_diagonal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_diagonal_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_diagonal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_diagonal_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_eig_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_eigh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_eigvals_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_eigvalsh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_eigvalsh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_eigvalsh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_householder_product_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_householder_product_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_inv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_inv_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_inv_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_ldl_factor_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_ldl_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_ldl_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_ldl_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_lstsq_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_lstsq_grad_oriented_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_lstsq_grad_oriented_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_lu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_lu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_lu_factor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_lu_factor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_lu_factor_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_lu_factor_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_matrix_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_matrix_power_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_matrix_power_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_matrix_rank_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_matrix_rank_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_multi_dot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_multi_dot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_multi_dot_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_multi_dot_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_norm_subgradients_at_zero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_norm_subgradients_at_zero_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_norm_subgradients_at_zero_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_pinv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_pinv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_pinv_hermitian_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_pinv_hermitian_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_qr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_slogdet_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_slogdet_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_solve_triangular_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_svd_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_svdvals_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_vander_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_vander_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_vander_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_vecdot_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_vecdot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_vector_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_vector_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linspace_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linspace_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linspace_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linspace_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log10_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log10_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log10_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log10_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log10_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log1p_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log1p_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log1p_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_normal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_softmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_softmax_with_dtype_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_softmax_with_dtype_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_softmax_with_dtype_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_softmax_with_dtype_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logaddexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logaddexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logaddexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logcumsumexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logcumsumexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logcumsumexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logcumsumexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logdet_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_and_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_not_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_not_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_not_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_or_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_or_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_or_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_or_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_xor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_xor_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_xor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logit_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logit_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logit_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logspace_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logspace_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logspace_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logspace_tensor_overload_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logspace_tensor_overload_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logsumexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logsumexp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logsumexp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_long_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_long_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_long_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_long_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_long_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lt_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lt_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lu_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lu_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lu_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lu_unpack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mH_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mH_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mH_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mT_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mT_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mT_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_amax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_amax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_amax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_amin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_argmax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_argmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_argmin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_argmin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_cumprod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_cumprod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_cumprod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_cumsum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_cumsum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_cumsum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_fill_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_fill_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_log_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_log_softmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_logsumexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_logsumexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_logsumexp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_median_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_median_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_normalize_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_select_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_select_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_select_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_softmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_std_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_sum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_sum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_sum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_var_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_var_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_var_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_matmul_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_matmul_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_matrix_exp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_binary_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_binary_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_binary_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_pool2d_with_indices_backward_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_pool2d_with_indices_backward_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_pool2d_with_indices_backward_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_reduction_no_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_reduction_no_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_reduction_no_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_reduction_no_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_reduction_with_dim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_reduction_with_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_reduction_with_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_reduction_with_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_reduction_with_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_maximum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_maximum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_median_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_median_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_meshgrid_list_of_tensors_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_meshgrid_list_of_tensors_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_meshgrid_list_of_tensors_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_meshgrid_list_of_tensors_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_meshgrid_list_of_tensors_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_meshgrid_variadic_tensors_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_meshgrid_variadic_tensors_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_meshgrid_variadic_tensors_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_binary_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_binary_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_binary_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_binary_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_binary_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_binary_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_reduction_no_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_reduction_with_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_minimum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_minimum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mode_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mode_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mode_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mode_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_movedim_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_movedim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_msort_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_msort_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mul_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mul_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mul_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mv_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nan_to_num_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nan_to_num_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nanmean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nanmedian_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nansum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nansum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nansum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_native_batch_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_native_dropout_backward_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_native_dropout_backward_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ne_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ne_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ne_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_neg_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_neg_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_empty_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_empty_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_empty_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_empty_strided_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_empty_strided_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_empty_strided_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_full_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_full_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_full_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_ones_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_ones_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_ones_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_ones_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_ones_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_zeros_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_zeros_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_zeros_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_zeros_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_zeros_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nextafter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nextafter_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_adaptive_avg_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_adaptive_avg_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_adaptive_avg_pool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_adaptive_avg_pool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_adaptive_max_pool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_alpha_dropout_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_avg_pool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_avg_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_avg_pool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_batch_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_bilinear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_bilinear_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_bilinear_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_binary_cross_entropy_with_logits_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_celu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_celu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_channel_shuffle_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_channel_shuffle_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_channel_shuffle_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_channel_shuffle_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_channel_shuffle_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv1d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv3d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv3d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv_transpose1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv_transpose1d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv_transpose2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv_transpose2d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv_transpose2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv_transpose3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_cosine_embedding_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_cosine_embedding_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_cosine_embedding_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_cosine_similarity_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_cross_entropy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_cross_entropy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_ctc_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_dropout2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_dropout3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_dropout3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_dropout_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_elu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_embedding_bag_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_embedding_bag_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_embedding_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_embedding_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_embedding_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_fractional_max_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_gelu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_glu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_glu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_grid_sample_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_group_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_group_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_hardshrink_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_hardsigmoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_hardswish_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_hardswish_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_hardtanh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_hardtanh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_hinge_embedding_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_hinge_embedding_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_huber_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_huber_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_instance_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_area_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_bicubic_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_bicubic_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_bilinear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_linear_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_linear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_linear_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_nearest-exact_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_nearest_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_nearest_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_trilinear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_kl_div_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_l1_loss_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_l1_loss_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_l1_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_l1_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_layer_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_leaky_relu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_linear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_linear_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_linear_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_logsigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_logsigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_margin_ranking_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_margin_ranking_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_pool2d_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_pool2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_pool3d_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_unpool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_unpool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_unpool1d_grad_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_unpool1d_grad_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_unpool1d_grad_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_unpool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_unpool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_unpool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_unpool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_mse_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_multi_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_multilabel_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_nll_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_normalize_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_normalize_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_normalize_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_circular_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_constant_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_constant_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_constant_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_constant_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_constant_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_reflect_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_reflect_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_replicate_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_replicate_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_replicate_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_replicate_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_replicate_negative_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_replicate_negative_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_replicate_negative_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pairwise_distance_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pairwise_distance_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pairwise_distance_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pixel_shuffle_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pixel_shuffle_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pixel_shuffle_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pixel_unshuffle_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_poisson_nll_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_prelu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_relu6_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_relu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_relu_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_rms_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_rrelu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_rrelu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_selu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_soft_margin_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_soft_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softmin_with_dtype_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softmin_with_dtype_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softmin_with_dtype_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softmin_with_dtype_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softmin_with_dtype_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softmin_with_dtype_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softplus_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softplus_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softsign_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_tanhshrink_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_tanhshrink_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_tanhshrink_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_tanhshrink_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_threshold_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_threshold_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_threshold_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_triplet_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_triplet_margin_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_unfold_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_unfold_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_upsample_bilinear_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_upsample_nearest_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nonzero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nonzero_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nonzero_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nonzero_static_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nonzero_static_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nonzero_static_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nonzero_static_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nonzero_static_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_norm_fro_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_norm_fro_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_norm_fro_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_norm_inf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_norm_inf_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_norm_inf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_norm_nuc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_normal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_normal_in_place_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_normal_in_place_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_normal_in_place_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ones_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ones_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ones_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ones_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ones_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ones_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ones_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ormqr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_pca_lowrank_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_permute_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_permute_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_permute_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_permute_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_permute_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_permute_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_permute_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_0_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_4_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_4_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_positive_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_positive_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_positive_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_pow_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_pow_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_pow_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_pow_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_prod_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_prod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_prod_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_put_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_put_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_put_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_put_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_put_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_put_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rad2deg_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rand_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rand_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rand_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randint_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randint_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randint_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randn_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randn_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ravel_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ravel_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ravel_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_real_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_real_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_real_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_real_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reciprocal_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reciprocal_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_remainder_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_remainder_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_remainder_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_remainder_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_renorm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_renorm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_repeat_interleave_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_repeat_interleave_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_repeat_interleave_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reshape_as_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reshape_as_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reshape_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reshape_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resize__cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resize__cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resize__cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resize_as__cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resolve_conj_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resolve_conj_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resolve_conj_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resolve_conj_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resolve_neg_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resolve_neg_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resolve_neg_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resolve_neg_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resolve_neg_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_roll_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_roll_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_roll_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rot90_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rot90_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rot90_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rot90_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_round_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_round_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_round_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_round_decimals_0_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rsqrt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rsqrt_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rsqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rsqrt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rsub_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_add_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_add_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_add_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_add_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_add_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_amax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_amax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_amax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_amin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_amin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_mean_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_mean_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_prod_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_sum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_sum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_sum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_sum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_sum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_searchsorted_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_select_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_select_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_select_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_select_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_select_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sgn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sgn_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sgn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_short_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_short_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_short_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_short_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_short_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_short_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sigmoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sigmoid_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signal_windows_bartlett_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signal_windows_blackman_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signal_windows_blackman_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signal_windows_cosine_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signal_windows_general_cosine_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signal_windows_hamming_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signal_windows_hann_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signbit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signbit_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sinc_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sinc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sinc_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sinh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sinh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sinh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_slice_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_slice_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_slice_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_slice_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_softmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_softmax_with_dtype_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_softmax_with_dtype_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_softmax_with_dtype_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_softmax_with_dtype_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sort_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sort_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sort_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sort_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sparse_sampled_addmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_airy_ai_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_airy_ai_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_airy_ai_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_j0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_j1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_y0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_y0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_y1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_y1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_y1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_t_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_t_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_t_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_u_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_v_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_v_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_w_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_entr_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_entr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_entr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_erfcx_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_erfcx_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_hermite_polynomial_h_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_hermite_polynomial_he_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_hermite_polynomial_he_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_hermite_polynomial_he_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i0e_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i0e_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i0e_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i0e_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i0e_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i1_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i1e_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i1e_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_laguerre_polynomial_l_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_legendre_polynomial_p_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_log_ndtr_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_i1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_i1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_i1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_k0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_ndtri_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_ndtri_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_scaled_modified_bessel_k0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_scaled_modified_bessel_k1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_scaled_modified_bessel_k1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_t_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_t_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_t_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_v_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_w_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_w_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_spherical_bessel_j0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_xlog1py_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_xlog1py_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_xlog1py_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_zeta_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_zeta_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_with_sizes_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_with_sizes_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_with_sizes_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_with_sizes_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_with_sizes_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_with_sizes_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_with_sizes_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sqrt_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_square_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_square_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_multiple_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_multiple_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_multiple_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_multiple_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_multiple_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_multiple_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_stack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_stack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_stack_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_stack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_std_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_std_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_std_mean_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_std_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_std_mean_unbiased_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_std_unbiased_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sub_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sub_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sub_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sum_to_size_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sum_to_size_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sum_to_size_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sum_to_size_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_svd_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_svd_lowrank_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_svd_lowrank_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_t_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_t_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_t_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_t_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_t_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_t_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_t_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_take_along_dim_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_take_along_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_take_along_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_take_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_take_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tan_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tanh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tanh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tanh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tanh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tensor_split_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tensor_split_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tensor_split_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tensor_split_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tile_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tile_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tile_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_to_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_to_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_to_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_to_sparse_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_to_sparse_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_topk_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_torch__scaled_mm_cpu_float8_e4m3fnuz, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_torch__scaled_mm_cpu_float8_e5m2, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_torch__scaled_mm_cpu_float8_e5m2fnuz, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trace_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_transpose_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_transpose_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_transpose_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_transpose_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_transpose_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trapezoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trapezoid_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trapezoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trapezoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trapezoid_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trapezoid_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trapz_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trapz_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trapz_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trapz_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_triangular_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tril_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tril_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tril_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_triu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_true_divide_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_true_divide_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_true_divide_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_true_divide_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trunc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trunc_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trunc_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trunc_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unflatten_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unflatten_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unflatten_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unflatten_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unflatten_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unflatten_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unfold_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unfold_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unfold_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_uniform_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unique_consecutive_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unique_consecutive_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unique_consecutive_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unique_consecutive_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unique_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unique_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unique_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unique_cpu_uint32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unravel_index_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsafe_chunk_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsafe_chunk_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsafe_split_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsafe_split_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsafe_split_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsafe_split_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_var_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_var_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_var_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_var_unbiased_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vdot_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_as_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_as_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_as_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_as_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_as_real_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vsplit_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vsplit_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vsplit_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vstack_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vstack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vstack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vstack_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_where_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_where_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_where_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_where_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_xlogy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_xlogy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zero__cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zero__cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zero__cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zeros_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zeros_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zeros_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zeros_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zeros_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zeros_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zeros_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zeros_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zeros_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zeros_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_H_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_H_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_H_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_H_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_H_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_T_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_T_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_T_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___getitem___cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___getitem___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___radd___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___radd___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___radd___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___radd___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rand___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rand___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rdiv___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rdiv___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rmatmul___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rmatmul___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rmatmul___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rmul___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rmul___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rmul___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rmul___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rpow___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rpow___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rpow___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rpow___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rsub___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rxor___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__batch_norm_with_update_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__batch_norm_with_update_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__batch_norm_with_update_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__chunk_cat_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__chunk_cat_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_abs_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_acos_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_acos_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_acos_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_add_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_add_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_add_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_add_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_add_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_addcdiv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_addcdiv_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_addcdiv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_addcdiv_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_addcdiv_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_addcmul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_addcmul_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_asin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_asin_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_asin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_asin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_asin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_asin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_atan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_ceil_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_ceil_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_ceil_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_clamp_max_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_clamp_max_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_clamp_max_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_clamp_min_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_clamp_min_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_clamp_min_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_clamp_min_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_cos_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_div_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_div_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_div_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_erf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_erf_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_erf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_erfc_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_erfc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_exp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_exp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_exp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_expm1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_expm1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_expm1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_expm1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_floor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_floor_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_floor_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_floor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_frac_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_frac_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_frac_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_lerp_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_lerp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_lerp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_lerp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_lerp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_lerp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_lgamma_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_lgamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_lgamma_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_lgamma_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log10_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log10_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log1p_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log1p_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log1p_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log1p_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_max_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_maximum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_maximum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_maximum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_maximum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_minimum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_minimum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_minimum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_minimum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_mul_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_mul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_mul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_mul_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_mul_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_neg_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_neg_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_norm_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_pow_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_pow_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_reciprocal_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_round_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_round_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_round_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_round_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_round_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_rsqrt_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sigmoid_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sigmoid_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sign_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sign_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sinh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sinh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sinh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sinh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sqrt_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sqrt_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sub_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sub_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sub_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sub_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tan_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tan_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tan_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tanh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tanh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_trunc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_trunc_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_trunc_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_trunc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_zero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_zero_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_zero_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_zero_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_zero_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_zero_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__native_batch_norm_legit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__native_batch_norm_legit_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__softmax_backward_data_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__softmax_backward_data_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__unsafe_masked_index_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__unsafe_masked_index_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__unsafe_masked_index_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__unsafe_masked_index_put_accumulate_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__unsafe_masked_index_put_accumulate_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__unsafe_masked_index_put_accumulate_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__unsafe_masked_index_put_accumulate_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__unsafe_masked_index_put_accumulate_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__unsafe_masked_index_put_accumulate_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__unsafe_masked_index_put_accumulate_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__upsample_bilinear2d_aa_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__upsample_bilinear2d_aa_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_abs_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_abs_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_acos_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_acos_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_acos_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_acos_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_acosh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_acosh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_add_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_add_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addbmm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addbmm_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addcdiv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addcdiv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addcmul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addcmul_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmm_decomposed_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmm_decomposed_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmm_decomposed_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmv_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addr_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addr_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addr_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addr_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_alias_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_alias_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_alias_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_H_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides___radd___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides___rdiv___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__batch_norm_with_update_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__chunk_cat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_ceil_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_cos_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_cosh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_erfc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_lgamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_log1p_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_log2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_mul_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_reciprocal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_sigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_sin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_tanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_trunc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__segment_reduce_lengths_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__segment_reduce_offsets_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_abs_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_addcdiv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_addmv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_addr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_any_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_argmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_argsort_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_as_strided_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_as_strided_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_bernoulli_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_bool_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_broadcast_shapes_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_cauchy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_chalf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_char_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_cholesky_inverse_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_column_stack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_cosh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_count_nonzero_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_cross_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_cumprod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_deg2rad_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_diag_embed_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_diagonal_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_digamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_empty_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_exp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_expm1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fft_hfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fft_hfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fft_ifft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fft_ihfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fft_irfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fft_rfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_flip_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_float_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_float_power_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_floor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_floor_divide_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fmod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_full_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_full_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_igammac_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_index_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_index_fill_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_index_reduce_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_index_select_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_int_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_item_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_jiterator_binary_return_by_ref_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_kthvalue_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_le_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_lerp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_cholesky_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_cond_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_eig_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_eigvals_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_eigvalsh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_ldl_factor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_lstsq_grad_oriented_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_lu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_lu_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_matrix_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_matrix_rank_hermitian_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_multi_dot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_log10_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_log1p_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_log_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_log_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_logaddexp2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_logcumsumexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_logical_and_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_logspace_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_lu_unpack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_mH_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_mT_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_masked_fill_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_masked_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_masked_select_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_masked_var_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_max_binary_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_max_pool2d_with_indices_backward_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_max_reduction_no_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_median_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_min_reduction_with_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_movedim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_mul_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_native_batch_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_native_layer_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_new_empty_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_bilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_conv2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_conv_transpose3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_cross_entropy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_dropout2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_embedding_bag_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_glu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_hardshrink_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_hardsigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_interpolate_linear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_interpolate_trilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_l1_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_mish_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_mse_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_multi_head_attention_forward_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_one_hot_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_pad_circular_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_pad_replicate_negative_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_pixel_unshuffle_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_rms_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_silu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_softshrink_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_tanhshrink_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nonzero_static_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_normal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_normal_in_place_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_normal_number_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_ones_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_ormqr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_pca_lowrank_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_pinverse_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_polar_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_polygamma_polygamma_n_4_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_positive_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_real_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_resize_as__cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_rot90_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_round_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_round_decimals_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_rsqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_rsub_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_scatter_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_scatter_reduce_sum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_sign_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_signal_windows_bartlett_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_signal_windows_blackman_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_signal_windows_general_cosine_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_signal_windows_nuttall_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_sinh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_bessel_j0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_bessel_y1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_i1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_i1e_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_legendre_polynomial_p_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_ndtri_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_scaled_modified_bessel_k1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_xlog1py_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_zeta_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_split_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_split_list_args_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_sum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_take_along_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_take_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_tanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_tensor_split_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_topk_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_torch__scaled_mm_cpu_float8_e4m3fn, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_trapezoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_triangular_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_tril_indices_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_true_divide_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_trunc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_unbind_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_unfold_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_vdot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_view_as_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_allclose_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_allclose_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_allclose_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_aminmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_aminmax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_angle_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_angle_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_angle_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_angle_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_any_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_any_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_arange_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_arange_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argmax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argmin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argsort_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argsort_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argsort_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argwhere_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argwhere_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argwhere_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_partial_views_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_partial_views_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_partial_views_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_scatter_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_asin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_asinh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_asinh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_asinh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_asinh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_asinh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atan2_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atan2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atan2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atan_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atan_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atan_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atanh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_1d_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_1d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_2d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_3d_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_3d_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_baddbmm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_baddbmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_baddbmm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_baddbmm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_baddbmm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bernoulli_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bfloat16_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bfloat16_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bfloat16_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bincount_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bincount_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_left_shift_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_not_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_or_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_right_shift_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_right_shift_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_block_diag_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_block_diag_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_block_diag_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_block_diag_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_block_diag_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bmm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bmm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bool_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bool_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bool_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_broadcast_tensors_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_broadcast_tensors_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_broadcast_tensors_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_broadcast_to_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_broadcast_to_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bucketize_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bucketize_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_byte_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_byte_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_byte_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cartesian_prod_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cartesian_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cartesian_prod_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cat_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cat_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cat_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cdouble_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cdouble_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cdouble_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cdouble_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ceil_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ceil_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ceil_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cfloat_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cfloat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cfloat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cfloat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cfloat_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_chalf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_chalf_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_chalf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_chalf_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_char_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_char_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_char_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cholesky_inverse_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cholesky_inverse_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cholesky_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cholesky_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cholesky_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_chunk_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_chunk_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_max_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_max_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_max_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_max_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_min_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_min_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clone_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clone_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clone_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_column_stack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_column_stack_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_column_stack_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_column_stack_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_combinations_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_combinations_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_complex_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_conj_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_conj_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_conj_physical_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_conj_physical_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_constant_pad_nd_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_constant_pad_nd_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_constant_pad_nd_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_contiguous_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_contiguous_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_contiguous_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_contiguous_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_contiguous_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_contiguous_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_copysign_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_copysign_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_copysign_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_corrcoef_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_corrcoef_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_corrcoef_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cos_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cos_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cos_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cos_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cos_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cos_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cosh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cosh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_count_nonzero_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_count_nonzero_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_count_nonzero_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_count_nonzero_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_count_nonzero_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cov_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cov_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cov_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cross_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cross_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cross_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cross_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cummax_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cummax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cummax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cummin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cummin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cummin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumprod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumprod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumsum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumsum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumulative_trapezoid_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumulative_trapezoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumulative_trapezoid_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_deg2rad_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_deg2rad_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_deg2rad_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_deg2rad_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diag_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diag_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diag_embed_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diag_embed_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diag_embed_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diag_embed_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diag_embed_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagflat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagflat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagflat_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_scatter_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diff_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_digamma_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_digamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_digamma_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_digamma_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dist_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_floor_rounding_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_floor_rounding_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_floor_rounding_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_floor_rounding_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_floor_rounding_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dot_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_double_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_double_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dsplit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dsplit_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dsplit_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dstack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dstack_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dstack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dstack_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_einsum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_permuted_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_permuted_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_permuted_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_permuted_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_strided_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_strided_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_strided_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_strided_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_strided_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eq_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eq_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_equal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_equal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_equal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_equal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_equal_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_equal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erf_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erf_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erfc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erfc_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erfc_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_exp2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_exp2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_exp2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_exp2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_exp_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_exp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_exp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_exp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_exp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_as_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_as_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expm1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eye_cpu_float8_e4m3fnuz, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eye_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eye_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fft_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fft_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fft_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fft_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fftshift_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fftshift_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fftshift_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fftshift_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfft2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfft_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfft_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfft_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifft2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifft_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifft_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifft_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifft_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifftn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifftshift_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifftshift_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifftshift_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ihfft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ihfft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ihfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ihfftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ihfftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ihfftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfft_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfft_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fill_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fill_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fill_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flatten_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flatten_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flatten_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flatten_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flatten_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flatten_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flip_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flip_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fliplr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fliplr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flipud_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flipud_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flipud_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_float_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_float_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_float_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_float_power_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_float_power_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_float_power_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_floor_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_floor_divide_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_floor_divide_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_floor_divide_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_floor_divide_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fmax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fmod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_frac_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_full_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_full_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_full_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_full_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_full_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_full_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gather_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gather_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gather_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gather_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gather_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gcd_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gcd_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ge_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ge_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ge_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ge_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_geometric_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_geometric_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_geometric_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_geqrf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gradient_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_grid_sampler_2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gt_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gt_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_half_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_half_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hash_tensor_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hash_tensor_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hash_tensor_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hash_tensor_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hash_tensor_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_heaviside_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_heaviside_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_heaviside_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_heaviside_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_histogram_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_histogram_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hsplit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hsplit_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hsplit_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hstack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hstack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hypot_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_i0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_i0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_igamma_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_igammac_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_add_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_add_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_add_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_add_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_fill_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_fill_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_fill_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_fill_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_amax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_amin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_amin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_amin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_amin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_mean_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_select_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_select_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_select_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_inner_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_inner_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_int_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_int_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_int_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_int_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_int_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_int_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isclose_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isclose_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isclose_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isclose_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isfinite_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isfinite_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isfinite_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isfinite_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isinf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isinf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isnan_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isnan_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isnan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isnan_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isneginf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isneginf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isneginf_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isposinf_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isposinf_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isreal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isreal_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isreal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isreal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isreal_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isreal_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_item_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_item_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_item_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_2inputs_2outputs_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_2inputs_2outputs_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_4inputs_with_extra_args_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_4inputs_with_extra_args_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_4inputs_with_extra_args_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_binary_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_binary_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_binary_return_by_ref_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_binary_return_by_ref_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_binary_return_by_ref_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_binary_return_by_ref_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_unary_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_unary_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_unary_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_unary_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_unary_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_kron_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_kron_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_kron_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_kthvalue_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_kthvalue_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_kthvalue_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_kthvalue_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lcm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lcm_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lcm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ldexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ldexp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ldexp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_le_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_le_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_le_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_le_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lerp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lgamma_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lgamma_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_cholesky_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_cholesky_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_cholesky_ex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_cond_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_cross_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_diagonal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_diagonal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_diagonal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_diagonal_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_diagonal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_eig_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_eig_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_eigh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_eigh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_eigvals_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_eigvalsh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_householder_product_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_inv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_ldl_factor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_ldl_factor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_ldl_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_lstsq_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_lu_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_lu_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_lu_factor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_lu_factor_ex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_lu_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_matrix_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_matrix_rank_hermitian_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_multi_dot_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_norm_subgradients_at_zero_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_pinv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_pinv_hermitian_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_pinv_hermitian_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_pinv_hermitian_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_pinv_singular_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_pinv_singular_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_qr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_slogdet_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_slogdet_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_solve_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_solve_triangular_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_solve_triangular_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_solve_triangular_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_tensorinv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_tensorsolve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_tensorsolve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_tensorsolve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_vander_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_vander_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_vander_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_vecdot_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_vecdot_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_vector_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_vector_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linspace_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linspace_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linspace_tensor_overload_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linspace_tensor_overload_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log10_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log10_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log10_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log10_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log1p_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log1p_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_normal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_softmax_with_dtype_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_softmax_with_dtype_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logaddexp2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logaddexp2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logaddexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logaddexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logaddexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logaddexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logcumsumexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logdet_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logdet_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_and_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_and_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_and_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_and_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_and_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_and_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_not_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_not_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_or_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_or_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_or_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_or_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_xor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_xor_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_xor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logspace_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logspace_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logspace_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logspace_tensor_overload_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logsumexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logsumexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logsumexp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logsumexp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_long_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_long_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lt_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lt_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lt_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lu_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lu_unpack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mH_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mH_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mH_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mT_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_amax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_amax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_amin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_argmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_argmax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_argmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_argmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_argmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_cumsum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_cumsum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_cumsum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_fill_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_log_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_logaddexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_logsumexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_logsumexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_logsumexp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_mean_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_mean_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_median_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_normalize_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_normalize_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_prod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_select_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_select_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_select_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_softmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_std_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_std_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_sum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_sum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_sum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_var_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_var_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_matmul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_matmul_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_matmul_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_matmul_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_matrix_exp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_binary_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_binary_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_binary_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_pool2d_with_indices_backward_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_reduction_no_dim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_reduction_no_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_reduction_no_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_reduction_with_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_reduction_with_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_maximum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_maximum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_maximum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_maximum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mean_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_median_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_median_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_median_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_median_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_median_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_meshgrid_list_of_tensors_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_meshgrid_list_of_tensors_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_meshgrid_variadic_tensors_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_meshgrid_variadic_tensors_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_meshgrid_variadic_tensors_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_meshgrid_variadic_tensors_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_binary_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_reduction_no_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_reduction_no_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_reduction_with_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_reduction_with_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_reduction_with_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_minimum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_minimum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_minimum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_movedim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_movedim_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_movedim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mul_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_multinomial_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mv_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mvlgamma_mvlgamma_p_5_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nan_to_num_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nanmean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nanmedian_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nanmedian_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nanmedian_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nanmedian_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nansum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nansum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nansum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_narrow_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_narrow_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_narrow_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_narrow_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_narrow_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_narrow_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_narrow_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_narrow_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_narrow_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_narrow_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_narrow_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_native_batch_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_native_batch_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_native_dropout_backward_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_native_dropout_backward_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_native_layer_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_native_layer_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ne_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ne_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ne_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ne_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ne_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ne_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_neg_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_neg_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_neg_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_neg_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_neg_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_neg_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_empty_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_empty_strided_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_empty_strided_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_empty_strided_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_full_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_full_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_full_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_full_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_full_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_full_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_ones_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_ones_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_ones_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_ones_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_ones_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_ones_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_zeros_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_zeros_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_zeros_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_zeros_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_zeros_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_adaptive_avg_pool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_adaptive_avg_pool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_adaptive_max_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_adaptive_max_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_alpha_dropout_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_avg_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_avg_pool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_bilinear_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_bilinear_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_celu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_channel_shuffle_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_channel_shuffle_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_channel_shuffle_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv1d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv1d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv_transpose1d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv_transpose1d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv_transpose1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv_transpose2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv_transpose3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv_transpose3d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_cosine_embedding_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_cosine_embedding_loss_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_cosine_embedding_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_cosine_embedding_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_cosine_embedding_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_ctc_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_dropout3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_dropout3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_dropout_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_dropout_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_elu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_elu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_embedding_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_embedding_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_fractional_max_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_fractional_max_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_fractional_max_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_gelu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_gelu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_glu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_glu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_group_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_hardshrink_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_hardsigmoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_hardswish_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_hardtanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_hardtanh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_huber_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_huber_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_instance_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_instance_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_instance_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_area_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_area_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_bicubic_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_nearest_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_nearest_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_trilinear_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_kl_div_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_kl_div_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_l1_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_layer_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_leaky_relu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_linear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_local_response_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_margin_ranking_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_pool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_pool3d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_unpool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_unpool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_unpool1d_grad_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_unpool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_unpool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_unpool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_unpool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_mish_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_mse_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_multi_head_attention_forward_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_normalize_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_circular_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_constant_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_constant_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_constant_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_reflect_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_reflect_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_reflect_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_reflect_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_replicate_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_replicate_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_replicate_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_replicate_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_replicate_negative_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_replicate_negative_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_replicate_negative_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pairwise_distance_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pairwise_distance_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pairwise_distance_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pairwise_distance_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pixel_shuffle_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pixel_shuffle_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pixel_unshuffle_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pixel_unshuffle_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pixel_unshuffle_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pixel_unshuffle_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_poisson_nll_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_poisson_nll_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_poisson_nll_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_poisson_nll_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_relu6_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_relu_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_rms_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_rrelu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_selu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_silu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_silu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_smooth_l1_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_soft_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softmin_with_dtype_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softmin_with_dtype_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softmin_with_dtype_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softmin_with_dtype_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softplus_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softplus_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softshrink_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softsign_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softsign_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softsign_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_tanhshrink_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_tanhshrink_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_tanhshrink_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_tanhshrink_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_tanhshrink_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_threshold_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_threshold_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_threshold_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_threshold_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_triplet_margin_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_triplet_margin_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_unfold_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_unfold_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_upsample_bilinear_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_upsample_nearest_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_upsample_nearest_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nonzero_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nonzero_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nonzero_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nonzero_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nonzero_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nonzero_static_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nonzero_static_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nonzero_static_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_norm_fro_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_norm_fro_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_norm_fro_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_norm_inf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_normal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_normal_in_place_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_normal_in_place_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_normal_number_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ones_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ones_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ones_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ones_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ones_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ones_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ones_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ones_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ormqr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_outer_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_outer_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_outer_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_outer_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_outer_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_pca_lowrank_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_permute_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_permute_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_permute_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_permute_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_permute_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_permute_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_permute_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_0_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_3_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_4_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_positive_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_positive_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_pow_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_pow_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_pow_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_pow_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_pow_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_prod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_prod_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_put_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_put_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_qr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_quantile_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randint_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randint_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randn_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_real_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reciprocal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reciprocal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reciprocal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_remainder_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_remainder_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_remainder_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_renorm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_renorm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_repeat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_repeat_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_repeat_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_repeat_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_repeat_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_repeat_interleave_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_repeat_interleave_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_repeat_interleave_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_repeat_interleave_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_repeat_interleave_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reshape_as_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reshape_as_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reshape_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reshape_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reshape_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reshape_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reshape_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reshape_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resize__cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resize__cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resize__cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resize_as__cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resize_as__cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resize_as__cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resize_as__cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resolve_conj_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resolve_conj_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resolve_conj_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resolve_neg_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resolve_neg_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resolve_neg_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resolve_neg_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resolve_neg_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_roll_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_roll_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_roll_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_roll_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rot90_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rot90_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rot90_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rot90_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rot90_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rot90_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_round_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_round_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_round_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_round_decimals_0_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_round_decimals_0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_round_decimals_3_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_round_decimals_neg_3_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rsqrt_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rsqrt_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rsqrt_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rsqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rsqrt_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rsub_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scalar_tensor_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scalar_tensor_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_add_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_add_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_add_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_add_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_amax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_amin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_sum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_searchsorted_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_searchsorted_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_select_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_select_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_select_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_select_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_select_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_select_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_select_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_select_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sgn_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sgn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sgn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_short_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_short_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_short_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_short_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_short_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sigmoid_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sign_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sign_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signal_windows_exponential_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signal_windows_general_hamming_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signal_windows_hann_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signal_windows_nuttall_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signbit_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sin_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sin_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sinc_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sinc_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sinc_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sinh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sinh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sinh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_slice_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_slice_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_slice_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_slice_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_slice_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_slice_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_slice_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_softmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_softmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_softmax_with_dtype_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sort_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sparse_mm_reduce_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_airy_ai_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_airy_ai_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_j0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_j0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_y0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_y1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_y1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_u_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_u_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_u_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_v_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_w_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_w_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_entr_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_entr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_entr_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_erfcx_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_erfcx_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_erfcx_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_erfcx_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_hermite_polynomial_h_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_hermite_polynomial_h_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_hermite_polynomial_h_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_hermite_polynomial_h_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_i0e_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_i0e_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_i0e_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_i0e_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_i0e_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_i0e_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_i1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_i1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_i1e_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_i1e_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_i1e_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_i1e_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_laguerre_polynomial_l_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_laguerre_polynomial_l_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_legendre_polynomial_p_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_log_ndtr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_log_ndtr_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_log_ndtr_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_i0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_i0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_i0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_i1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_i1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_i1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_i1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_k0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_k0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_k0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_k1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_ndtr_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_ndtr_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_ndtri_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_ndtri_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_ndtri_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_scaled_modified_bessel_k0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_scaled_modified_bessel_k1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_scaled_modified_bessel_k1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_scaled_modified_bessel_k1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_u_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_u_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_v_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_v_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_w_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_w_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_spherical_bessel_j0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_spherical_bessel_j0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_xlog1py_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_zeta_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_list_args_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_list_args_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_list_args_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_with_sizes_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_with_sizes_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_with_sizes_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sqrt_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sqrt_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sqrt_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_square_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_square_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_square_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_square_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_square_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_multiple_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_multiple_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_multiple_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_stack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_stack_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_stack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_stack_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_stack_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_stack_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_std_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_std_unbiased_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_stft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sum_to_size_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sum_to_size_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sum_to_size_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_svd_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_svd_lowrank_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_svd_lowrank_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_t_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_t_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_t_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_t_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_t_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_t_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_take_along_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_take_along_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_take_along_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_take_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_take_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_take_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_take_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_take_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_take_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_take_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tensor_split_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tensor_split_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tensor_split_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tensor_split_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tile_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tile_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tile_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_to_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_to_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_to_sparse_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_topk_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_topk_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_torch__scaled_mm_cpu_float8_e4m3fnuz, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_torch__scaled_mm_cpu_float8_e5m2fnuz, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trace_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trace_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trace_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trapezoid_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trapz_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trapz_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trapz_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tril_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tril_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_triu_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_triu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_triu_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_triu_indices_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_triu_indices_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_true_divide_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_true_divide_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_true_divide_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trunc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trunc_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trunc_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trunc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unflatten_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unfold_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unfold_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unfold_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unfold_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unfold_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unique_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unique_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unique_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsafe_chunk_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsafe_split_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsafe_split_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsafe_split_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsafe_split_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsqueeze_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsqueeze_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsqueeze_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsqueeze_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_var_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_var_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_var_mean_unbiased_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_var_mean_unbiased_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_var_mean_unbiased_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_var_unbiased_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vdot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vdot_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vdot_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vdot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vdot_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vdot_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_as_complex_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_as_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_as_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_as_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_as_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vsplit_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vsplit_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vsplit_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vsplit_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vsplit_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vstack_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vstack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vstack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vstack_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_where_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_where_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_where_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_where_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_xlogy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_xlogy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_xlogy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_xlogy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zero__cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zeros_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zeros_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zeros_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zeros_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_H_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_H_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_T_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_T_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_T_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_T_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_T_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___getitem___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___getitem___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___getitem___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___getitem___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___radd___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___radd___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___radd___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rdiv___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rdiv___cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rdiv___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rdiv___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rdiv___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rmatmul___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rmatmul___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rmatmul___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rmatmul___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rmatmul___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rmul___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rmul___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rmul___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___ror___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___ror___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___ror___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rpow___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rpow___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rpow___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rxor___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__batch_norm_with_update_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__chunk_cat_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__chunk_cat_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__chunk_cat_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__chunk_cat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_abs_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_abs_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_acos_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_acos_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_acos_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_add_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_addcdiv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_addcmul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_addcmul_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_addcmul_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_asin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_asin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_asin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_asin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_asin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_asin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_atan_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_atan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_atan_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_atan_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_atan_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_atan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_ceil_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_ceil_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_ceil_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_clamp_max_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_clamp_max_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_clamp_min_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_clamp_min_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_clamp_min_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_cos_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_cos_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_cos_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_cos_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_cosh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_cosh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_cosh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_cosh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_cosh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_cosh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_div_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_div_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_div_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_erf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_erf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_erf_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_erf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_erfc_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_erfc_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_exp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_exp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_exp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_exp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_expm1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_expm1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_expm1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_expm1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_floor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_floor_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_frac_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_frac_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_lerp_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_lerp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_lerp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_lgamma_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_lgamma_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_lgamma_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log10_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log10_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log10_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log1p_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log1p_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log1p_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log1p_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log1p_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_max_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_max_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_maximum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_maximum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_maximum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_maximum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_minimum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_minimum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_minimum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_minimum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_mul_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_mul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_mul_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_mul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_neg_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_neg_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_norm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_pow_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_pow_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_pow_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_pow_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_reciprocal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_reciprocal_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_round_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_round_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_rsqrt_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_rsqrt_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_rsqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_rsqrt_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sigmoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sigmoid_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sigmoid_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sign_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sign_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sign_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sign_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sin_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sinh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sqrt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sqrt_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sub_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_tan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_tan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_tanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_tanh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_tanh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_tanh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_trunc_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_trunc_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_trunc_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_trunc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_zero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_zero_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_zero_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_zero_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__native_batch_norm_legit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__segment_reduce_lengths_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__segment_reduce_offsets_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__softmax_backward_data_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__softmax_backward_data_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__unsafe_masked_index_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__unsafe_masked_index_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__unsafe_masked_index_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__unsafe_masked_index_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__unsafe_masked_index_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__unsafe_masked_index_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__unsafe_masked_index_put_accumulate_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__unsafe_masked_index_put_accumulate_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__unsafe_masked_index_put_accumulate_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__unsafe_masked_index_put_accumulate_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__unsafe_masked_index_put_accumulate_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_abs_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_acos_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_acos_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_acos_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_acos_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_acos_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_acosh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_acosh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_acosh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_add_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_add_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addbmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addbmm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addbmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addbmm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addbmm_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addbmm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addcmul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addcmul_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmm_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmv_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmv_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addr_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_alias_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_alias_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_alias_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_alias_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_H_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides___radd___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides___rdiv___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides___rmatmul___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__batch_norm_with_update_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__chunk_cat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_abs_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_acos_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_lgamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_log_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_neg_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_pow_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_round_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_rsqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_sin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_tanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_trunc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__native_batch_norm_legit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__upsample_bilinear2d_aa_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_acos_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_addbmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_addcdiv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_addcmul_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_addr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_alias_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_allclose_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_aminmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_as_strided_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_as_strided_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_asinh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_atan2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_baddbmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_bfloat16_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_bitwise_xor_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_broadcast_to_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_bucketize_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_cfloat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_chunk_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_diagonal_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_digamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_dot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_dsplit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_einsum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_empty_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_empty_permuted_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_exp2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_expand_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_fft_hfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_fft_hfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_fft_rfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_fill_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_floor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_fmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_full_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_full_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_gather_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_gt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_hypot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_imag_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_index_fill_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_index_reduce_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_isinf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_isneginf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_item_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_jiterator_2inputs_2outputs_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_kron_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_kthvalue_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_le_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_lerp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_cond_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_cross_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_inv_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_ldl_factor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_matrix_rank_hermitian_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_qr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_tensorsolve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_vander_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_log1p_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_log_normal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_log_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_logaddexp2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_logdet_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_logspace_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_lt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_lu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_lu_unpack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_masked_cumprod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_masked_log_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_masked_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_masked_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_masked_std_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_masked_sum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_matmul_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_movedim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_new_empty_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_new_ones_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nextafter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_avg_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_batch_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_conv2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_conv_transpose2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_elu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_hardsigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_hardswish_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_interpolate_trilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_kl_div_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_linear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_logsigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_max_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_max_unpool2d_grad_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_max_unpool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_nll_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_pairwise_distance_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_pixel_unshuffle_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_rms_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_smooth_l1_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_softmin_with_dtype_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_tanhshrink_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_threshold_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_unfold_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_upsample_nearest_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nonzero_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nonzero_static_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_outer_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_pca_lowrank_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_permute_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_permute_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_polygamma_polygamma_n_1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_pow_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_rad2deg_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_ravel_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_reciprocal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_reshape_as_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_round_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_round_decimals_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_scatter_reduce_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_searchsorted_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_select_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_signal_windows_general_hamming_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_sin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_softmax_with_dtype_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_sort_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_sparse_sampled_addmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_chebyshev_polynomial_t_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_legendre_polynomial_p_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_log_ndtr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_modified_bessel_i0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_modified_bessel_k1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_xlog1py_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_squeeze_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_std_mean_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_sum_to_size_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_tan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_transpose_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_unflatten_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_unfold_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_unfold_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_unique_consecutive_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_var_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_vsplit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_vstack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_where_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_zero__cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_zeros_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_allclose_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_allclose_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_allclose_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_allclose_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_amax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_amax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_amin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_amin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_aminmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_angle_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_angle_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_angle_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_any_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_any_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_any_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_any_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_any_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_any_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_arange_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argmax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argmin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argmin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argsort_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argwhere_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argwhere_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_partial_views_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_partial_views_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_asin_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_asin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_asin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_asinh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_asinh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_asinh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atan2_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atan2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atan2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atan_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atanh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atanh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atanh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atanh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atanh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_2d_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_2d_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_3d_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_3d_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_3d_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_3d_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_baddbmm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_baddbmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_baddbmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_baddbmm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_baddbmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_baddbmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_baddbmm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bernoulli_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bfloat16_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bfloat16_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bfloat16_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bfloat16_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bfloat16_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bfloat16_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bfloat16_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_and_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_or_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_right_shift_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_right_shift_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_right_shift_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_block_diag_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_block_diag_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_block_diag_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_block_diag_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bmm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bool_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bool_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bool_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bool_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bool_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bool_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bool_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_broadcast_shapes_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_broadcast_tensors_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_broadcast_tensors_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_broadcast_to_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_broadcast_to_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_broadcast_to_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_byte_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_byte_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cartesian_prod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cartesian_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cartesian_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cat_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cdist_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cdouble_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cdouble_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cdouble_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cdouble_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ceil_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cfloat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cfloat_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_chalf_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_chalf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_chalf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_chalf_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_chalf_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_char_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_char_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_char_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_char_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_char_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cholesky_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cholesky_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cholesky_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cholesky_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_chunk_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_chunk_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_chunk_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_chunk_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_max_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_max_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_min_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_min_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clone_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clone_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clone_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clone_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_column_stack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_column_stack_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_column_stack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_column_stack_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_combinations_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_combinations_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_combinations_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_combinations_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_complex_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_complex_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_conj_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_conj_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_conj_physical_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_conj_physical_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_constant_pad_nd_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_constant_pad_nd_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_constant_pad_nd_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_constant_pad_nd_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_constant_pad_nd_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_constant_pad_nd_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_contiguous_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_contiguous_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_contiguous_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_contiguous_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_copysign_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_copysign_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_copysign_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_copysign_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_copysign_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_corrcoef_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_corrcoef_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_corrcoef_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_corrcoef_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_corrcoef_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_corrcoef_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cos_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cos_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cos_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cos_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cosh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cosh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cosh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cosh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cosh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_count_nonzero_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_count_nonzero_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cov_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cross_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cross_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cross_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cummax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cummax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cummin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cummin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumprod_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumprod_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumprod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_deg2rad_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_deg2rad_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_deg2rad_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_deg2rad_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diag_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diag_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diag_embed_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diag_embed_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diag_embed_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diag_embed_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagflat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagflat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagflat_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagflat_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diff_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diff_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diff_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_digamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dist_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_floor_rounding_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_floor_rounding_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_floor_rounding_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_floor_rounding_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_no_rounding_mode_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_no_rounding_mode_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_no_rounding_mode_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_trunc_rounding_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_trunc_rounding_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_trunc_rounding_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dot_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dot_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dot_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dot_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_double_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_double_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dsplit_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dsplit_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dsplit_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dsplit_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dstack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dstack_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dstack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_einsum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_einsum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_permuted_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_permuted_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_permuted_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_strided_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_strided_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eq_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eq_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eq_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eq_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_equal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_equal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erf_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erfc_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erfc_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erfc_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erfinv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erfinv_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erfinv_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erfinv_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erfinv_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exp2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exp2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exp2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_as_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_as_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expm1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expm1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expm1_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expm1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expm1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eye_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eye_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eye_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eye_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eye_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eye_cpu_float8_e5m2, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eye_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eye_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eye_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fft_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fft_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fftshift_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfft2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfft_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfftn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifft_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifftn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifftshift_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifftshift_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifftshift_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ihfft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ihfftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfftn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfftn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_rfft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_rfft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_rfft_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_rfftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_rfftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fill_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fill_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fill_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flatten_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flatten_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flatten_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flip_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flip_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fliplr_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fliplr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fliplr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fliplr_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fliplr_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flipud_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flipud_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_float_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_float_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_float_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_float_power_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_float_power_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_float_power_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_floor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_floor_divide_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_floor_divide_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_floor_divide_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_floor_divide_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_frac_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_frac_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_frexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_full_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_full_like_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_full_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_full_like_cpu_uint16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gather_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gather_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gather_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gather_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gather_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gcd_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ge_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ge_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_geometric_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_geometric_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_geqrf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gradient_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_grid_sampler_2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_grid_sampler_3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gt_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gt_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_half_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_half_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_half_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_heaviside_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_heaviside_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_heaviside_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hsplit_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hstack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hstack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hypot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hypot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_i0_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_i0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_i0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_i0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_i0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_igamma_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_imag_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_imag_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_add_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_add_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_fill_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_put_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_put_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_put_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_put_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_put_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_amax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_amin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_amin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_mean_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_select_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_select_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_select_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_select_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_inner_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_inner_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_int_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_int_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_int_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_int_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isclose_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isclose_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isclose_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isfinite_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isfinite_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isinf_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isinf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isnan_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isnan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isnan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isnan_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isnan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isnan_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isneginf_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isneginf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isneginf_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isposinf_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isreal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isreal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isreal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isreal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_istft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_item_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_item_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_item_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_item_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_item_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_item_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_2inputs_2outputs_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_2inputs_2outputs_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_2inputs_2outputs_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_2inputs_2outputs_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_4inputs_with_extra_args_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_4inputs_with_extra_args_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_4inputs_with_extra_args_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_4inputs_with_extra_args_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_4inputs_with_extra_args_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_binary_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_binary_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_binary_return_by_ref_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_binary_return_by_ref_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_binary_return_by_ref_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_binary_return_by_ref_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_unary_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_unary_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_unary_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_unary_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_unary_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_kron_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_kthvalue_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lcm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lcm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ldexp_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ldexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lgamma_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lgamma_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_cholesky_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_cholesky_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_cholesky_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_cholesky_ex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_cond_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_cross_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_cross_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_cross_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_cross_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_det_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_diagonal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_diagonal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_diagonal_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_eig_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_eigh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_eigvals_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_eigvals_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_eigvals_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_eigvalsh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_inv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_inv_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_inv_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_ldl_factor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_ldl_factor_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_lstsq_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_lstsq_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_lstsq_grad_oriented_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_lu_factor_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_lu_factor_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_matrix_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_matrix_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_matrix_power_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_matrix_power_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_matrix_rank_hermitian_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_matrix_rank_hermitian_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_matrix_rank_hermitian_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_multi_dot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_multi_dot_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_multi_dot_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_norm_subgradients_at_zero_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_norm_subgradients_at_zero_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_norm_subgradients_at_zero_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_pinv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_pinv_hermitian_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_pinv_singular_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_pinv_singular_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_solve_ex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_solve_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_solve_triangular_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_svd_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_svdvals_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_svdvals_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_vander_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_vecdot_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_vecdot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_vecdot_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_vector_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linspace_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linspace_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linspace_tensor_overload_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linspace_tensor_overload_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linspace_tensor_overload_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linspace_tensor_overload_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log10_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log1p_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log1p_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log1p_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log1p_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_softmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_softmax_with_dtype_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logaddexp2_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logaddexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logcumsumexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logcumsumexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logcumsumexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logdet_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_and_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_and_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_and_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_and_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_and_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_and_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_not_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_not_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_not_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_not_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_xor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_xor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_xor_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_xor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logit_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logspace_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logspace_tensor_overload_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logspace_tensor_overload_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logspace_tensor_overload_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logspace_tensor_overload_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logspace_tensor_overload_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logsumexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logsumexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logsumexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_long_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_long_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lt_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lu_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lu_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lu_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lu_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lu_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lu_unpack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mH_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mH_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mH_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mT_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mT_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mT_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_amax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_amax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_amin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_amin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_argmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_argmax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_argmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_argmin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_cumprod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_cumprod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_cumsum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_cumsum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_cumsum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_fill_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_fill_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_fill_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_fill_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_fill_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_fill_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_fill_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_log_softmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_logsumexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_logsumexp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_logsumexp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_logsumexp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_normalize_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_normalize_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_prod_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_select_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_select_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_softmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_softmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_std_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_std_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_std_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_std_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_sum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_sum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_var_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_var_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_matmul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_matmul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_matmul_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_matmul_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_matmul_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_matmul_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_matmul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_matrix_exp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_matrix_exp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_binary_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_binary_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_binary_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_pool2d_with_indices_backward_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_pool2d_with_indices_backward_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_reduction_no_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_reduction_no_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_reduction_no_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_reduction_with_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_maximum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_maximum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_maximum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mean_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_median_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_median_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_meshgrid_list_of_tensors_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_meshgrid_list_of_tensors_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_meshgrid_list_of_tensors_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_meshgrid_list_of_tensors_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_meshgrid_list_of_tensors_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_meshgrid_list_of_tensors_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_meshgrid_variadic_tensors_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_meshgrid_variadic_tensors_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_meshgrid_variadic_tensors_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_meshgrid_variadic_tensors_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_min_binary_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_min_reduction_no_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_min_reduction_no_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_min_reduction_with_dim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_min_reduction_with_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_min_reduction_with_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_min_reduction_with_dim_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_min_reduction_with_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mm_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mode_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mode_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mode_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_movedim_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_movedim_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_msort_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_msort_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_msort_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mul_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mul_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_multinomial_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_multinomial_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mv_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mv_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mv_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mv_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mv_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mvlgamma_mvlgamma_p_1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mvlgamma_mvlgamma_p_1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mvlgamma_mvlgamma_p_3_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mvlgamma_mvlgamma_p_3_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mvlgamma_mvlgamma_p_3_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nan_to_num_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nan_to_num_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nan_to_num_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nanmean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nanmedian_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nanmedian_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nanmedian_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_narrow_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_narrow_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_narrow_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_narrow_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_narrow_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_narrow_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_narrow_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_native_batch_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_native_batch_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_native_dropout_backward_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_native_dropout_backward_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_native_dropout_backward_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_native_dropout_backward_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_native_dropout_backward_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_native_layer_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ne_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ne_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ne_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ne_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_neg_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_neg_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_neg_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_neg_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_empty_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_empty_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_empty_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_empty_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_empty_strided_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_empty_strided_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_empty_strided_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_empty_strided_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_empty_strided_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_empty_strided_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_empty_strided_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_full_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_full_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_full_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_full_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_ones_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_ones_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_ones_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_zeros_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_zeros_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_adaptive_avg_pool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_adaptive_avg_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_adaptive_max_pool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_adaptive_max_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_adaptive_max_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_alpha_dropout_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_avg_pool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_avg_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_avg_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_bilinear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_bilinear_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_binary_cross_entropy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_binary_cross_entropy_with_logits_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_channel_shuffle_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_channel_shuffle_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_channel_shuffle_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_channel_shuffle_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_channel_shuffle_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv1d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv_transpose1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv_transpose1d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv_transpose1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv_transpose1d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv_transpose3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv_transpose3d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv_transpose3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv_transpose3d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_cosine_embedding_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_cosine_embedding_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_dropout_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_elu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_embedding_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_embedding_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_gelu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_glu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_grid_sample_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_grid_sample_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_group_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_group_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_hardshrink_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_hardshrink_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_hardsigmoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_hardswish_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_hardswish_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_hardtanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_hardtanh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_hardtanh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_hinge_embedding_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_instance_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_area_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_bilinear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_linear_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_nearest-exact_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_nearest_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_nearest_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_trilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_trilinear_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_kl_div_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_kl_div_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_kl_div_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_l1_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_l1_loss_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_l1_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_layer_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_linear_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_linear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_linear_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_local_response_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_logsigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_margin_ranking_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_pool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_pool2d_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_pool2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_pool3d_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_pool3d_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_pool3d_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_unpool1d_grad_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_unpool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_unpool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_unpool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_unpool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_mish_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_mse_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_multilabel_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_multilabel_soft_margin_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_nll_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_nll_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_nll_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_normalize_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_normalize_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_one_hot_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_circular_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_constant_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_constant_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_constant_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_constant_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_reflect_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_reflect_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_reflect_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_replicate_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_replicate_negative_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_replicate_negative_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pairwise_distance_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pairwise_distance_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pixel_shuffle_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pixel_shuffle_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pixel_shuffle_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pixel_shuffle_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pixel_unshuffle_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pixel_unshuffle_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pixel_unshuffle_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_poisson_nll_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_poisson_nll_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_poisson_nll_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_poisson_nll_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_prelu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_relu6_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_relu6_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_relu6_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_relu_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_relu_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_rms_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_rms_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_rrelu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_selu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_silu_complex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_silu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_smooth_l1_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_soft_margin_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_soft_margin_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_soft_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softmin_with_dtype_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softmin_with_dtype_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softmin_with_dtype_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softsign_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softsign_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softsign_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_tanhshrink_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_tanhshrink_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_tanhshrink_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_threshold_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_threshold_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_threshold_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_threshold_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_triplet_margin_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_upsample_bilinear_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_upsample_bilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_static_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_static_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_static_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_static_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_norm_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_norm_fro_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_norm_inf_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_norm_inf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_normal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_normal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_like_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ormqr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_outer_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_outer_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_outer_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_permute_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_permute_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_permute_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_permute_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_permute_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_permute_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_pinverse_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_pinverse_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polar_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_3_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_4_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_4_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_4_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_positive_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_positive_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_positive_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_pow_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_prod_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_prod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_prod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_put_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_put_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_put_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_qr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rad2deg_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rad2deg_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rad2deg_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rand_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rand_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rand_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rand_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randint_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randint_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randint_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randint_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randint_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randn_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randn_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randn_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ravel_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ravel_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ravel_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ravel_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ravel_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_real_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_real_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_real_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_real_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reciprocal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reciprocal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reciprocal_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_remainder_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_remainder_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_renorm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_renorm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_repeat_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_repeat_interleave_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_repeat_interleave_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reshape_as_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reshape_as_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reshape_as_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reshape_as_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reshape_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reshape_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resize__cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resize_as__cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resize_as__cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resize_as__cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resize_as__cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_conj_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_conj_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_neg_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_roll_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_roll_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_roll_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rot90_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rot90_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rot90_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rot90_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rot90_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_round_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_round_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_round_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rsqrt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rsqrt_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rsub_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rsub_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scalar_tensor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scalar_tensor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scalar_tensor_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scalar_tensor_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scalar_tensor_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_add_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_add_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_amax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_amax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_amax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_amin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_amin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_mean_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_mean_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_mean_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_sum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_sum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_sum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_sum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_sum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_searchsorted_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_searchsorted_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_searchsorted_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_searchsorted_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_select_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_select_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_select_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_select_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_select_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_select_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sgn_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sgn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sgn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sgn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_short_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_short_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sigmoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sigmoid_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sigmoid_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sigmoid_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sigmoid_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sign_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signal_windows_gaussian_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signal_windows_hann_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signal_windows_kaiser_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signbit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signbit_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sinc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sinc_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sinc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sinc_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sinc_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sinc_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sinc_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sinh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sinh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_slice_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_slice_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_slice_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_slice_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_slice_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_softmax_with_dtype_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sort_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sort_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sort_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sparse_sampled_addmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_airy_ai_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_j0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_j0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_y0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_y0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_y0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_y1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_y1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_u_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_v_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_w_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_w_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_w_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_entr_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_entr_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_erfcx_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_erfcx_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_erfcx_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_erfcx_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_hermite_polynomial_h_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_hermite_polynomial_he_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i0e_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i1e_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i1e_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_laguerre_polynomial_l_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_legendre_polynomial_p_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_legendre_polynomial_p_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_log_ndtr_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_log_ndtr_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_log_ndtr_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_i1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_k0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_k0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_k1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_k1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_ndtr_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_ndtr_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_ndtri_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_ndtri_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_ndtri_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_ndtri_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_scaled_modified_bessel_k0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_scaled_modified_bessel_k0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_scaled_modified_bessel_k0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_scaled_modified_bessel_k0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_scaled_modified_bessel_k0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_scaled_modified_bessel_k1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_t_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_u_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_u_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_u_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_v_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_v_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_w_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_w_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_w_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_spherical_bessel_j0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_spherical_bessel_j0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_spherical_bessel_j0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_spherical_bessel_j0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_xlog1py_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_zeta_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_zeta_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_zeta_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_zeta_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_list_args_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_list_args_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_list_args_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_list_args_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_list_args_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sqrt_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_square_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_square_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_square_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_square_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_square_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_multiple_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_multiple_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_multiple_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_multiple_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_multiple_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_stack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_stack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_stack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_std_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_stft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_stft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_stft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sub_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sub_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sub_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sum_to_size_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sum_to_size_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_svd_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_t_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_t_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_t_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_take_along_dim_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_take_along_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_take_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_take_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tan_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tan_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tanh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tanh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tensor_split_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tensor_split_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tensor_split_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tensordot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tensordot_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tensordot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tensordot_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tensordot_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tile_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tile_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tile_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_to_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_to_sparse_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_to_sparse_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_to_sparse_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_topk_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_topk_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_torch__scaled_mm_cpu_float8_e4m3fn, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_torch__scaled_mm_cpu_float8_e5m2fnuz, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trace_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trace_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_transpose_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_transpose_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_transpose_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_transpose_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_transpose_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_transpose_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_transpose_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_transpose_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trapezoid_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trapezoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trapezoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trapezoid_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trapezoid_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trapezoid_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trapz_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trapz_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_triangular_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tril_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tril_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tril_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tril_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tril_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tril_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_triu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_triu_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_triu_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_triu_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_true_divide_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_true_divide_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trunc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trunc_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trunc_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trunc_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unbind_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unbind_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unbind_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unbind_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unbind_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unbind_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unbind_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unbind_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unflatten_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unfold_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unfold_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unfold_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unfold_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unfold_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_uniform_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unique_consecutive_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unique_consecutive_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unique_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_chunk_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_chunk_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_chunk_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_split_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_split_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_split_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_split_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_split_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_split_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsqueeze_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsqueeze_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsqueeze_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsqueeze_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_var_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_var_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_var_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_var_mean_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_var_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_var_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_var_mean_unbiased_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_var_mean_unbiased_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_var_unbiased_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_var_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vdot_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vdot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vdot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vdot_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vdot_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_as_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_as_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_as_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_as_real_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vsplit_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vsplit_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vsplit_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vstack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vstack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vstack_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_where_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_where_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_where_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_where_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_xlogy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_xlogy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_xlogy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zero__cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zeros_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zeros_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zeros_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zeros_like_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zeros_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zeros_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zeros_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zeros_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_fill__alias_relationship_cpu, test/test_meta.py::TestMetaCPU::test_fill_stride_cpu, test/test_meta.py::TestMetaCPU::test_group_norm_backward_output_mask2_cpu, test/test_meta.py::TestMetaCPU::test_group_norm_backward_output_mask7_cpu, test/test_meta.py::TestMetaCPU::test_layer_norm_backward_output_mask5_cpu, test/test_meta.py::TestMetaCPU::test_layer_norm_backward_output_mask6_cpu, test/test_meta.py::TestMetaCPU::test_meta__fused_moving_avg_obs_fq_helper_cpu, test/test_meta.py::TestMetaCPU::test_meta_inplace_H_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_H_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_H_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_T_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_T_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace___getitem___cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace___getitem___cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace___radd___cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace___rand___cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace___rdiv___cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace___rdiv___cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace___rdiv___cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmatmul___cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmatmul___cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmatmul___cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmul___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace___rpow___cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace___rpow___cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace___rsub___cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace___rsub___cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace___rsub___cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace___rsub___cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace___rxor___cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__batch_norm_with_update_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__batch_norm_with_update_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__chunk_cat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__chunk_cat_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__chunk_cat_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__chunk_cat_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_abs_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_abs_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_abs_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_abs_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_abs_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_abs_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_abs_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_acos_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_acos_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_add_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_add_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_addcdiv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_addcdiv_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_addcmul_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_addcmul_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_addcmul_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_asin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_asin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_asin_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_atan_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_atan_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_atan_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_atan_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_ceil_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_ceil_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_clamp_max_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_clamp_max_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_clamp_min_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_clamp_min_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_cos_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_cosh_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_cosh_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_cosh_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_div_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_div_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_erf_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_erf_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_erfc_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_erfc_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_erfc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_exp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_exp_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_exp_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_expm1_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_expm1_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_floor_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_floor_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_frac_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_frac_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_frac_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_frac_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_lerp_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_lerp_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_lerp_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_lerp_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_lerp_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_lgamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_lgamma_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_lgamma_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log10_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log10_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log10_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log10_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log10_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log1p_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log1p_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log1p_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_max_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_max_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_maximum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_maximum_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_maximum_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_maximum_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_maximum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_minimum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_minimum_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_minimum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_minimum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_minimum_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_minimum_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_minimum_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_mul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_mul_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_neg_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_norm_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_norm_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_pow_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_pow_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_pow_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_reciprocal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_reciprocal_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_reciprocal_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_round_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_round_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_rsqrt_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sign_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sign_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sign_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sin_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sin_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sin_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sinh_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sinh_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sinh_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sinh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sqrt_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sqrt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sub_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sub_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sub_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_tan_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_trunc_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_trunc_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_zero_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_zero_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_zero_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__native_batch_norm_legit_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__native_batch_norm_legit_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__segment_reduce_lengths_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__segment_reduce_lengths_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__segment_reduce_offsets_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__softmax_backward_data_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__unsafe_masked_index_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__unsafe_masked_index_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__unsafe_masked_index_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__unsafe_masked_index_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__unsafe_masked_index_put_accumulate_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__unsafe_masked_index_put_accumulate_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__unsafe_masked_index_put_accumulate_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__upsample_bilinear2d_aa_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_abs_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_abs_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_abs_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_acos_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_acos_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_acos_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_acos_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_acos_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_acosh_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_acosh_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_acosh_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_acosh_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_acosh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_add_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_addbmm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_addbmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_addbmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_addbmm_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_addbmm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_addcdiv_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_addcmul_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_addcmul_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmm_decomposed_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmm_decomposed_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmm_decomposed_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmv_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_addr_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_alias_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_alias_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_allclose_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_allclose_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_amax_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_amax_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_amax_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_amax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_amin_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_amin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_angle_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_angle_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_angle_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_any_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_any_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_any_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_any_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_any_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_arange_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_argmax_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_argmax_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_argmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_argmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_argmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_argmin_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_argwhere_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_argwhere_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_argwhere_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_argwhere_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_partial_views_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_partial_views_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_asin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_asin_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_asin_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_asinh_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_asinh_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_atan2_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_atan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_atan_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_atan_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_atanh_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_atanh_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_atanh_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_atanh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_1d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_1d_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_1d_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_1d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_2d_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_2d_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_2d_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_2d_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_3d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_baddbmm_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_baddbmm_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_bernoulli_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_bernoulli_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_bfloat16_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_bfloat16_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_bfloat16_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_bincount_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_bincount_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_bincount_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_and_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_left_shift_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_not_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_or_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_or_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_or_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_right_shift_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_right_shift_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_xor_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_xor_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_xor_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_block_diag_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_block_diag_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_block_diag_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_block_diag_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_bmm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_bmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_bmm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_bmm_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_bmm_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_bmm_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_bool_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_bool_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_bool_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_bool_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_bool_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_broadcast_tensors_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_broadcast_tensors_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_broadcast_tensors_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_broadcast_tensors_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_broadcast_to_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_broadcast_to_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_bucketize_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_byte_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_byte_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_byte_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cartesian_prod_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_cartesian_prod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cartesian_prod_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cartesian_prod_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cartesian_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cartesian_prod_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cartesian_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cat_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_cat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_cat_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cauchy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cauchy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cdist_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cdouble_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_cdouble_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cdouble_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cdouble_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_ceil_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_ceil_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cfloat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cfloat_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cfloat_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cfloat_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_chalf_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_chalf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_char_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_char_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_char_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cholesky_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_chunk_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_max_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_max_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_max_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_max_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_min_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_min_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_min_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_clone_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_column_stack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_column_stack_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_column_stack_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_combinations_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_combinations_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_conj_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_conj_physical_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_conj_physical_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_constant_pad_nd_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_constant_pad_nd_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_constant_pad_nd_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_constant_pad_nd_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_contiguous_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_copysign_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_copysign_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_corrcoef_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_corrcoef_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_corrcoef_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cos_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cos_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cos_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cos_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cosh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cosh_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cosh_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_count_nonzero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_count_nonzero_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_count_nonzero_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cov_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cross_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cummax_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cummin_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_cummin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cummin_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumprod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumprod_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumprod_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumprod_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumprod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumsum_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumsum_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumsum_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumsum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumulative_trapezoid_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_deg2rad_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_deg2rad_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagflat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagflat_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagflat_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagflat_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagflat_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_diff_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_diff_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_diff_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_digamma_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_dist_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_no_rounding_mode_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_no_rounding_mode_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_trunc_rounding_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_trunc_rounding_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_dot_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_dot_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_double_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_double_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_double_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_double_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_dsplit_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_dsplit_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_dsplit_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_dsplit_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_dstack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_dstack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_einsum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_einsum_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_permuted_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_strided_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_strided_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_eq_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_eq_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_eq_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_equal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_equal_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_erf_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_erf_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_erfc_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_erfc_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_erfinv_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_erfinv_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_erfinv_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_erfinv_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_erfinv_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_erfinv_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_exp2_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_exp2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_exp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_exp_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_exp_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_as_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_as_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_as_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_as_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_expm1_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_expm1_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_expm1_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_expm1_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_eye_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_eye_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_eye_cpu_float8_e4m3fn, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fft_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fft_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fftn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fftn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fftshift_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fftshift_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfft_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfft_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifft2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifft2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifft_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifft_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifftn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifftn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifftshift_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifftshift_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifftshift_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ihfft_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ihfft_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ihfftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ihfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ihfftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfft_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfft_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfft_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_rfft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_rfft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_rfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_rfft_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_rfft_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_rfft_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_rfft_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_rfft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_rfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_rfftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_rfftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_rfftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fill_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fill_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fill_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fill_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_flatten_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_flatten_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_flatten_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_flip_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_flip_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_flip_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fliplr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_fliplr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fliplr_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fliplr_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fliplr_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_flipud_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_float_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_float_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_float_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_float_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_float_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_float_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_float_power_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_float_power_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_floor_divide_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmax_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmax_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmod_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmod_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_frac_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_like_cpu_uint16, test/test_meta.py::TestMetaCPU::test_meta_inplace_gather_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_gather_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_gather_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_gather_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_gcd_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_geometric_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_geqrf_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_gradient_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_gradient_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_gradient_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_gradient_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_gt_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_half_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_half_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_half_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_half_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_hash_tensor_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_hash_tensor_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_hash_tensor_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_hash_tensor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_heaviside_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_heaviside_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_histc_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_histc_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_histogram_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_hsplit_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_hsplit_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_hsplit_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_hsplit_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_hstack_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_hstack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_hstack_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_hstack_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_hstack_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_hstack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_hypot_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_i0_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_igamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_imag_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_add_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_fill_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_fill_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_fill_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_fill_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_fill_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_fill_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_put_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_put_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_amax_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_amax_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_amin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_amin_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_prod_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_prod_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_select_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_select_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_select_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_inner_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_inner_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_int_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_int_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_int_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_isclose_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_isclose_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_isclose_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_isclose_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_isfinite_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_isfinite_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_isfinite_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_isin_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_isinf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_isinf_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_isinf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_isinf_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_isinf_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_isinf_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_isnan_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_isnan_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_isneginf_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_isposinf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_isposinf_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_isposinf_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_isposinf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_isreal_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_isreal_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_isreal_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_isreal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_item_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_item_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_item_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_2inputs_2outputs_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_4inputs_with_extra_args_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_4inputs_with_extra_args_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_4inputs_with_extra_args_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_4inputs_with_extra_args_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_binary_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_binary_return_by_ref_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_binary_return_by_ref_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_unary_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_unary_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_unary_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_kron_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_kthvalue_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_ldexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_ldexp_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_ldexp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_le_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_lerp_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_lerp_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_lgamma_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_lgamma_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_lgamma_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_cholesky_ex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_cholesky_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_cross_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_det_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_det_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_diagonal_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_diagonal_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_diagonal_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_eigh_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_eigvals_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_eigvalsh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_eigvalsh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_householder_product_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_inv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_inv_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_ldl_factor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_ldl_factor_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_lstsq_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_lstsq_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_lstsq_grad_oriented_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_lu_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_lu_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_lu_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_lu_factor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_lu_factor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_lu_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_lu_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_lu_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_matrix_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_matrix_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_matrix_power_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_matrix_rank_hermitian_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_multi_dot_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_norm_subgradients_at_zero_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_norm_subgradients_at_zero_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_pinv_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_pinv_hermitian_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_slogdet_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_slogdet_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_solve_triangular_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_solve_triangular_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_svd_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_svdvals_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_tensorsolve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_vecdot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_vecdot_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_vecdot_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_vecdot_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_vector_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_vector_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_vector_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linspace_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linspace_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linspace_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_linspace_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_log10_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_log10_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_log10_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_log1p_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_log1p_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_log1p_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_log1p_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_log1p_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_log2_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_normal_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_normal_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_softmax_with_dtype_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_softmax_with_dtype_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logaddexp2_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logaddexp2_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_logaddexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_logcumsumexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_logdet_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_logdet_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_and_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_and_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_and_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_not_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_not_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_not_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_not_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_or_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_or_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_or_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_or_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_xor_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logspace_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_logspace_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logspace_tensor_overload_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logspace_tensor_overload_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logspace_tensor_overload_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_logsumexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_long_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_long_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_long_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_long_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_long_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_lt_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_lt_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_lt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_lu_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_lu_unpack_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mH_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mH_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mH_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mH_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_mT_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mT_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_mT_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_amax_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_amax_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_amin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_amin_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_amin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_amin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_argmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_argmin_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_cumprod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_cumprod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_cumprod_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_cumprod_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_cumprod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_cumsum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_fill_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_fill_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_fill_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_log_softmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_log_softmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_logaddexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_logaddexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_logsumexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_logsumexp_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_median_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_normalize_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_prod_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_scatter_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_scatter_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_select_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_select_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_softmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_std_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_std_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_std_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_sum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_sum_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_sum_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_sum_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_var_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_var_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_matmul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_matmul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_matmul_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_matmul_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_matmul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_matrix_exp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_matrix_exp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_binary_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_binary_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_pool2d_with_indices_backward_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_pool2d_with_indices_backward_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_reduction_no_dim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_reduction_no_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_reduction_no_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_reduction_with_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_maximum_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_maximum_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_maximum_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_maximum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_median_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_median_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_median_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_median_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_meshgrid_list_of_tensors_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_meshgrid_variadic_tensors_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_binary_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_binary_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_reduction_no_dim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_reduction_no_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_reduction_no_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_reduction_no_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_reduction_no_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_reduction_no_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_reduction_with_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_reduction_with_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_minimum_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_minimum_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_minimum_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_minimum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_mm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mm_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mode_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mode_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_movedim_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_movedim_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_movedim_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_movedim_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_movedim_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_msort_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_msort_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_msort_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_msort_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_mul_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_mul_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_mv_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mvlgamma_mvlgamma_p_5_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mvlgamma_mvlgamma_p_5_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_mvlgamma_mvlgamma_p_5_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nan_to_num_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nan_to_num_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nan_to_num_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nansum_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_nansum_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nansum_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_narrow_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_narrow_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_narrow_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_narrow_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_narrow_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_narrow_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_narrow_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_native_batch_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_native_batch_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_native_dropout_backward_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_native_dropout_backward_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_native_dropout_backward_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_native_dropout_backward_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_native_dropout_backward_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_native_dropout_backward_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_native_dropout_backward_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_native_layer_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_ne_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_ne_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_ne_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_ne_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_neg_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_neg_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_neg_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_neg_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_neg_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_strided_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_strided_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_strided_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_strided_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_strided_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_full_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_full_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_full_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_full_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_zeros_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_zeros_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_zeros_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_zeros_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_zeros_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_adaptive_avg_pool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_adaptive_avg_pool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_adaptive_max_pool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_adaptive_max_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_adaptive_max_pool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_alpha_dropout_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_avg_pool1d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_avg_pool2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_avg_pool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_batch_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_batch_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_bilinear_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_bilinear_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_bilinear_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_binary_cross_entropy_with_logits_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_celu_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_channel_shuffle_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv2d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv3d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv_transpose1d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv_transpose1d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv_transpose2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv_transpose2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv_transpose2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv_transpose3d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv_transpose3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv_transpose3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv_transpose3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_cosine_embedding_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_cosine_embedding_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_cosine_similarity_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_cross_entropy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_ctc_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_dropout2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_dropout2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_dropout3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_dropout_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_dropout_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_embedding_bag_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_feature_alpha_dropout_with_train_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_fractional_max_pool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_fractional_max_pool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_fractional_max_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_gaussian_nll_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_gelu_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_glu_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_glu_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_grid_sample_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_group_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_group_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hardshrink_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hardsigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hardtanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hardtanh_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hardtanh_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hinge_embedding_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hinge_embedding_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_instance_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_area_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_bicubic_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_linear_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_trilinear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_trilinear_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_trilinear_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_kl_div_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_l1_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_l1_loss_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_l1_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_layer_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_linear_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_local_response_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_local_response_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_local_response_norm_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_logsigmoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_logsigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_logsigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_margin_ranking_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_pool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_pool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_pool2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_pool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_unpool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_unpool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_unpool1d_grad_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_unpool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_unpool2d_grad_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_unpool3d_grad_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_unpool3d_grad_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_mish_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_mish_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_mse_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_mse_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_multi_head_attention_forward_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_nll_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_normalize_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_normalize_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_circular_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_circular_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_constant_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_constant_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_constant_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_constant_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_constant_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_constant_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_reflect_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_reflect_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_replicate_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_replicate_negative_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_replicate_negative_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_replicate_negative_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pairwise_distance_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pairwise_distance_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pairwise_distance_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pixel_shuffle_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pixel_shuffle_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pixel_shuffle_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pixel_shuffle_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pixel_shuffle_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pixel_unshuffle_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pixel_unshuffle_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pixel_unshuffle_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pixel_unshuffle_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_poisson_nll_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_poisson_nll_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_prelu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_relu6_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_relu6_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_relu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_relu_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_relu_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_rms_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_rrelu_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_scaled_dot_product_attention_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_selu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_silu_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softmin_with_dtype_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softmin_with_dtype_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softmin_with_dtype_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softplus_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softshrink_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_tanhshrink_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_tanhshrink_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_threshold_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_threshold_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_threshold_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_triplet_margin_loss_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_triplet_margin_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_unfold_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_upsample_bilinear_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_upsample_bilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_upsample_nearest_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nonzero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nonzero_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nonzero_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nonzero_static_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_norm_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_norm_fro_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_norm_inf_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_norm_inf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_norm_nuc_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_normal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_normal_number_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_ormqr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_outer_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_outer_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_outer_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_outer_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_pca_lowrank_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_pca_lowrank_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_permute_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_permute_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_permute_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_permute_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_permute_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_permute_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_permute_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_permute_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_permute_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_pinverse_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_pinverse_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_0_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_1_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_2_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_2_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_2_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_2_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_3_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_3_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_4_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_4_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_4_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_4_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_positive_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_positive_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_positive_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_pow_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_pow_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_put_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_put_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_put_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_put_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_rad2deg_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_rad2deg_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_rand_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_rand_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_rand_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_randint_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_randint_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_randn_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_randn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_randn_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_randn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_randn_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_randn_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_ravel_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_ravel_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_ravel_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_ravel_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_ravel_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_real_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_reciprocal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_reciprocal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_reciprocal_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_reciprocal_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_reciprocal_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_reciprocal_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_reciprocal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_remainder_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_remainder_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_remainder_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_remainder_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_renorm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_renorm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_repeat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_repeat_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_repeat_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_repeat_interleave_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_repeat_interleave_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_reshape_as_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_reshape_as_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_reshape_as_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_reshape_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_reshape_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_reshape_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_reshape_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_resize__cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_resize__cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_resize__cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_resize_as__cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_resize_as__cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_resize_as__cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_resize_as__cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_resize_as__cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_resolve_conj_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_resolve_neg_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_resolve_neg_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_resolve_neg_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_resolve_neg_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_resolve_neg_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_roll_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_roll_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_roll_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_roll_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_roll_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_roll_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_rot90_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_rot90_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_rot90_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_rot90_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_rot90_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_round_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_round_decimals_0_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_round_decimals_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_round_decimals_neg_3_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_rsqrt_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_rsub_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_rsub_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_rsub_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_scalar_tensor_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_scalar_tensor_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_scalar_tensor_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_scalar_tensor_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_scalar_tensor_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_add_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_add_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_add_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_add_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_amax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_amax_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_amax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_amin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_mean_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_sum_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_sum_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_sum_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_sum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_searchsorted_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_select_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_select_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_select_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_select_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_select_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_sgn_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sgn_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sgn_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_short_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_short_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_short_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_short_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sigmoid_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sigmoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sign_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sign_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_signal_windows_blackman_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_signal_windows_cosine_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_signal_windows_kaiser_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_signal_windows_kaiser_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_signbit_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_signbit_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_sin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sin_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_sinc_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_sinc_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_sinc_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sinc_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sinc_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_sinh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sinh_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_slice_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_slice_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_slice_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_slice_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_slice_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_slice_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_softmax_with_dtype_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_softmax_with_dtype_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_softmax_with_dtype_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_softmax_with_dtype_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_sparse_mm_reduce_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sparse_mm_reduce_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_airy_ai_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_airy_ai_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_j0_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_j1_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_j1_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_j1_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_j1_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_y0_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_y0_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_y1_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_y1_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_t_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_t_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_t_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_u_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_u_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_u_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_v_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_v_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_w_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_w_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_entr_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_entr_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_entr_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_entr_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_entr_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_erfcx_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_erfcx_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_hermite_polynomial_h_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_hermite_polynomial_h_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_hermite_polynomial_he_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i0e_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i1_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i1_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i1e_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i1e_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i1e_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_laguerre_polynomial_l_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_i0_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_i0_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_k0_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_k1_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_k1_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_k1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_ndtr_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_ndtr_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_ndtr_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_ndtr_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_ndtri_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_ndtri_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_scaled_modified_bessel_k0_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_scaled_modified_bessel_k1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_u_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_u_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_v_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_v_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_w_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_w_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_spherical_bessel_j0_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_spherical_bessel_j0_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_spherical_bessel_j0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_xlog1py_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_xlog1py_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_xlog1py_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_zeta_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_zeta_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_list_args_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_list_args_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_with_sizes_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_with_sizes_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_with_sizes_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_with_sizes_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_with_sizes_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sqrt_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_sqrt_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sqrt_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sqrt_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sqrt_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_square_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_square_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_square_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_square_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_square_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_square_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_multiple_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_multiple_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_multiple_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_multiple_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_stack_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_stack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_stack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_stack_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_stack_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_stack_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_std_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_std_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_std_mean_unbiased_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_std_mean_unbiased_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_std_mean_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_std_unbiased_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_std_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_std_unbiased_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sub_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sub_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sub_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sum_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_sum_to_size_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_sum_to_size_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_svd_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_svd_lowrank_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_svd_lowrank_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_svd_lowrank_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_t_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_t_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_t_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_t_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_t_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_t_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_t_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_t_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_t_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_t_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_take_along_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_take_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_take_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_take_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_tan_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_tan_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_tan_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_tanh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_tanh_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_tanh_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_tensor_split_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_tensor_split_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_tensor_split_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_tensordot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_tensordot_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_tensordot_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_tensordot_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_tile_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_tile_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_tile_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_to_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_to_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_to_sparse_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_to_sparse_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_to_sparse_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_topk_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_topk_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_topk_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_torch__scaled_mm_cpu_float8_e5m2, test/test_meta.py::TestMetaCPU::test_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_trace_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_trace_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_trace_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_trapezoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_trapezoid_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_trapezoid_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_trapz_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_trapz_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_trapz_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_triangular_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_triangular_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_tril_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_tril_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_tril_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_tril_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_triu_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_triu_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_triu_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_true_divide_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_true_divide_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_true_divide_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_true_divide_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_trunc_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_trunc_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unflatten_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_unflatten_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unflatten_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unflatten_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unflatten_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unflatten_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_unfold_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_unfold_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_unfold_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_unfold_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unique_consecutive_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_unique_consecutive_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unique_consecutive_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unique_consecutive_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unique_consecutive_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_unique_consecutive_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_unique_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unique_cpu_uint64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unravel_index_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unravel_index_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_unravel_index_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsafe_chunk_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsafe_chunk_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsafe_split_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsafe_split_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_var_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_var_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_var_mean_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_var_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_var_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_var_mean_unbiased_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_var_unbiased_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_var_unbiased_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_vdot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_vdot_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_as_complex_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_as_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_as_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_as_real_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_vsplit_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_vsplit_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_vsplit_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_vsplit_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_vsplit_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_vstack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_where_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_where_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_where_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_where_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_xlogy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_zero__cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_zero__cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_zero__cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_zero__cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_zero__cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_H_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_H_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_T_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_T_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_T_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace___getitem___cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace___getitem___cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace___getitem___cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace___getitem___cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace___radd___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace___radd___cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace___radd___cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace___radd___cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace___rdiv___cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace___rdiv___cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace___rdiv___cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmatmul___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmatmul___cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmatmul___cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmod___cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmul___cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmul___cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmul___cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmul___cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace___ror___cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace___ror___cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace___rpow___cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace___rpow___cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace___rsub___cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace___rsub___cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace___rsub___cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace___rxor___cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace___rxor___cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__chunk_cat_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__chunk_cat_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__chunk_cat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_abs_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_acos_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_acos_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_add_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_add_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_add_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_add_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_addcdiv_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_addcdiv_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_addcmul_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_addcmul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_asin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_asin_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_asin_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_atan_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_atan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_atan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_atan_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_atan_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_atan_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_atan_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_atan_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_ceil_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_ceil_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_ceil_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_clamp_max_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_clamp_max_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_clamp_max_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_clamp_min_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_clamp_min_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_clamp_min_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_cos_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_cosh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_cosh_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_cosh_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_cosh_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_div_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_div_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_div_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_div_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_div_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_erf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_erf_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_erfc_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_exp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_exp_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_expm1_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_expm1_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_expm1_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_expm1_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_expm1_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_floor_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_floor_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_floor_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_floor_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_frac_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_frac_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_frac_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_frac_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_lerp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_lerp_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_lgamma_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_lgamma_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_lgamma_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_lgamma_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log10_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log10_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log10_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log10_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log10_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log1p_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log1p_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log1p_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log1p_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log2_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log2_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log2_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log2_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_max_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_max_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_max_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_maximum_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_minimum_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_minimum_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_minimum_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_mul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_mul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_mul_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_neg_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_neg_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_neg_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_neg_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_neg_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_norm_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_pow_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_pow_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_pow_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_pow_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_reciprocal_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_reciprocal_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_round_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_round_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_rsqrt_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_rsqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_rsqrt_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_rsqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sigmoid_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sign_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sign_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sign_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sin_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sinh_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sinh_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sinh_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sqrt_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sqrt_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sub_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sub_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_tan_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_tan_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_tanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_tanh_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_trunc_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_trunc_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_trunc_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_zero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_zero_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_zero_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_zero_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__native_batch_norm_legit_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__segment_reduce_lengths_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__segment_reduce_lengths_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__segment_reduce_offsets_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__segment_reduce_offsets_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__segment_reduce_offsets_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__softmax_backward_data_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__unsafe_masked_index_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__unsafe_masked_index_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__unsafe_masked_index_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__unsafe_masked_index_put_accumulate_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__unsafe_masked_index_put_accumulate_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__upsample_bilinear2d_aa_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_abs_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_abs_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_abs_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_abs_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_abs_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_acos_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_acos_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_acos_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_add_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_add_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_add_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_addbmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_addbmm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_addbmm_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_addcdiv_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_addcmul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_addcmul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmm_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmm_decomposed_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmm_decomposed_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmm_decomposed_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmm_decomposed_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmv_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmv_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmv_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_addr_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_addr_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_addr_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_alias_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_alias_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_alias_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_alias_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_alias_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_alias_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_all_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_all_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_allclose_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_allclose_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_amax_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_amin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_angle_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_any_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_any_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_any_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_any_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_arange_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_arange_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_argmax_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_argmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_argmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_argmin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_argsort_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_argsort_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_argsort_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_argwhere_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_argwhere_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_argwhere_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_argwhere_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_partial_views_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_partial_views_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_partial_views_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_partial_views_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_scatter_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_scatter_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_asin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_asin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_asin_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_asin_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_asinh_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_asinh_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_atan2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_atan_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_atanh_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_atanh_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_1d_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_1d_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_2d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_2d_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_3d_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_3d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_3d_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_3d_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_baddbmm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_baddbmm_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_bernoulli_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_bfloat16_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_bincount_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_bincount_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_bincount_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_and_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_not_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_not_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_not_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_or_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_or_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_or_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_right_shift_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_right_shift_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_xor_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_block_diag_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_block_diag_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_block_diag_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_bmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_bmm_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_bmm_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_bmm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_bool_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_bool_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_bool_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_bool_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_bool_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_tensors_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_tensors_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_tensors_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_tensors_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_to_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_bucketize_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_byte_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_cartesian_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_cat_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cat_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cauchy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cauchy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cdouble_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cdouble_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_cdouble_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cdouble_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_ceil_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_ceil_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cfloat_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cfloat_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cfloat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_chalf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_chalf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_chalf_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_chalf_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_chalf_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_char_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_char_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_cholesky_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_chunk_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_chunk_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_chunk_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_min_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_min_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_min_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_clone_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_clone_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_clone_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_clone_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_column_stack_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_combinations_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_combinations_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_combinations_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_physical_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_physical_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_physical_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_constant_pad_nd_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_constant_pad_nd_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_contiguous_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_contiguous_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_contiguous_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_contiguous_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_contiguous_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_copysign_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_copysign_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_corrcoef_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_corrcoef_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_cos_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cos_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_cos_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cosh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cosh_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_cosh_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cosh_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cosh_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cosh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_count_nonzero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_count_nonzero_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_count_nonzero_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_count_nonzero_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_count_nonzero_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_count_nonzero_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_cov_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cov_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_cross_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cummax_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cummax_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cummax_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_cummin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cummin_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumprod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumprod_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumsum_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumsum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumulative_trapezoid_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumulative_trapezoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumulative_trapezoid_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_deg2rad_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_deg2rad_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_diag_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_diag_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_diag_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_diag_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_diag_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_diag_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_diag_embed_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_diag_embed_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_diag_embed_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagflat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagflat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagflat_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagflat_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagflat_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_diff_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_diff_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_diff_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_diff_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_diff_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_floor_rounding_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_floor_rounding_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_floor_rounding_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_floor_rounding_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_no_rounding_mode_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_no_rounding_mode_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_no_rounding_mode_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_no_rounding_mode_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_trunc_rounding_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_dot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_dot_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_dot_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_double_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_double_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_dsplit_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_dstack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_dstack_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_einsum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_einsum_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_einsum_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_permuted_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_permuted_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_permuted_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_strided_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_strided_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_strided_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_eq_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_eq_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_equal_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_erf_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_erf_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_erfc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_erfc_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_erfinv_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_erfinv_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_exp2_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_exp2_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_exp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_exp_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_exp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_exp_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_exp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_as_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_as_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_expm1_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_expm1_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_expm1_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_expm1_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_eye_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_eye_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_eye_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_eye_cpu_float8_e4m3fn, test/test_meta.py::TestMetaCPU::test_meta_outplace_eye_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_eye_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fft2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fft_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fft_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fft_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fftn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fftshift_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fftshift_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfft2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfftn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifft_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifft_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifftshift_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifftshift_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifftshift_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ihfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ihfft_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ihfft_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ihfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfft_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_rfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_rfft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_rfft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_rfft_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_rfft_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_rfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_rfftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fill_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fill_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fill_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_flatten_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_flip_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_flip_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fliplr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_fliplr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fliplr_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fliplr_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_flipud_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_flipud_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_flipud_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_flipud_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_float_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_float_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_float_power_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_float_power_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_float_power_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_floor_divide_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_floor_divide_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_floor_divide_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmax_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmod_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmod_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_frac_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_frac_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_full_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_full_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_full_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_full_like_cpu_uint16, test/test_meta.py::TestMetaCPU::test_meta_outplace_full_like_cpu_uint32, test/test_meta.py::TestMetaCPU::test_meta_outplace_gather_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_gcd_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_ge_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_ge_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_ge_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_geometric_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_geqrf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_geqrf_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_gradient_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_gradient_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_gradient_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_grid_sampler_2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_gt_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_half_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_half_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_half_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_half_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_half_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_hash_tensor_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_hash_tensor_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_hash_tensor_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_hash_tensor_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_hash_tensor_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_heaviside_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_heaviside_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_heaviside_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_heaviside_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_histc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_histc_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_histogram_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_histogramdd_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_histogramdd_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_hsplit_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_hsplit_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_hstack_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_hstack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_hstack_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_hstack_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_hstack_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_i0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_igamma_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_igammac_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_imag_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_imag_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_add_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_add_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_add_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_add_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_add_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_fill_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_fill_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_fill_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_fill_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_fill_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_put_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_put_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_amax_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_amax_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_amax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_mean_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_mean_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_mean_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_mean_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_prod_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_select_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_select_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_select_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_inner_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_inner_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_inner_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_inner_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_inner_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_int_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_int_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_int_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_int_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_isclose_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isclose_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_isclose_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_isclose_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_isclose_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_isfinite_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_isin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isin_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_isin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_isinf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isinf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_isinf_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_isinf_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isinf_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_isnan_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_isnan_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_isnan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_isneginf_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_isposinf_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_isposinf_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isposinf_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_isposinf_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_isposinf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_isreal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isreal_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isreal_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_isreal_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_item_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_item_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_item_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_item_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_item_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_2inputs_2outputs_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_2inputs_2outputs_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_2inputs_2outputs_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_4inputs_with_extra_args_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_binary_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_binary_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_binary_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_binary_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_binary_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_binary_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_binary_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_binary_return_by_ref_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_binary_return_by_ref_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_binary_return_by_ref_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_unary_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_unary_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_unary_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_unary_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_unary_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_unary_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_kron_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_kthvalue_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_kthvalue_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_kthvalue_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_kthvalue_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_lcm_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_lcm_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_lcm_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_lcm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_ldexp_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_le_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_le_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_lerp_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_cholesky_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_cond_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_cross_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_cross_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_det_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_diagonal_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_diagonal_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_diagonal_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_diagonal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_eigvalsh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_householder_product_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_householder_product_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_inv_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_inv_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_ldl_factor_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_ldl_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_lstsq_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_lu_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_lu_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_lu_factor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_matrix_power_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_matrix_rank_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_matrix_rank_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_multi_dot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_multi_dot_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_multi_dot_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_norm_subgradients_at_zero_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_qr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_qr_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_slogdet_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_slogdet_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_solve_ex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_solve_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_svd_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_svdvals_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_tensorinv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_tensorsolve_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_vander_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_vander_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_vander_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_vecdot_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_vector_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_linspace_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linspace_tensor_overload_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linspace_tensor_overload_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_log1p_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_log1p_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_log1p_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_log1p_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_log2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_log2_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_log2_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_log2_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_log2_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_log2_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_normal_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_softmax_with_dtype_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_softmax_with_dtype_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_softmax_with_dtype_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logaddexp2_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_logaddexp2_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logaddexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_logcumsumexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logdet_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_logdet_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logdet_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_and_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_and_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_and_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_not_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_not_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_not_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_not_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_not_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_not_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_or_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_or_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_xor_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_xor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_logit_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_logit_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logspace_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_logspace_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logspace_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logspace_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logspace_tensor_overload_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logspace_tensor_overload_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_logsumexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logsumexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_logsumexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_long_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_long_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_long_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_long_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_long_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_long_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_lt_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_lt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_lu_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_lu_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mH_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mH_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_mH_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mT_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_mT_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mT_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_amax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_amin_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_amin_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_argmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_argmax_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_argmax_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_argmin_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_cumprod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_cumprod_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_cumprod_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_cumsum_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_cumsum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_fill_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_log_softmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_log_softmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_logaddexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_logsumexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_logsumexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_logsumexp_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_mean_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_median_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_prod_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_prod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_prod_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_select_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_select_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_softmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_std_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_std_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_std_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_sum_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_sum_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_sum_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_sum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_var_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_var_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_var_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_var_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_var_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_matmul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_matmul_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_matmul_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_matmul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_matrix_exp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_matrix_exp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_matrix_exp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_binary_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_binary_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_binary_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_binary_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_pool2d_with_indices_backward_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_pool2d_with_indices_backward_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_reduction_no_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_reduction_with_dim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_reduction_with_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_reduction_with_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_reduction_with_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_maximum_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_maximum_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_median_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_median_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_meshgrid_list_of_tensors_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_meshgrid_list_of_tensors_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_meshgrid_list_of_tensors_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_meshgrid_list_of_tensors_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_meshgrid_list_of_tensors_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_meshgrid_variadic_tensors_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_meshgrid_variadic_tensors_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_meshgrid_variadic_tensors_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_meshgrid_variadic_tensors_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_binary_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_binary_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_reduction_no_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_reduction_no_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_reduction_with_dim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_reduction_with_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_reduction_with_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_reduction_with_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_reduction_with_dim_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_minimum_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_minimum_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mm_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_mode_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_movedim_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_movedim_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_movedim_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_movedim_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_movedim_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_mul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mul_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_mul_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_multinomial_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mv_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mv_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_mvlgamma_mvlgamma_p_1_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mvlgamma_mvlgamma_p_3_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_mvlgamma_mvlgamma_p_3_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nan_to_num_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nanmean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nanmean_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nanmean_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nanmedian_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nansum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nansum_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nansum_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_narrow_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_narrow_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_narrow_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_narrow_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_narrow_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_native_batch_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_native_batch_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_native_layer_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_ne_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_ne_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_neg_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_strided_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_strided_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_strided_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_strided_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_full_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_full_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_ones_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_ones_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_ones_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_ones_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_zeros_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_zeros_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_zeros_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nextafter_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_adaptive_avg_pool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_adaptive_max_pool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_alpha_dropout_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_batch_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_bilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_bilinear_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_binary_cross_entropy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_binary_cross_entropy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_channel_shuffle_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_channel_shuffle_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_channel_shuffle_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv1d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv1d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv1d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv3d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv_transpose1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv_transpose2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv_transpose2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv_transpose3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv_transpose3d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv_transpose3d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_cosine_embedding_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_cosine_embedding_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_cosine_embedding_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_cosine_embedding_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_cross_entropy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_cross_entropy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_dropout2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_dropout3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_dropout3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_elu_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_embedding_bag_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_embedding_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_fractional_max_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_gelu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_gelu_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_glu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_glu_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_grid_sample_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_grid_sample_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_group_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_group_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_hardshrink_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_hardshrink_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_hardshrink_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_hardswish_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_hardtanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_hardtanh_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_hardtanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_hinge_embedding_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_huber_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_instance_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_bilinear_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_bilinear_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_linear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_linear_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_nearest-exact_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_nearest-exact_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_nearest_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_trilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_kl_div_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_l1_loss_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_layer_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_leaky_relu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_leaky_relu_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_linear_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_logsigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_margin_ranking_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_pool2d_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_pool2d_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_pool2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_pool2d_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_pool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_pool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_pool3d_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_pool3d_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_unpool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_unpool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_unpool1d_grad_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_unpool1d_grad_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_unpool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_unpool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_unpool3d_grad_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_mse_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_mse_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_multi_head_attention_forward_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_multilabel_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_multilabel_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_multilabel_soft_margin_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_nll_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_nll_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_normalize_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_normalize_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_circular_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_circular_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_constant_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_constant_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_constant_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_constant_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_reflect_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_reflect_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_reflect_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_replicate_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_replicate_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_replicate_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_replicate_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_replicate_negative_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_replicate_negative_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_replicate_negative_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_replicate_negative_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pairwise_distance_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pairwise_distance_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pairwise_distance_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pairwise_distance_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pdist_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pixel_shuffle_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pixel_shuffle_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pixel_shuffle_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pixel_shuffle_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pixel_unshuffle_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pixel_unshuffle_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pixel_unshuffle_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_poisson_nll_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_prelu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_relu6_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_relu6_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_relu6_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_relu6_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_relu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_relu_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_relu_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_rms_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_rms_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_rms_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_rrelu_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_scaled_dot_product_attention_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_selu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_selu_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_silu_complex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_silu_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_smooth_l1_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_soft_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softmin_with_dtype_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softshrink_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softsign_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softsign_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_tanhshrink_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_tanhshrink_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_tanhshrink_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_threshold_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_threshold_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_threshold_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_triplet_margin_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_triplet_margin_loss_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_triplet_margin_loss_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_triplet_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_unfold_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_upsample_bilinear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_upsample_bilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_upsample_nearest_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_upsample_nearest_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_upsample_nearest_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nonzero_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_nonzero_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_nonzero_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nonzero_static_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_nonzero_static_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nonzero_static_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nonzero_static_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nonzero_static_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nonzero_static_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_norm_fro_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_norm_fro_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_norm_inf_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_norm_nuc_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_normal_in_place_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_normal_in_place_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_normal_number_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_normal_number_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_ones_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_ones_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_ones_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_ones_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_ones_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_ones_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_ones_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_outer_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_outer_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_outer_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_outer_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_0_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_0_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_1_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_1_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_1_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_2_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_2_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_2_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_3_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_3_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_4_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_4_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_positive_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_positive_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_positive_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_pow_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_pow_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_pow_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_put_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_put_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_qr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_rad2deg_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_rand_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_rand_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_randint_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_randint_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_randint_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_randint_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_randint_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_randint_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_randint_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_randn_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_randn_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_randn_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_randn_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_ravel_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_ravel_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_real_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_real_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_real_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_real_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_real_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_reciprocal_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_reciprocal_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_reciprocal_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_reciprocal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_remainder_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_remainder_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_repeat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_repeat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_repeat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_repeat_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_repeat_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_repeat_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_repeat_interleave_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_repeat_interleave_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_repeat_interleave_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_repeat_interleave_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_repeat_interleave_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_reshape_as_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_reshape_as_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_reshape_as_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_reshape_as_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_reshape_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_reshape_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_resize__cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_resize__cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_resize__cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_resize_as__cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_resize_as__cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_resize_as__cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_resolve_conj_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_resolve_conj_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_resolve_conj_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_resolve_neg_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_resolve_neg_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_resolve_neg_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_roll_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_roll_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_rot90_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_rot90_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_rot90_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_round_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_round_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_rsqrt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_rsqrt_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_rsqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_rsqrt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_rsub_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_rsub_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_rsub_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_scalar_tensor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_scalar_tensor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_add_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_add_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_add_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_amax_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_amax_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_amin_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_amin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_mean_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_sum_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_sum_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_sum_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_sum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_searchsorted_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_searchsorted_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_searchsorted_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_searchsorted_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_searchsorted_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_select_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_select_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_select_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_select_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_select_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_select_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sgn_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sgn_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sgn_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sgn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_short_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_short_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_short_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_short_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_sigmoid_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_sign_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sign_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sign_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sign_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_sign_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_signal_windows_cosine_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_signal_windows_cosine_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_signal_windows_exponential_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_signal_windows_general_cosine_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_signal_windows_hann_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_signal_windows_nuttall_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_signbit_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_sinc_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sinc_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sinh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sinh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sinh_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_slice_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_slice_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_slice_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_slice_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_slice_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_slice_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_softmax_with_dtype_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_softmax_with_dtype_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_sort_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sort_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sparse_mm_reduce_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sparse_sampled_addmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_airy_ai_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_airy_ai_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_airy_ai_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_j1_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_j1_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_y0_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_y0_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_y0_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_y1_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_t_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_u_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_u_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_v_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_v_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_w_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_w_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_w_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_entr_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_entr_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_entr_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_erfcx_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_hermite_polynomial_h_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_hermite_polynomial_h_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_hermite_polynomial_he_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_i0e_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_i0e_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_i1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_i1_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_i1_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_laguerre_polynomial_l_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_laguerre_polynomial_l_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_legendre_polynomial_p_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_legendre_polynomial_p_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_legendre_polynomial_p_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_legendre_polynomial_p_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_log_ndtr_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_log_ndtr_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_i0_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_i0_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_i1_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_k0_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_k1_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_k1_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_k1_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_ndtr_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_ndtr_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_ndtr_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_ndtri_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_scaled_modified_bessel_k0_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_scaled_modified_bessel_k0_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_scaled_modified_bessel_k0_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_scaled_modified_bessel_k1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_t_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_u_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_v_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_v_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_w_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_w_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_spherical_bessel_j0_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_spherical_bessel_j0_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_xlog1py_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_zeta_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_zeta_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_list_args_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_list_args_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_list_args_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_list_args_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_with_sizes_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_with_sizes_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_with_sizes_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_with_sizes_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_with_sizes_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_with_sizes_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_with_sizes_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sqrt_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_square_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_square_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_multiple_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_multiple_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_stack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_stack_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_stack_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_stack_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_stack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_std_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_std_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_std_mean_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_std_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_std_mean_unbiased_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_std_mean_unbiased_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_std_unbiased_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_stft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_stft_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sub_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sub_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sum_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_sum_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sum_to_size_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sum_to_size_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sum_to_size_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sum_to_size_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_svd_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_svd_lowrank_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_svd_lowrank_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_t_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_t_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_t_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_t_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_t_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_t_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_t_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_t_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_take_along_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_take_along_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_take_along_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_take_along_dim_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_take_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_take_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_take_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_tan_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_tan_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_tan_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_tanh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_tensor_split_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_tensor_split_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_tensor_split_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_tensor_split_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_tensordot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_tile_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_tile_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_tile_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_to_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_to_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_to_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_to_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_to_sparse_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_to_sparse_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_to_sparse_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_topk_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_topk_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_topk_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_torch__scaled_mm_cpu_float8_e4m3fnuz, test/test_meta.py::TestMetaCPU::test_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_trace_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_transpose_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_transpose_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_transpose_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_trapezoid_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_trapezoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_trapezoid_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_trapz_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_trapz_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_trapz_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_tril_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_tril_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_tril_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_tril_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_triu_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_triu_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_triu_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_true_divide_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_true_divide_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_true_divide_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_true_divide_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_trunc_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_trunc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_unbind_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unbind_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_unbind_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unbind_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unbind_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unbind_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unbind_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_unbind_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_unflatten_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unflatten_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_unflatten_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unflatten_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unfold_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unfold_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_unique_consecutive_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unique_consecutive_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_unique_consecutive_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unique_consecutive_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_unique_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unique_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unravel_index_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unravel_index_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsafe_split_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsafe_split_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsafe_split_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsafe_split_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_var_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_var_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_var_unbiased_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_var_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_vdot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_vdot_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_as_complex_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_as_complex_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_as_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_as_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_as_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_as_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_as_real_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_vsplit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_vsplit_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_vsplit_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_vstack_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_vstack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_vstack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_vstack_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_vstack_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_vstack_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_where_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_where_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_where_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_where_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_where_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_where_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_where_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_xlogy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_xlogy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_xlogy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_xlogy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_zero__cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_zero__cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_zero__cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_zero__cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_zero__cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_zero__cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_zeros_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_zeros_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_zeros_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_zeros_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_zeros_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_zeros_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_zeros_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_zeros_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_stride_for_index_Tensor_cpu, test/test_meta.py::TestMetaCPU::test_triangular_solve_out_cpu 2025-08-26T22:39:39.9615539Z 2025-08-26T22:39:41.4794479Z Running nn/test_init 1/1 ... [2025-08-26 22:39:41.479270] 2025-08-26T22:39:41.4800509Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-26T22:39:41.4801590Z 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-26 22:39:41.479919] 2025-08-26T22:40:47.5222857Z 2025-08-26T22:40:47.5223754Z test_unary_ufuncs 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_unary_ufuncs_1.1_c2edb67cae865679_.log 2025-08-26T22:40:48.4631276Z 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-26T22:40:49.3336710Z 2025-08-26T22:42:26.4348838Z 2025-08-26T22:42:26.4349933Z nn/test_init 1/1 was successful, full logs can be found in artifacts with path test/test-reports/nn.test_init_1.1_4f93767fc7d3dada_.log 2025-08-26T22:42:26.4358024Z 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-26T22:42:26.4365053Z 2025-08-26T22:42:27.3581080Z Running test batch 'tests to run' cost 6999.35 seconds 2025-08-26T22:42:27.3605506Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T22:42:27.3606114Z Uploading artifacts took 0.00 seconds 2025-08-26T22:42:27.3606645Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T22:42:27.3607119Z Uploading artifacts took 0.00 seconds 2025-08-26T22:42:27.3607603Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T22:42:27.3608066Z Uploading artifacts took 0.00 seconds 2025-08-26T22:42:27.3608527Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T22:42:27.3609025Z Uploading artifacts took 0.00 seconds 2025-08-26T22:42:27.3609573Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-26T22:42:27.3610032Z Uploading artifacts took 0.00 seconds 2025-08-26T22:42:28.0963841Z 2025-08-26T22:42:28.0964505Z (base) C:\actions-runner\_work\pytorch\pytorch\test>if ERRORLEVEL 1 goto fail 2025-08-26T22:42:28.0964945Z 2025-08-26T22:42:28.0965511Z (base) C:\actions-runner\_work\pytorch\pytorch\test>popd 2025-08-26T22:42:28.0969990Z 2025-08-26T22:42:28.0970369Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-26T22:42:28.0993604Z + [[ 2 == 1 ]] 2025-08-26T22:42:28.0993914Z + [[ 2 == 2 ]] 2025-08-26T22:42:28.0994182Z + [[ 3 -gt 1 ]] 2025-08-26T22:42:28.0994691Z + /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers/test_custom_backend.bat 2025-08-26T22:42:28.1133112Z 2025-08-26T22:42:28.1135520Z C:\actions-runner\_work\pytorch\pytorch>call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\setup_pytorch_env.bat 2025-08-26T22:42:28.1142838Z 2025-08-26T22:42:28.1145367Z C:\actions-runner\_work\pytorch\pytorch>set PATH=C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps 2025-08-26T22:42:28.1147783Z 2025-08-26T22:42:28.1148305Z C:\actions-runner\_work\pytorch\pytorch>set INSTALLER_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers 2025-08-26T22:42:28.1149374Z 2025-08-26T22:42:28.1150189Z C:\actions-runner\_work\pytorch\pytorch>call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers\activate_miniconda3.bat 2025-08-26T22:42:28.1160819Z 2025-08-26T22:42:28.1161484Z C:\actions-runner\_work\pytorch\pytorch>if "win-vs2022-cpu-py3" == "" (set CONDA_PARENT_DIR=C:\actions-runner\_work\pytorch\pytorch ) else (set CONDA_PARENT_DIR=C:\Jenkins ) 2025-08-26T22:42:28.1166198Z 2025-08-26T22:42:28.1166601Z C:\actions-runner\_work\pytorch\pytorch>if not exist C:\Jenkins\Miniconda3 (set INSTALL_FRESH_CONDA=1 ) 2025-08-26T22:42:28.1169366Z 2025-08-26T22:42:28.1169663Z C:\actions-runner\_work\pytorch\pytorch>if "" == "1" ( 2025-08-26T22:42:28.1170718Z curl --retry 3 --retry-all-errors -k https://repo.anaconda.com/miniconda/Miniconda3-latest-Windows-x86_64.exe --output C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\Miniconda3-latest-Windows-x86_64.exe 2025-08-26T22:42:28.1171716Z if errorlevel 1 exit /b 2025-08-26T22:42:28.1172041Z if not errorlevel 0 exit /b 2025-08-26T22:42:28.1172958Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\Miniconda3-latest-Windows-x86_64.exe /InstallationType=JustMe /RegisterPython=0 /S /AddToPath=0 /D=C:\Jenkins\Miniconda3 2025-08-26T22:42:28.1173814Z if errorlevel 1 exit /b 2025-08-26T22:42:28.1174086Z if not errorlevel 0 exit /b 2025-08-26T22:42:28.1174377Z ) 2025-08-26T22:42:28.1174491Z 2025-08-26T22:42:28.1174883Z C:\actions-runner\_work\pytorch\pytorch>call C:\Jenkins\Miniconda3\Scripts\activate.bat C:\Jenkins\Miniconda3 2025-08-26T22:42:28.7672342Z Overwrite C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py (Yes/No/All)? qM~��k�7����X�@��X�0)����X�>�-������X�@��X��X���X���X�^^-��0s��@��X��p����X�''�핱�j!qA���핱�"qA�� 2025-08-26T22:42:28.7674372Z �V��&����~��0�����X����~��0���4�-��(�~��p�����P`=��`=���X�q�X��x�~������C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.pyX�X���|��p�X���Ē�����~��0�����X� 2025-08-26T22:42:28.7675672Z �`�~��������В�(�~��p�������������~�������ð����*��~�������ð����*��~�������ð����*��*��*����~��0����X�O\JkiA? 2025-08-26T22:42:28.7676233Z 2025-08-26T22:42:28.7677989Z ix�~������C:\Jenkins\Miniconda3\Lib\site-packages\torch\functional.py��~��0���`�X�;�-+ 2025-08-26T22:42:28.7679218Z 2025-08-26T22:42:28.7679962Z � �� ��0K��N���� ��)0S��� ��� ���� ��K��Оv��� ��� ��'0�Y���핱�0���핱�(qA��'����@ 2025-08-26T22:42:28.7682413Z �V��&�\�Z;��'����@��X�B �X��X���X����X�=������������0�=��P`=��`=���q�X�� �X�0�=��P`=���(���X���.��7���@��X��(���-�����`n��J4-��`n��`n���X��X��X�@�����Y���|��(�X�q��x��X����@���@�������@��X��/-�������X�@��X�q�������X��~������������q��������x�~������C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py�������2�~�������~��p���@����������~�������~��p���������������~�������~��p������������~�������~��p���������~��0��� �X�O�A? 2025-08-26T22:42:28.7683929Z 2025-08-26T22:42:28.7685654Z �~������C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\�~��0�����X�BA?x�~�������(��~�������~��p���������@ ���~�������~��p��������I��X��~�����������~��p���P������~���������~��p���@���:0qA 2025-08-26T22:42:28.8705103Z Overwrite C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py (Yes/No/All)? ********************************************************************** 2025-08-26T22:42:28.8706168Z ** Visual Studio 2022 Developer Command Prompt v17.12.10 2025-08-26T22:42:28.8706564Z ** Copyright (c) 2022 Microsoft Corporation 2025-08-26T22:42:28.8706924Z ********************************************************************** 2025-08-26T22:42:29.3091981Z [vcvarsall.bat] Environment initialized for: 'x64' 2025-08-26T22:42:29.3125223Z 2025-08-26T22:42:29.3125794Z (base) C:\actions-runner\_work\pytorch\pytorch>popd 2025-08-26T22:42:29.3129335Z 2025-08-26T22:42:29.3129820Z (base) C:\actions-runner\_work\pytorch\pytorch>set DISTUTILS_USE_SDK=1 2025-08-26T22:42:29.3132183Z 2025-08-26T22:42:29.3132637Z (base) C:\actions-runner\_work\pytorch\pytorch>if not "0" == "1" goto cuda_build_end 2025-08-26T22:42:29.3135119Z 2025-08-26T22:42:29.3135673Z (base) C:\actions-runner\_work\pytorch\pytorch>set PYTHONPATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build; 2025-08-26T22:42:29.3137715Z 2025-08-26T22:42:29.3137986Z (base) C:\actions-runner\_work\pytorch\pytorch>set 2025-08-26T22:42:29.3307046Z ACTIONS_ID_TOKEN_REQUEST_TOKEN=*** 2025-08-26T22:42:29.3308153Z ACTIONS_ID_TOKEN_REQUEST_URL=https://run-actions-1-azure-eastus.actions.githubusercontent.com/119//idtoken/403c8e96-de86-4002-bfa2-f61cede70191/bf3acfbe-1a7d-550c-ab40-3a4de6923adc?api-version=2.0 2025-08-26T22:42:29.3309305Z ACTIONS_RUNNER_HOOK_JOB_COMPLETED=C:\actions-runner\jobcompleted.ps1 2025-08-26T22:42:29.3309742Z ALLUSERSPROFILE=C:\ProgramData 2025-08-26T22:42:29.3310196Z ALPINE_IMAGE=308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2025-08-26T22:42:29.3310678Z APPDATA=C:\Users\runneruser\AppData\Roaming 2025-08-26T22:42:29.3311020Z AWS_DEFAULT_REGION=us-east-1 2025-08-26T22:42:29.3311388Z AWS_EXECUTION_ENV=EC2 2025-08-26T22:42:29.3311664Z BUILD_ENVIRONMENT=win-vs2022-cpu-py3 2025-08-26T22:42:29.3312042Z CI=true 2025-08-26T22:42:29.3312269Z CommandPromptType=Native 2025-08-26T22:42:29.3312639Z COMMONPROGRAMFILES=C:\Program Files\Common Files 2025-08-26T22:42:29.3313014Z COMPUTERNAME=EC2AMAZ-TE6SPGV 2025-08-26T22:42:29.3313335Z COMSPEC=C:\Windows\system32\cmd.exe 2025-08-26T22:42:29.3313736Z CONDA_BUILD=C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T22:42:29.3314181Z CONDA_DEFAULT_ENV=base 2025-08-26T22:42:29.3314497Z CONDA_EXE=C:\Jenkins\Miniconda3\Scripts\conda.exe 2025-08-26T22:42:29.3314925Z CONDA_INSTALL=C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T22:42:29.3315354Z CONDA_PARENT_DIR=C:\Jenkins 2025-08-26T22:42:29.3315638Z CONDA_PREFIX=C:\Jenkins\Miniconda3 2025-08-26T22:42:29.3315969Z CONDA_PROMPT_MODIFIER=(base) 2025-08-26T22:42:29.3316292Z CONDA_PYTHON_EXE=C:\Jenkins\Miniconda3\python.exe 2025-08-26T22:42:29.3316802Z CONDA_RUN=C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T22:42:29.3317283Z CONDA_SHLVL=1 2025-08-26T22:42:29.3317629Z CONTINUE_THROUGH_ERROR=True 2025-08-26T22:42:29.3318041Z CUDA_PATH=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.9 2025-08-26T22:42:29.3318558Z CUDA_PATH_V12_6=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-08-26T22:42:29.3319110Z CUDA_PATH_V12_8=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.8 2025-08-26T22:42:29.3319623Z CUDA_PATH_V12_9=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.9 2025-08-26T22:42:29.3320055Z CUDA_VERSION=cpu 2025-08-26T22:42:29.3320327Z ChocolateyInstall=C:\ProgramData\chocolatey 2025-08-26T22:42:29.3320768Z CommonProgramFiles(x86)=C:\Program Files (x86)\Common Files 2025-08-26T22:42:29.3321237Z CommonProgramW6432=C:\Program Files\Common Files 2025-08-26T22:42:29.3321739Z DevEnvDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\ 2025-08-26T22:42:29.3322226Z DISTUTILS_USE_SDK=1 2025-08-26T22:42:29.3322514Z DriverData=C:\Windows\System32\Drivers\DriverData 2025-08-26T22:42:29.3322933Z EC2LAUNCH_TELEMETRY=1 2025-08-26T22:42:29.3323610Z ExtensionSdkDir=C:\Program Files (x86)\Microsoft SDKs\Windows Kits\10\ExtensionSDKs 2025-08-26T22:42:29.3325979Z EXTERNAL_INCLUDE=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um 2025-08-26T22:42:29.3328112Z Framework40Version=v4.0 2025-08-26T22:42:29.3328508Z FrameworkDir=C:\Windows\Microsoft.NET\Framework64\ 2025-08-26T22:42:29.3328967Z FrameworkDir64=C:\Windows\Microsoft.NET\Framework64\ 2025-08-26T22:42:29.3329478Z FrameworkVersion=v4.0.30319 2025-08-26T22:42:29.3329764Z FrameworkVersion64=v4.0.30319 2025-08-26T22:42:29.3330071Z GITHUB_ACTION=test 2025-08-26T22:42:29.3330305Z GITHUB_ACTIONS=true 2025-08-26T22:42:29.3330564Z GITHUB_ACTION_REF= 2025-08-26T22:42:29.3330803Z GITHUB_ACTION_REPOSITORY= 2025-08-26T22:42:29.3331106Z GITHUB_ACTOR=pytorchmergebot 2025-08-26T22:42:29.3331403Z GITHUB_ACTOR_ID=97764156 2025-08-26T22:42:29.3331682Z GITHUB_API_URL=https://api.github.com 2025-08-26T22:42:29.3332008Z GITHUB_BASE_REF= 2025-08-26T22:42:29.3332479Z GITHUB_ENV=C:\actions-runner\_work\_temp\_runner_file_commands\set_env_9e80edba-99c0-4986-a90e-23cf49ba9f81 2025-08-26T22:42:29.3333046Z GITHUB_EVENT_NAME=push 2025-08-26T22:42:29.3333424Z GITHUB_EVENT_PATH=C:\actions-runner\_work\_temp\_github_workflow\event.json 2025-08-26T22:42:29.3333931Z GITHUB_GRAPHQL_URL=https://api.github.com/graphql 2025-08-26T22:42:29.3334277Z GITHUB_HEAD_REF= 2025-08-26T22:42:29.3334527Z GITHUB_JOB=test 2025-08-26T22:42:29.3335135Z GITHUB_OUTPUT=C:\actions-runner\_work\_temp\_runner_file_commands\set_output_9e80edba-99c0-4986-a90e-23cf49ba9f81 2025-08-26T22:42:29.3335945Z GITHUB_PATH=C:\actions-runner\_work\_temp\_runner_file_commands\add_path_9e80edba-99c0-4986-a90e-23cf49ba9f81 2025-08-26T22:42:29.3336519Z GITHUB_REF=refs/heads/main 2025-08-26T22:42:29.3336786Z GITHUB_REF_NAME=main 2025-08-26T22:42:29.3337062Z GITHUB_REF_PROTECTED=true 2025-08-26T22:42:29.3337318Z GITHUB_REF_TYPE=branch 2025-08-26T22:42:29.3337609Z GITHUB_REPOSITORY=pytorch/pytorch 2025-08-26T22:42:29.3337912Z GITHUB_REPOSITORY_ID=65600975 2025-08-26T22:42:29.3338222Z GITHUB_REPOSITORY_OWNER=pytorch 2025-08-26T22:42:29.3338531Z GITHUB_REPOSITORY_OWNER_ID=21003710 2025-08-26T22:42:29.3338833Z GITHUB_RETENTION_DAYS=90 2025-08-26T22:42:29.3339168Z GITHUB_RUN_ATTEMPT=1 2025-08-26T22:42:29.3339414Z GITHUB_RUN_ID=17248463647 2025-08-26T22:42:29.3339758Z GITHUB_RUN_NUMBER=141812 2025-08-26T22:42:29.3340152Z GITHUB_SERVER_URL=https://github.com 2025-08-26T22:42:29.3340527Z GITHUB_SHA=262640fd220236042fbf4443cc163c8838c84c3d 2025-08-26T22:42:29.3341140Z GITHUB_STATE=C:\actions-runner\_work\_temp\_runner_file_commands\save_state_9e80edba-99c0-4986-a90e-23cf49ba9f81 2025-08-26T22:42:29.3342012Z GITHUB_STEP_SUMMARY=C:\actions-runner\_work\_temp\_runner_file_commands\step_summary_9e80edba-99c0-4986-a90e-23cf49ba9f81 2025-08-26T22:42:29.3342740Z GITHUB_TRIGGERING_ACTOR=pytorchmergebot 2025-08-26T22:42:29.3343052Z GITHUB_WORKFLOW=trunk 2025-08-26T22:42:29.3343491Z GITHUB_WORKFLOW_REF=pytorch/pytorch/.github/workflows/trunk.yml@refs/heads/main 2025-08-26T22:42:29.3344015Z GITHUB_WORKFLOW_SHA=262640fd220236042fbf4443cc163c8838c84c3d 2025-08-26T22:42:29.3344482Z GITHUB_WORKSPACE=C:\actions-runner\_work\pytorch\pytorch 2025-08-26T22:42:29.3344847Z GIT_DEFAULT_BRANCH=main 2025-08-26T22:42:29.3345128Z HOME=C:\Users\runneruser 2025-08-26T22:42:29.3347776Z INCLUDE=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um 2025-08-26T22:42:29.3350415Z INSTALLER_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers 2025-08-26T22:42:29.3351003Z INSTALL_WINDOWS_SDK=1 2025-08-26T22:42:29.3351284Z is_x64_arch=true 2025-08-26T22:42:29.3351509Z JOB_ID=48947911970 2025-08-26T22:42:29.3351926Z JOB_NAME=win-vs2022-cpu-py3 / test (default, 2, 3, windows.4xlarge.nonephemeral) 2025-08-26T22:42:29.3353140Z LIB=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\lib\x64;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64;C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\ucrt\x64;C:\Program Files (x86)\Windows Kits\10\\lib\10.0.19041.0\\um\x64 2025-08-26T22:42:29.3355460Z LIBPATH=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\lib\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\lib\x86\store\references;C:\Program Files (x86)\Windows Kits\10\UnionMetadata\10.0.19041.0;C:\Program Files (x86)\Windows Kits\10\References\10.0.19041.0;C:\Windows\Microsoft.NET\Framework64\v4.0.30319 2025-08-26T22:42:29.3357056Z LOCALAPPDATA=C:\Users\runneruser\AppData\Local 2025-08-26T22:42:29.3357598Z NETFXSDKDir=C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\ 2025-08-26T22:42:29.3358007Z NO_TD=False 2025-08-26T22:42:29.3358251Z NO_TEST_TIMEOUT=False 2025-08-26T22:42:29.3358504Z NUMBER_OF_PROCESSORS=16 2025-08-26T22:42:29.3358772Z NUM_TEST_SHARDS=3 2025-08-26T22:42:29.3359020Z OLDPWD=C:/17248463647/build-results 2025-08-26T22:42:29.3359346Z OS=Windows_NT 2025-08-26T22:42:29.3366300Z PATH=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\bin\HostX64\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\VCPackages;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\MSBuild\Current\bin\Roslyn;C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\Extensions\Microsoft\CodeCoverage.Console;C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\\x64;C:\Program Files (x86)\Windows Kits\10\bin\\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\\MSBuild\Current\Bin\amd64;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\;C:\Jenkins\Miniconda3;C:\Jenkins\Miniconda3\Library\mingw-w64\bin;C:\Jenkins\Miniconda3\Library\usr\bin;C:\Jenkins\Miniconda3\Library\bin;C:\Jenkins\Miniconda3\Scripts;C:\Jenkins\Miniconda3\bin;C:\Jenkins\Miniconda3\condabin;C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\Llvm\x64\bin;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\Linux\bin\ConnectionManagerExe 2025-08-26T22:42:29.3373691Z PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC 2025-08-26T22:42:29.3374562Z Platform=x64 2025-08-26T22:42:29.3374805Z PROCESSOR_ARCHITECTURE=AMD64 2025-08-26T22:42:29.3375235Z PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 85 Stepping 7, GenuineIntel 2025-08-26T22:42:29.3375655Z PROCESSOR_LEVEL=6 2025-08-26T22:42:29.3375932Z PROCESSOR_REVISION=5507 2025-08-26T22:42:29.3376223Z PROGRAMFILES=C:\Program Files 2025-08-26T22:42:29.3376558Z PROJECT_DIR=C:/actions-runner/_work/pytorch/pytorch 2025-08-26T22:42:29.3376997Z PROJECT_DIR_WIN=C:\actions-runner\_work\pytorch\pytorch 2025-08-26T22:42:29.3377363Z PROMPT=(base) $P$G 2025-08-26T22:42:29.3377622Z PR_NUMBER= 2025-08-26T22:42:29.3378103Z PSModulePath=C:\Windows\system32\WindowsPowerShell\v1.0\Modules;C:\Program Files\WindowsPowerShell\Modules 2025-08-26T22:42:29.3378689Z PUBLIC=C:\Users\Public 2025-08-26T22:42:29.3379088Z *** 2025-08-26T22:42:29.3379424Z PYTHONPATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build; 2025-08-26T22:42:29.3379887Z PYTHON_VERSION=3.9 2025-08-26T22:42:29.3380282Z PYTORCH_FINAL_PACKAGE_DIR=C:/17248463647/build-results/ 2025-08-26T22:42:29.3380740Z PYTORCH_FINAL_PACKAGE_DIR_WIN=C:\17248463647\build-results\ 2025-08-26T22:42:29.3381127Z PYTORCH_TEST_CUDA_MEM_LEAK_CHECK=0 2025-08-26T22:42:29.3381469Z PYTORCH_TEST_RERUN_DISABLED_TESTS=0 2025-08-26T22:42:29.3381776Z ProgramData=C:\ProgramData 2025-08-26T22:42:29.3382097Z ProgramFiles(x86)=C:\Program Files (x86) 2025-08-26T22:42:29.3382418Z ProgramW6432=C:\Program Files 2025-08-26T22:42:29.3382732Z REENABLED_ISSUES= 2025-08-26T22:42:29.3382993Z RUNNER_ARCH=X64 2025-08-26T22:42:29.3383234Z RUNNER_ENVIRONMENT=self-hosted 2025-08-26T22:42:29.3383540Z RUNNER_NAME=i-07498329a9125d143 2025-08-26T22:42:29.3383801Z RUNNER_OS=Windows 2025-08-26T22:42:29.3384083Z RUNNER_TEMP=C:\actions-runner\_work\_temp 2025-08-26T22:42:29.3384455Z RUNNER_TOOL_CACHE=C:\actions-runner\_work\_tool 2025-08-26T22:42:29.3384896Z RUNNER_TRACKING_ID=github_95194c4b-d400-4ebf-b87d-497f68b85df1 2025-08-26T22:42:29.3385331Z RUNNER_WORKSPACE=C:\actions-runner\_work\pytorch 2025-08-26T22:42:29.3385883Z SCRIPT_HELPERS_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-08-26T22:42:29.3386490Z SHA1=262640fd220236042fbf4443cc163c8838c84c3d 2025-08-26T22:42:29.3386812Z SHARD_NUMBER=2 2025-08-26T22:42:29.3387236Z SHLVL=2 2025-08-26T22:42:29.3387615Z SSL_CERT_FILE=C:\Jenkins\Miniconda3\Library\ssl\cacert.pem 2025-08-26T22:42:29.3388011Z SYSTEMDRIVE=C: 2025-08-26T22:42:29.3388240Z SYSTEMROOT=C:\Windows 2025-08-26T22:42:29.3388536Z TEMP=C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T22:42:29.3388852Z TERM=xterm-256color 2025-08-26T22:42:29.3389115Z TEST_CONFIG=default 2025-08-26T22:42:29.3389430Z TEST_DIR=C:/actions-runner/_work/pytorch/pytorch/test 2025-08-26T22:42:29.3389848Z TEST_DIR_WIN=C:\actions-runner\_work\pytorch\pytorch\test 2025-08-26T22:42:29.3390236Z TEST_SHOWLOCALS=False 2025-08-26T22:42:29.3390505Z TMP=C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T22:42:29.3390877Z TMPDIR=C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T22:42:29.3391289Z TMP_DIR=C:/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-08-26T22:42:29.3391782Z TMP_DIR_WIN=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp 2025-08-26T22:42:29.3392169Z TORCH_CUDA_ARCH_LIST=8.6 2025-08-26T22:42:29.3392468Z TORCH_SERIALIZATION_DEBUG=1 2025-08-26T22:42:29.3392761Z UCRTVersion=10.0.19041.0 2025-08-26T22:42:29.3393098Z UniversalCRTSdkDir=C:\Program Files (x86)\Windows Kits\10\ 2025-08-26T22:42:29.3393515Z UPDATEFILE=update.finished 2025-08-26T22:42:29.3393789Z USERDOMAIN=EC2AMAZ-TE6SPGV 2025-08-26T22:42:29.3394074Z USERNAME=runneruser 2025-08-26T22:42:29.3394325Z USERPROFILE=C:\Users\runneruser 2025-08-26T22:42:29.3394628Z USE_CUDA=0 2025-08-26T22:42:29.3395043Z VCIDEInstallDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\ 2025-08-26T22:42:29.3395705Z VCINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\ 2025-08-26T22:42:29.3396548Z VCToolsInstallDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\ 2025-08-26T22:42:29.3397443Z VCToolsRedistDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Redist\MSVC\14.42.34433\ 2025-08-26T22:42:29.3398012Z VCToolsVersion=14.42.34433 2025-08-26T22:42:29.3398284Z VC_PRODUCT=BuildTools 2025-08-26T22:42:29.3398545Z VC_VERSION= 2025-08-26T22:42:29.3398745Z VC_YEAR=2022 2025-08-26T22:42:29.3399001Z VERBOSE_ARG='SilentlyContinue' 2025-08-26T22:42:29.3399294Z VERBOSE_TEST_LOGS=False 2025-08-26T22:42:29.3399584Z VisualStudioVersion=17.0 2025-08-26T22:42:29.3400193Z VS170COMNTOOLS=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\ 2025-08-26T22:42:29.3400697Z VSCMD_ARG_app_plat=Desktop 2025-08-26T22:42:29.3400992Z VSCMD_ARG_HOST_ARCH=x64 2025-08-26T22:42:29.3401237Z VSCMD_ARG_TGT_ARCH=x64 2025-08-26T22:42:29.3401503Z VSCMD_VER=17.12.10 2025-08-26T22:42:29.3401905Z VSINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\ 2025-08-26T22:42:29.3402367Z VS_VERSION=17.4.1 2025-08-26T22:42:29.3402593Z WINDIR=C:\Windows 2025-08-26T22:42:29.3403204Z WindowsLibPath=C:\Program Files (x86)\Windows Kits\10\UnionMetadata\10.0.19041.0;C:\Program Files (x86)\Windows Kits\10\References\10.0.19041.0 2025-08-26T22:42:29.3403969Z WindowsSdkBinPath=C:\Program Files (x86)\Windows Kits\10\bin\ 2025-08-26T22:42:29.3404429Z WindowsSdkDir=C:\Program Files (x86)\Windows Kits\10\ 2025-08-26T22:42:29.3404823Z WindowsSDKLibVersion=10.0.19041.0\ 2025-08-26T22:42:29.3405257Z WindowsSdkVerBinPath=C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\ 2025-08-26T22:42:29.3405746Z WindowsSDKVersion=10.0.19041.0\ 2025-08-26T22:42:29.3406264Z WindowsSDK_ExecutablePath_x64=C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\ 2025-08-26T22:42:29.3407176Z WindowsSDK_ExecutablePath_x86=C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\ 2025-08-26T22:42:29.3407955Z _=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers/test_custom_backend.bat 2025-08-26T22:42:29.3408488Z __CONDA_OPENSLL_CERT_FILE_SET="1" 2025-08-26T22:42:29.3408797Z __DOTNET_ADD_64BIT=1 2025-08-26T22:42:29.3409066Z __DOTNET_PREFERRED_BITNESS=64 2025-08-26T22:42:29.3412188Z __VSCMD_PREINIT_PATH=C:\Jenkins\Miniconda3;C:\Jenkins\Miniconda3\Library\mingw-w64\bin;C:\Jenkins\Miniconda3\Library\usr\bin;C:\Jenkins\Miniconda3\Library\bin;C:\Jenkins\Miniconda3\Scripts;C:\Jenkins\Miniconda3\bin;C:\Jenkins\Miniconda3\condabin;C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps 2025-08-26T22:42:29.3415236Z 2025-08-26T22:42:29.3415592Z (base) C:\actions-runner\_work\pytorch\pytorch>git submodule update --init --recursive third_party/pybind11 2025-08-26T22:42:29.7344573Z 2025-08-26T22:42:29.7345342Z (base) C:\actions-runner\_work\pytorch\pytorch>cd test\custom_backend 2025-08-26T22:42:29.7349311Z 2025-08-26T22:42:29.7349904Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_backend>mkdir build 2025-08-26T22:42:29.7353157Z 2025-08-26T22:42:29.7353434Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_backend>pushd build 2025-08-26T22:42:29.7358172Z 2025-08-26T22:42:29.7358619Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_backend\build>echo "Executing CMake for custom_backend test..." 2025-08-26T22:42:29.7359279Z "Executing CMake for custom_backend test..." 2025-08-26T22:42:29.7360615Z 2025-08-26T22:42:29.7361946Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_backend\build>cmake -DCMAKE_PREFIX_PATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch -DCMAKE_BUILD_TYPE=Release -GNinja .. 2025-08-26T22:42:35.0939415Z -- The C compiler identification is MSVC 19.42.34444.0 2025-08-26T22:42:35.3118196Z -- The CXX compiler identification is MSVC 19.42.34444.0 2025-08-26T22:42:35.3489292Z -- Detecting C compiler ABI info 2025-08-26T22:42:36.9566388Z -- Detecting C compiler ABI info - done 2025-08-26T22:42:36.9590761Z -- Check for working C compiler: C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.42.34433/bin/Hostx64/x64/cl.exe - skipped 2025-08-26T22:42:36.9610335Z -- Detecting C compile features 2025-08-26T22:42:36.9635212Z -- Detecting C compile features - done 2025-08-26T22:42:37.0329030Z -- Detecting CXX compiler ABI info 2025-08-26T22:42:37.3053341Z -- Detecting CXX compiler ABI info - done 2025-08-26T22:42:37.3077433Z -- Check for working CXX compiler: C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.42.34433/bin/Hostx64/x64/cl.exe - skipped 2025-08-26T22:42:37.3081648Z -- Detecting CXX compile features 2025-08-26T22:42:37.3089698Z -- Detecting CXX compile features - done 2025-08-26T22:42:37.6134735Z -- Found Torch: C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/build/torch/lib/torch.lib 2025-08-26T22:42:37.6137101Z -- Configuring done 2025-08-26T22:42:37.6269881Z -- Generating done 2025-08-26T22:42:37.6420007Z -- Build files have been written to: C:/actions-runner/_work/pytorch/pytorch/test/custom_backend/build 2025-08-26T22:42:37.6476837Z 2025-08-26T22:42:37.6477577Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_backend\build>if ERRORLEVEL 1 exit /b 1 2025-08-26T22:42:37.6478133Z 2025-08-26T22:42:37.6478657Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_backend\build>echo "Executing Ninja for custom_backend test..." 2025-08-26T22:42:37.6479352Z "Executing Ninja for custom_backend test..." 2025-08-26T22:42:37.6480182Z 2025-08-26T22:42:37.6480731Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_backend\build>ninja -v 2025-08-26T22:42:44.0277604Z [1/4] C:\PROGRA~2\MICROS~1\2022\BUILDT~1\VC\Tools\MSVC\1442~1.344\bin\Hostx64\x64\cl.exe /nologo /TP -DUSE_C10D_GLOO -DUSE_DISTRIBUTED -Dcustom_backend_EXPORTS -external:I C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include -external:I C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch\csrc\api\include -external:W0 /DWIN32 /D_WINDOWS /GR /EHsc /O2 /Ob2 /DNDEBUG -MD /permissive- /EHsc /bigobj -std:c++17 /showIncludes /FoCMakeFiles\custom_backend.dir\custom_backend.cpp.obj /FdCMakeFiles\custom_backend.dir\ /FS -c C:\actions-runner\_work\pytorch\pytorch\test\custom_backend\custom_backend.cpp 2025-08-26T22:42:44.0280564Z C:\actions-runner\_work\pytorch\pytorch\test\custom_backend\custom_backend.cpp(12): warning C4273: 'torch::custom_backend::getBackendName': inconsistent dll linkage 2025-08-26T22:42:44.0281735Z C:\actions-runner\_work\pytorch\pytorch\test\custom_backend\custom_backend.h(89): note: see previous definition of 'torch::custom_backend::getBackendName' 2025-08-26T22:42:44.0282996Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(82): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data 2025-08-26T22:42:44.0285748Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(82): note: the template instantiation context (the oldest one first) is 2025-08-26T22:42:44.0287245Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/core/function_schema.h(438): note: see reference to function template instantiation 'std::optional::optional(_Ty2 &&) noexcept' being compiled 2025-08-26T22:42:44.0288296Z with 2025-08-26T22:42:44.0288544Z [ 2025-08-26T22:42:44.0305901Z I=unsigned __int64, 2025-08-26T22:42:44.0306527Z _Ty2=unsigned __int64 2025-08-26T22:42:44.0306765Z ] 2025-08-26T22:42:44.0307640Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/core/function_schema.h(438): note: see the first reference to 'std::optional::optional' in 'c10::FunctionSchema::argumentIndexWithName' 2025-08-26T22:42:44.1749245Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(248): note: see reference to function template instantiation 'std::_Optional_construct_base<_Ty>::_Optional_construct_base(std::in_place_t,const unsigned __int64 &&)' being compiled 2025-08-26T22:42:44.1750592Z with 2025-08-26T22:42:44.1750846Z [ 2025-08-26T22:42:44.1751151Z _Ty=int32_t 2025-08-26T22:42:44.1751431Z ] 2025-08-26T22:42:44.1752569Z C:\actions-runner\_work\pytorch\pytorch\test\custom_backend\custom_backend.cpp(17): note: see reference to function template instantiation 'std::_Optional_destruct_base<_Ty,true>::_Optional_destruct_base(std::in_place_t,const unsigned __int64 &&) noexcept' being compiled 2025-08-26T22:42:44.1753789Z with 2025-08-26T22:42:44.1754041Z [ 2025-08-26T22:42:44.1754256Z _Ty=int32_t 2025-08-26T22:42:44.1754511Z ] 2025-08-26T22:42:44.1758281Z [2/4] cmd.exe /C "cd . && C:\Jenkins\Miniconda3\Library\bin\cmake.exe -E vs_link_dll --intdir=CMakeFiles\custom_backend.dir --rc=C:\PROGRA~2\WI3CF2~1\10\bin\100190~1.0\x64\rc.exe --mt=C:\PROGRA~2\WI3CF2~1\10\bin\100190~1.0\x64\mt.exe --manifests -- C:\PROGRA~2\MICROS~1\2022\BUILDT~1\VC\Tools\MSVC\1442~1.344\bin\Hostx64\x64\link.exe /nologo CMakeFiles\custom_backend.dir\custom_backend.cpp.obj /out:custom_backend.dll /implib:custom_backend.lib /pdb:custom_backend.pdb /dll /version:0.0 /machine:x64 /INCREMENTAL:NO -LIBPATH:\lib -LIBPATH:\lib\intel64 -LIBPATH:\lib\intel64_win -LIBPATH:\lib\win-x64 C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib\c10.lib C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib\kineto.lib C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib\torch.lib C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib\torch_cpu.lib C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib\c10.lib kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib && cd ." 2025-08-26T22:42:49.4848386Z [3/4] C:\PROGRA~2\MICROS~1\2022\BUILDT~1\VC\Tools\MSVC\1442~1.344\bin\Hostx64\x64\cl.exe /nologo /TP -DUSE_C10D_GLOO -DUSE_DISTRIBUTED -external:I C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include -external:I C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch\csrc\api\include -external:W0 /DWIN32 /D_WINDOWS /GR /EHsc /O2 /Ob2 /DNDEBUG -MD /permissive- /EHsc /bigobj -std:c++17 /showIncludes /FoCMakeFiles\test_custom_backend.dir\test_custom_backend.cpp.obj /FdCMakeFiles\test_custom_backend.dir\ /FS -c C:\actions-runner\_work\pytorch\pytorch\test\custom_backend\test_custom_backend.cpp 2025-08-26T22:42:49.4851306Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(82): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data 2025-08-26T22:42:49.4852624Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(82): note: the template instantiation context (the oldest one first) is 2025-08-26T22:42:49.4854129Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/core/function_schema.h(438): note: see reference to function template instantiation 'std::optional::optional(_Ty2 &&) noexcept' being compiled 2025-08-26T22:42:49.4855195Z with 2025-08-26T22:42:49.4855410Z [ 2025-08-26T22:42:49.4855865Z I=size_t, 2025-08-26T22:42:49.4856243Z _Ty2=size_t 2025-08-26T22:42:49.4856493Z ] 2025-08-26T22:42:49.4857349Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/core/function_schema.h(438): note: see the first reference to 'std::optional::optional' in 'c10::FunctionSchema::argumentIndexWithName' 2025-08-26T22:42:49.4859200Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(248): note: see reference to function template instantiation 'std::_Optional_construct_base<_Ty>::_Optional_construct_base(std::in_place_t,const unsigned __int64 &&)' being compiled 2025-08-26T22:42:49.4860378Z with 2025-08-26T22:42:49.4860574Z [ 2025-08-26T22:42:49.4860869Z _Ty=int32_t 2025-08-26T22:42:49.4861090Z ] 2025-08-26T22:42:49.4862215Z C:\actions-runner\_work\pytorch\pytorch\test\custom_backend\test_custom_backend.cpp(40): note: see reference to function template instantiation 'std::_Optional_destruct_base<_Ty,true>::_Optional_destruct_base(std::in_place_t,const unsigned __int64 &&) noexcept' being compiled 2025-08-26T22:42:49.4863376Z with 2025-08-26T22:42:49.4863613Z [ 2025-08-26T22:42:49.4863839Z _Ty=int32_t 2025-08-26T22:42:49.4864066Z ] 2025-08-26T22:42:49.4864856Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406): warning C4267: 'initializing': conversion from 'size_t' to 'unsigned int', possible loss of data 2025-08-26T22:42:49.4866163Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406): note: the template instantiation context (the oldest one first) is 2025-08-26T22:42:49.4867833Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch/csrc/dynamo/compiled_autograd.h(236): note: see reference to function template instantiation 'std::_Vbase &std::vector>::emplace_back(const _Ty &)' being compiled 2025-08-26T22:42:49.4869017Z with 2025-08-26T22:42:49.4869218Z [ 2025-08-26T22:42:49.4869439Z _Ty=size_t 2025-08-26T22:42:49.4869667Z ] 2025-08-26T22:42:49.4870724Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(858): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_one_at_back(const unsigned __int64 &)' being compiled 2025-08-26T22:42:49.4871854Z with 2025-08-26T22:42:49.4872065Z [ 2025-08-26T22:42:49.4872290Z _Ty=std::_Vbase 2025-08-26T22:42:49.4872539Z ] 2025-08-26T22:42:49.4873648Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(776): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_back_with_unused_capacity(const unsigned __int64 &)' being compiled 2025-08-26T22:42:49.4874787Z with 2025-08-26T22:42:49.4875009Z [ 2025-08-26T22:42:49.4875245Z _Ty=std::_Vbase 2025-08-26T22:42:49.4875486Z ] 2025-08-26T22:42:49.4876500Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(791): note: see reference to function template instantiation 'void std::_Construct_in_place(unsigned int &,const _Ty &) noexcept' being compiled 2025-08-26T22:42:49.4877531Z with 2025-08-26T22:42:49.4877753Z [ 2025-08-26T22:42:49.4877942Z _Ty=size_t 2025-08-26T22:42:49.4878246Z ] 2025-08-26T22:42:49.4879021Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700): warning C4267: 'initializing': conversion from 'size_t' to '_Ty', possible loss of data 2025-08-26T22:42:49.4879987Z with 2025-08-26T22:42:49.4880340Z [ 2025-08-26T22:42:49.4880551Z _Ty=unsigned int 2025-08-26T22:42:49.4880802Z ] 2025-08-26T22:42:49.4881490Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700): note: the template instantiation context (the oldest one first) is 2025-08-26T22:42:49.4883153Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(779): note: see reference to function template instantiation 'unsigned int *std::vector>::_Emplace_reallocate(unsigned int *const ,const _Ty &)' being compiled 2025-08-26T22:42:49.4884465Z with 2025-08-26T22:42:49.4884687Z [ 2025-08-26T22:42:49.4884885Z _Ty=size_t 2025-08-26T22:42:49.4885146Z ] 2025-08-26T22:42:49.4886257Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(830): note: see reference to function template instantiation 'void std::_Default_allocator_traits<_Alloc>::construct<_Ty,const unsigned __int64&>(_Alloc &,_Objty *const ,const unsigned __int64 &)' being compiled 2025-08-26T22:42:49.4887458Z with 2025-08-26T22:42:49.4887671Z [ 2025-08-26T22:42:49.4887894Z _Alloc=std::allocator, 2025-08-26T22:42:49.4888233Z _Ty=unsigned int, 2025-08-26T22:42:49.4888499Z _Objty=unsigned int 2025-08-26T22:42:49.4888776Z ] 2025-08-26T22:42:49.4889542Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data 2025-08-26T22:42:49.4890888Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406): note: the template instantiation context (the oldest one first) is 2025-08-26T22:42:49.4892490Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch/csrc/dynamo/compiled_autograd.h(681): note: see reference to function template instantiation 'int32_t &std::vector>::emplace_back(size_t &)' being compiled 2025-08-26T22:42:49.4894381Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(858): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_one_at_back(unsigned __int64 &)' being compiled 2025-08-26T22:42:49.4895520Z with 2025-08-26T22:42:49.4895784Z [ 2025-08-26T22:42:49.4895972Z _Ty=int32_t 2025-08-26T22:42:49.4896223Z ] 2025-08-26T22:42:49.4897256Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(776): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_back_with_unused_capacity(unsigned __int64 &)' being compiled 2025-08-26T22:42:49.4898403Z with 2025-08-26T22:42:49.4898602Z [ 2025-08-26T22:42:49.4898828Z _Ty=int32_t 2025-08-26T22:42:49.4899055Z ] 2025-08-26T22:42:49.4899955Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(791): note: see reference to function template instantiation 'void std::_Construct_in_place(int &,_Ty &) noexcept' being compiled 2025-08-26T22:42:49.4901045Z with 2025-08-26T22:42:49.4901252Z [ 2025-08-26T22:42:49.4901549Z _Ty=size_t 2025-08-26T22:42:49.4901765Z ] 2025-08-26T22:42:49.4902528Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700): warning C4267: 'initializing': conversion from 'size_t' to '_Ty', possible loss of data 2025-08-26T22:42:49.4903359Z with 2025-08-26T22:42:49.4903558Z [ 2025-08-26T22:42:49.4903906Z _Ty=int 2025-08-26T22:42:49.4904217Z ] 2025-08-26T22:42:49.4904909Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700): note: the template instantiation context (the oldest one first) is 2025-08-26T22:42:49.4906420Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(779): note: see reference to function template instantiation 'int *std::vector>::_Emplace_reallocate<_Ty&>(int *const ,_Ty &)' being compiled 2025-08-26T22:42:49.4907586Z with 2025-08-26T22:42:49.4907810Z [ 2025-08-26T22:42:49.4908005Z _Ty=size_t 2025-08-26T22:42:49.4908259Z ] 2025-08-26T22:42:49.4909340Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(830): note: see reference to function template instantiation 'void std::_Default_allocator_traits<_Alloc>::construct<_Ty,unsigned __int64&>(_Alloc &,_Objty *const ,unsigned __int64 &)' being compiled 2025-08-26T22:42:49.4910515Z with 2025-08-26T22:42:49.4910711Z [ 2025-08-26T22:42:49.4910947Z _Alloc=std::allocator, 2025-08-26T22:42:49.4911255Z _Ty=int, 2025-08-26T22:42:49.4911483Z _Objty=int 2025-08-26T22:42:49.4911750Z ] 2025-08-26T22:42:49.4912529Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263): warning C4267: 'initializing': conversion from 'size_t' to '_Ty1', possible loss of data 2025-08-26T22:42:49.4913415Z with 2025-08-26T22:42:49.4913613Z [ 2025-08-26T22:42:49.4913831Z _Ty1=int 2025-08-26T22:42:49.4914050Z ] 2025-08-26T22:42:49.4914745Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263): note: the template instantiation context (the oldest one first) is 2025-08-26T22:42:49.4916470Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch/csrc/dynamo/compiled_autograd.h(658): note: see reference to function template instantiation 'std::pair &std::vector,std::allocator>>::emplace_back(size_t &,int &)' being compiled 2025-08-26T22:42:49.4918597Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(858): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_one_at_back(unsigned __int64 &,int &)' being compiled 2025-08-26T22:42:49.4919712Z with 2025-08-26T22:42:49.4919940Z [ 2025-08-26T22:42:49.4920140Z _Ty=std::pair 2025-08-26T22:42:49.4920430Z ] 2025-08-26T22:42:49.4921504Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(776): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_back_with_unused_capacity(unsigned __int64 &,int &)' being compiled 2025-08-26T22:42:49.4922676Z with 2025-08-26T22:42:49.4922858Z [ 2025-08-26T22:42:49.4923094Z _Ty=std::pair 2025-08-26T22:42:49.4923377Z ] 2025-08-26T22:42:49.4924445Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(791): note: see reference to function template instantiation 'void std::_Construct_in_place,_Ty&,int&>(std::pair &,_Ty &,int &) noexcept' being compiled 2025-08-26T22:42:49.4925530Z with 2025-08-26T22:42:49.4925730Z [ 2025-08-26T22:42:49.4925944Z _Ty=size_t 2025-08-26T22:42:49.4926168Z ] 2025-08-26T22:42:49.4927211Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406): note: see reference to function template instantiation 'std::pair::pair(_Other1,_Other2) noexcept' being compiled 2025-08-26T22:42:49.4928298Z with 2025-08-26T22:42:49.4928483Z [ 2025-08-26T22:42:49.4928719Z _Other1=uint64_t &, 2025-08-26T22:42:49.4928979Z _Other2=int & 2025-08-26T22:42:49.6393776Z ] 2025-08-26T22:42:49.6394653Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263): warning C4267: 'initializing': conversion from 'size_t' to '_Ty2', possible loss of data 2025-08-26T22:42:49.6395466Z with 2025-08-26T22:42:49.6395670Z [ 2025-08-26T22:42:49.6395871Z _Ty2=int 2025-08-26T22:42:49.6396126Z ] 2025-08-26T22:42:49.6400161Z [4/4] cmd.exe /C "cd . && C:\Jenkins\Miniconda3\Library\bin\cmake.exe -E vs_link_exe --intdir=CMakeFiles\test_custom_backend.dir --rc=C:\PROGRA~2\WI3CF2~1\10\bin\100190~1.0\x64\rc.exe --mt=C:\PROGRA~2\WI3CF2~1\10\bin\100190~1.0\x64\mt.exe --manifests -- C:\PROGRA~2\MICROS~1\2022\BUILDT~1\VC\Tools\MSVC\1442~1.344\bin\Hostx64\x64\link.exe /nologo CMakeFiles\test_custom_backend.dir\test_custom_backend.cpp.obj /out:test_custom_backend.exe /implib:test_custom_backend.lib /pdb:test_custom_backend.pdb /version:0.0 /machine:x64 /INCREMENTAL:NO /subsystem:console -LIBPATH:\lib -LIBPATH:\lib\intel64 -LIBPATH:\lib\intel64_win -LIBPATH:\lib\win-x64 custom_backend.lib C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib\torch.lib C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib\torch_cpu.lib C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib\c10.lib C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib\c10.lib C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib\kineto.lib kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib && cd ." 2025-08-26T22:42:49.6412569Z 2025-08-26T22:42:49.6413002Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_backend\build>if ERRORLEVEL 1 exit /b 1 2025-08-26T22:42:49.6414025Z 2025-08-26T22:42:49.6414818Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_backend\build>echo "Ninja succeeded for custom_backend test." 2025-08-26T22:42:49.6415491Z "Ninja succeeded for custom_backend test." 2025-08-26T22:42:49.6415784Z 2025-08-26T22:42:49.6416035Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_backend\build>popd 2025-08-26T22:42:49.6420942Z 2025-08-26T22:42:49.6421403Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_backend>python test_custom_backend.py -v 2025-08-26T22:42:53.2203189Z 2025-08-26T22:42:53.2203793Z Running tests... 2025-08-26T22:42:53.2204189Z ---------------------------------------------------------------------- 2025-08-26T22:42:53.2204694Z Test results will be stored in test-reports\python-unittest\test_custom_backend 2025-08-26T22:42:53.2210795Z test_execute (__main__.TestCustomBackend) 2025-08-26T22:42:53.2957786Z Test execution using the custom backend. ... ok (0.074s) 2025-08-26T22:42:53.2965324Z test_save_load (__main__.TestCustomBackend) 2025-08-26T22:42:53.3239454Z Test that a lowered module can be executed correctly ... ok (0.029s) 2025-08-26T22:42:53.3239795Z 2025-08-26T22:42:53.3240374Z ---------------------------------------------------------------------- 2025-08-26T22:42:53.3240801Z Ran 2 tests in 0.109s 2025-08-26T22:42:53.3240961Z 2025-08-26T22:42:53.3241060Z OK 2025-08-26T22:42:53.3241188Z 2025-08-26T22:42:53.3241299Z Generating XML reports... 2025-08-26T22:42:53.4050615Z Generated XML report: test-reports\python-unittest\test_custom_backend\TEST-TestCustomBackend-20250826224253.xml 2025-08-26T22:42:53.9879695Z 2025-08-26T22:42:53.9880399Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_backend>if ERRORLEVEL 1 exit /b 1 2025-08-26T22:42:53.9880813Z 2025-08-26T22:42:53.9881457Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_backend>python backend.py --export-module-to="build/model.pt" 2025-08-26T22:42:55.9910886Z 2025-08-26T22:42:55.9911528Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_backend>if ERRORLEVEL 1 exit /b 1 2025-08-26T22:42:55.9912330Z 2025-08-26T22:42:55.9912591Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_backend>cd build 2025-08-26T22:42:55.9917708Z 2025-08-26T22:42:55.9925804Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_backend\build>set PATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\bin\HostX64\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\VCPackages;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\MSBuild\Current\bin\Roslyn;C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\Extensions\Microsoft\CodeCoverage.Console;C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\\x64;C:\Program Files (x86)\Windows Kits\10\bin\\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\\MSBuild\Current\Bin\amd64;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\;C:\Jenkins\Miniconda3;C:\Jenkins\Miniconda3\Library\mingw-w64\bin;C:\Jenkins\Miniconda3\Library\usr\bin;C:\Jenkins\Miniconda3\Library\bin;C:\Jenkins\Miniconda3\Scripts;C:\Jenkins\Miniconda3\bin;C:\Jenkins\Miniconda3\condabin;C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\Llvm\x64\bin;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\Linux\bin\ConnectionManagerExe 2025-08-26T22:42:55.9933624Z 2025-08-26T22:42:55.9933958Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_backend\build>test_custom_backend.exe model.pt 2025-08-26T22:42:56.5455450Z Testing custom_backend 2025-08-26T22:42:56.5455718Z OK 2025-08-26T22:42:56.5510530Z 2025-08-26T22:42:56.5511258Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_backend\build>if ERRORLEVEL 1 exit /b 1 2025-08-26T22:42:56.5533198Z + /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers/test_custom_script_ops.bat 2025-08-26T22:42:56.5668353Z 2025-08-26T22:42:56.5669094Z C:\actions-runner\_work\pytorch\pytorch>call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\setup_pytorch_env.bat 2025-08-26T22:42:56.5677777Z 2025-08-26T22:42:56.5680264Z C:\actions-runner\_work\pytorch\pytorch>set PATH=C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps 2025-08-26T22:42:56.5682640Z 2025-08-26T22:42:56.5683368Z C:\actions-runner\_work\pytorch\pytorch>set INSTALLER_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers 2025-08-26T22:42:56.5684131Z 2025-08-26T22:42:56.5684722Z C:\actions-runner\_work\pytorch\pytorch>call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers\activate_miniconda3.bat 2025-08-26T22:42:56.5695123Z 2025-08-26T22:42:56.5695764Z C:\actions-runner\_work\pytorch\pytorch>if "win-vs2022-cpu-py3" == "" (set CONDA_PARENT_DIR=C:\actions-runner\_work\pytorch\pytorch ) else (set CONDA_PARENT_DIR=C:\Jenkins ) 2025-08-26T22:42:56.5699992Z 2025-08-26T22:42:56.5700373Z C:\actions-runner\_work\pytorch\pytorch>if not exist C:\Jenkins\Miniconda3 (set INSTALL_FRESH_CONDA=1 ) 2025-08-26T22:42:56.5703108Z 2025-08-26T22:42:56.5703334Z C:\actions-runner\_work\pytorch\pytorch>if "" == "1" ( 2025-08-26T22:42:56.5704363Z curl --retry 3 --retry-all-errors -k https://repo.anaconda.com/miniconda/Miniconda3-latest-Windows-x86_64.exe --output C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\Miniconda3-latest-Windows-x86_64.exe 2025-08-26T22:42:56.5705294Z if errorlevel 1 exit /b 2025-08-26T22:42:56.5705544Z if not errorlevel 0 exit /b 2025-08-26T22:42:56.5706300Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\Miniconda3-latest-Windows-x86_64.exe /InstallationType=JustMe /RegisterPython=0 /S /AddToPath=0 /D=C:\Jenkins\Miniconda3 2025-08-26T22:42:56.5707080Z if errorlevel 1 exit /b 2025-08-26T22:42:56.5707327Z if not errorlevel 0 exit /b 2025-08-26T22:42:56.5707550Z ) 2025-08-26T22:42:56.5707641Z 2025-08-26T22:42:56.5707986Z C:\actions-runner\_work\pytorch\pytorch>call C:\Jenkins\Miniconda3\Scripts\activate.bat C:\Jenkins\Miniconda3 2025-08-26T22:42:57.2258333Z Overwrite C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py (Yes/No/All)? qM~��Σ�h���������P8�]�����>�-���������������������������^^-�� ��]����x��]�����''�핱����l 2025-08-26T22:42:57.2259245Z <�핱���l 2025-08-26T22:42:57.2259449Z < 2025-08-26T22:42:57.2259653Z �V��& 2025-08-26T22:42:57.2260152Z <��~��� �]�������~��� �]4�-��(�~��p �]P`�]`�]����q�X��x�~��� 2025-08-26T22:42:57.2261053Z �]C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py(������L�]@�����Ē����~��� �]l���� 2025-08-26T22:42:57.2262084Z �`�~��� �]��В�(�~��p �]P�]P�]�~��0 �]`Φ����*9��~��0 �]`Φ����*9��~��0 �]`Φ����*9��*9��*9����~��� �]�����O\JkiA? 2025-08-26T22:42:57.2262580Z 2025-08-26T22:42:57.2262798Z ix�~��� 2025-08-26T22:42:57.2263732Z �]C:\Jenkins\Miniconda3\Lib\site-packages\torch\functional.py��~��� �]0����;-+ 2025-08-26T22:42:57.2264303Z 2025-08-26T22:42:57.2264648Z � �]�]0�l�]N���@�])!�U�]��]��] 2025-08-26T22:42:57.2265441Z <�]�l�]Оv��@�]� �]0pw�]�핱�0�]�핱�K��l 2025-08-26T22:42:57.2265960Z <'����@ 2025-08-26T22:42:57.2267193Z �V��&����1x�'��������B������������X��`����=������������@��]P`�]`�]�q�X�������@��]P`�]P8�]������F/���]����P8�]P6�]��]P��]J4-��P��]P��]������������������]pw�]�L�]�����q�]H������]���]���]p*�]�����/-����]p��������q�]p*�]�����~�� �]��]p*�]q�]ఱ]��x�~��� 2025-08-26T22:42:57.2268836Z �]C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py���]���]2�~��� �]�~��p �]@�]��]���]�~��� �]�~��p �]0�]��]��]�~��� �]�~��p �]��]��]�~��� �]�~��p �]`�]��~��� �]�����OA? 2025-08-26T22:42:57.2269566Z 2025-08-26T22:42:57.2269767Z �~��� 2025-08-26T22:42:57.2270738Z �]C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\�~��� �]P����BA?x�~��� 2025-08-26T22:42:57.2271358Z �]�]T 2025-08-26T22:42:57.2271650Z �~��� �]�~��p �]� 2025-08-26T22:42:57.2272082Z �]���]�~��� �]�~��p �]� 2025-08-26T22:42:57.2272540Z �]�]�����~��� �] ��]�~��p �]� 2025-08-26T22:42:57.2272984Z �]���~��� �]�]�~��p �]p 2025-08-26T22:42:57.2273344Z �]k��l 2025-08-26T22:42:57.3282010Z Overwrite C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py (Yes/No/All)? ********************************************************************** 2025-08-26T22:42:57.3282761Z ** Visual Studio 2022 Developer Command Prompt v17.12.10 2025-08-26T22:42:57.3283123Z ** Copyright (c) 2022 Microsoft Corporation 2025-08-26T22:42:57.3284196Z ********************************************************************** 2025-08-26T22:42:57.7652831Z [vcvarsall.bat] Environment initialized for: 'x64' 2025-08-26T22:42:57.7686425Z 2025-08-26T22:42:57.7686619Z (base) C:\actions-runner\_work\pytorch\pytorch>popd 2025-08-26T22:42:57.7690286Z 2025-08-26T22:42:57.7690551Z (base) C:\actions-runner\_work\pytorch\pytorch>set DISTUTILS_USE_SDK=1 2025-08-26T22:42:57.7692832Z 2025-08-26T22:42:57.7693141Z (base) C:\actions-runner\_work\pytorch\pytorch>if not "0" == "1" goto cuda_build_end 2025-08-26T22:42:57.7695524Z 2025-08-26T22:42:57.7695963Z (base) C:\actions-runner\_work\pytorch\pytorch>set PYTHONPATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build; 2025-08-26T22:42:57.7698378Z 2025-08-26T22:42:57.7698571Z (base) C:\actions-runner\_work\pytorch\pytorch>set 2025-08-26T22:42:57.7865115Z ACTIONS_ID_TOKEN_REQUEST_TOKEN=*** 2025-08-26T22:42:57.7866207Z ACTIONS_ID_TOKEN_REQUEST_URL=https://run-actions-1-azure-eastus.actions.githubusercontent.com/119//idtoken/403c8e96-de86-4002-bfa2-f61cede70191/bf3acfbe-1a7d-550c-ab40-3a4de6923adc?api-version=2.0 2025-08-26T22:42:57.7867269Z ACTIONS_RUNNER_HOOK_JOB_COMPLETED=C:\actions-runner\jobcompleted.ps1 2025-08-26T22:42:57.7867682Z ALLUSERSPROFILE=C:\ProgramData 2025-08-26T22:42:57.7868044Z ALPINE_IMAGE=308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2025-08-26T22:42:57.7868464Z APPDATA=C:\Users\runneruser\AppData\Roaming 2025-08-26T22:42:57.7868754Z AWS_DEFAULT_REGION=us-east-1 2025-08-26T22:42:57.7869005Z AWS_EXECUTION_ENV=EC2 2025-08-26T22:42:57.7869239Z BUILD_ENVIRONMENT=win-vs2022-cpu-py3 2025-08-26T22:42:57.7869494Z CI=true 2025-08-26T22:42:57.7869682Z CommandPromptType=Native 2025-08-26T22:42:57.7869951Z COMMONPROGRAMFILES=C:\Program Files\Common Files 2025-08-26T22:42:57.7870271Z COMPUTERNAME=EC2AMAZ-TE6SPGV 2025-08-26T22:42:57.7870519Z COMSPEC=C:\Windows\system32\cmd.exe 2025-08-26T22:42:57.7870881Z CONDA_BUILD=C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T22:42:57.7871242Z CONDA_DEFAULT_ENV=base 2025-08-26T22:42:57.7871502Z CONDA_EXE=C:\Jenkins\Miniconda3\Scripts\conda.exe 2025-08-26T22:42:57.7871888Z CONDA_INSTALL=C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T22:42:57.7872240Z CONDA_PARENT_DIR=C:\Jenkins 2025-08-26T22:42:57.7872482Z CONDA_PREFIX=C:\Jenkins\Miniconda3 2025-08-26T22:42:57.7872738Z CONDA_PROMPT_MODIFIER=(base) 2025-08-26T22:42:57.7873107Z CONDA_PYTHON_EXE=C:\Jenkins\Miniconda3\python.exe 2025-08-26T22:42:57.7873585Z CONDA_RUN=C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T22:42:57.7874035Z CONDA_SHLVL=1 2025-08-26T22:42:57.7874262Z CONTINUE_THROUGH_ERROR=True 2025-08-26T22:42:57.7874660Z CUDA_PATH=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.9 2025-08-26T22:42:57.7875173Z CUDA_PATH_V12_6=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-08-26T22:42:57.7875725Z CUDA_PATH_V12_8=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.8 2025-08-26T22:42:57.7876328Z CUDA_PATH_V12_9=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.9 2025-08-26T22:42:57.7876784Z CUDA_VERSION=cpu 2025-08-26T22:42:57.7877078Z ChocolateyInstall=C:\ProgramData\chocolatey 2025-08-26T22:42:57.7877579Z CommonProgramFiles(x86)=C:\Program Files (x86)\Common Files 2025-08-26T22:42:57.7878034Z CommonProgramW6432=C:\Program Files\Common Files 2025-08-26T22:42:57.7878529Z DevEnvDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\ 2025-08-26T22:42:57.7879035Z DISTUTILS_USE_SDK=1 2025-08-26T22:42:57.7879360Z DriverData=C:\Windows\System32\Drivers\DriverData 2025-08-26T22:42:57.7879701Z EC2LAUNCH_TELEMETRY=1 2025-08-26T22:42:57.7880147Z ExtensionSdkDir=C:\Program Files (x86)\Microsoft SDKs\Windows Kits\10\ExtensionSDKs 2025-08-26T22:42:57.7882527Z EXTERNAL_INCLUDE=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um 2025-08-26T22:42:57.7884693Z Framework40Version=v4.0 2025-08-26T22:42:57.7885026Z FrameworkDir=C:\Windows\Microsoft.NET\Framework64\ 2025-08-26T22:42:57.7885433Z FrameworkDir64=C:\Windows\Microsoft.NET\Framework64\ 2025-08-26T22:42:57.7885824Z FrameworkVersion=v4.0.30319 2025-08-26T22:42:57.7886114Z FrameworkVersion64=v4.0.30319 2025-08-26T22:42:57.7886422Z GITHUB_ACTION=test 2025-08-26T22:42:57.7886654Z GITHUB_ACTIONS=true 2025-08-26T22:42:57.7886906Z GITHUB_ACTION_REF= 2025-08-26T22:42:57.7887150Z GITHUB_ACTION_REPOSITORY= 2025-08-26T22:42:57.7887451Z GITHUB_ACTOR=pytorchmergebot 2025-08-26T22:42:57.7887749Z GITHUB_ACTOR_ID=97764156 2025-08-26T22:42:57.7888033Z GITHUB_API_URL=https://api.github.com 2025-08-26T22:42:57.7888366Z GITHUB_BASE_REF= 2025-08-26T22:42:57.7888846Z GITHUB_ENV=C:\actions-runner\_work\_temp\_runner_file_commands\set_env_9e80edba-99c0-4986-a90e-23cf49ba9f81 2025-08-26T22:42:57.7889403Z GITHUB_EVENT_NAME=push 2025-08-26T22:42:57.7889786Z GITHUB_EVENT_PATH=C:\actions-runner\_work\_temp\_github_workflow\event.json 2025-08-26T22:42:57.7890301Z GITHUB_GRAPHQL_URL=https://api.github.com/graphql 2025-08-26T22:42:57.7890654Z GITHUB_HEAD_REF= 2025-08-26T22:42:57.7890910Z GITHUB_JOB=test 2025-08-26T22:42:57.7891423Z GITHUB_OUTPUT=C:\actions-runner\_work\_temp\_runner_file_commands\set_output_9e80edba-99c0-4986-a90e-23cf49ba9f81 2025-08-26T22:42:57.7892216Z GITHUB_PATH=C:\actions-runner\_work\_temp\_runner_file_commands\add_path_9e80edba-99c0-4986-a90e-23cf49ba9f81 2025-08-26T22:42:57.7892775Z GITHUB_REF=refs/heads/main 2025-08-26T22:42:57.7893104Z GITHUB_REF_NAME=main 2025-08-26T22:42:57.7893384Z GITHUB_REF_PROTECTED=true 2025-08-26T22:42:57.7893653Z GITHUB_REF_TYPE=branch 2025-08-26T22:42:57.7893967Z GITHUB_REPOSITORY=pytorch/pytorch 2025-08-26T22:42:57.7894276Z GITHUB_REPOSITORY_ID=65600975 2025-08-26T22:42:57.7894586Z GITHUB_REPOSITORY_OWNER=pytorch 2025-08-26T22:42:57.7894901Z GITHUB_REPOSITORY_OWNER_ID=21003710 2025-08-26T22:42:57.7895198Z GITHUB_RETENTION_DAYS=90 2025-08-26T22:42:57.7895479Z GITHUB_RUN_ATTEMPT=1 2025-08-26T22:42:57.7895724Z GITHUB_RUN_ID=17248463647 2025-08-26T22:42:57.7896002Z GITHUB_RUN_NUMBER=141812 2025-08-26T22:42:57.7896277Z GITHUB_SERVER_URL=https://github.com 2025-08-26T22:42:57.7896648Z GITHUB_SHA=262640fd220236042fbf4443cc163c8838c84c3d 2025-08-26T22:42:57.7897239Z GITHUB_STATE=C:\actions-runner\_work\_temp\_runner_file_commands\save_state_9e80edba-99c0-4986-a90e-23cf49ba9f81 2025-08-26T22:42:57.7898107Z GITHUB_STEP_SUMMARY=C:\actions-runner\_work\_temp\_runner_file_commands\step_summary_9e80edba-99c0-4986-a90e-23cf49ba9f81 2025-08-26T22:42:57.7898861Z GITHUB_TRIGGERING_ACTOR=pytorchmergebot 2025-08-26T22:42:57.7899187Z GITHUB_WORKFLOW=trunk 2025-08-26T22:42:57.7899614Z GITHUB_WORKFLOW_REF=pytorch/pytorch/.github/workflows/trunk.yml@refs/heads/main 2025-08-26T22:42:57.7900149Z GITHUB_WORKFLOW_SHA=262640fd220236042fbf4443cc163c8838c84c3d 2025-08-26T22:42:57.7900624Z GITHUB_WORKSPACE=C:\actions-runner\_work\pytorch\pytorch 2025-08-26T22:42:57.7901051Z GIT_DEFAULT_BRANCH=main 2025-08-26T22:42:57.7901332Z HOME=C:\Users\runneruser 2025-08-26T22:42:57.7903443Z INCLUDE=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um 2025-08-26T22:42:57.7905790Z INSTALLER_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers 2025-08-26T22:42:57.7906376Z INSTALL_WINDOWS_SDK=1 2025-08-26T22:42:57.7906643Z is_x64_arch=true 2025-08-26T22:42:57.7906872Z JOB_ID=48947911970 2025-08-26T22:42:57.7907276Z JOB_NAME=win-vs2022-cpu-py3 / test (default, 2, 3, windows.4xlarge.nonephemeral) 2025-08-26T22:42:57.7908478Z LIB=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\lib\x64;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64;C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\ucrt\x64;C:\Program Files (x86)\Windows Kits\10\\lib\10.0.19041.0\\um\x64 2025-08-26T22:42:57.7910751Z LIBPATH=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\lib\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\lib\x86\store\references;C:\Program Files (x86)\Windows Kits\10\UnionMetadata\10.0.19041.0;C:\Program Files (x86)\Windows Kits\10\References\10.0.19041.0;C:\Windows\Microsoft.NET\Framework64\v4.0.30319 2025-08-26T22:42:57.7912248Z LOCALAPPDATA=C:\Users\runneruser\AppData\Local 2025-08-26T22:42:57.7912672Z NETFXSDKDir=C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\ 2025-08-26T22:42:57.7913074Z NO_TD=False 2025-08-26T22:42:57.7913286Z NO_TEST_TIMEOUT=False 2025-08-26T22:42:57.7913566Z NUMBER_OF_PROCESSORS=16 2025-08-26T22:42:57.7913830Z NUM_TEST_SHARDS=3 2025-08-26T22:42:57.7914099Z OLDPWD=C:/17248463647/build-results 2025-08-26T22:42:57.7914405Z OS=Windows_NT 2025-08-26T22:42:57.7921651Z PATH=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\bin\HostX64\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\VCPackages;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\MSBuild\Current\bin\Roslyn;C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\Extensions\Microsoft\CodeCoverage.Console;C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\\x64;C:\Program Files (x86)\Windows Kits\10\bin\\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\\MSBuild\Current\Bin\amd64;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\;C:\Jenkins\Miniconda3;C:\Jenkins\Miniconda3\Library\mingw-w64\bin;C:\Jenkins\Miniconda3\Library\usr\bin;C:\Jenkins\Miniconda3\Library\bin;C:\Jenkins\Miniconda3\Scripts;C:\Jenkins\Miniconda3\bin;C:\Jenkins\Miniconda3\condabin;C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\Llvm\x64\bin;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\Linux\bin\ConnectionManagerExe 2025-08-26T22:42:57.7929030Z PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC 2025-08-26T22:42:57.7929422Z Platform=x64 2025-08-26T22:42:57.7929661Z PROCESSOR_ARCHITECTURE=AMD64 2025-08-26T22:42:57.7930089Z PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 85 Stepping 7, GenuineIntel 2025-08-26T22:42:57.7930513Z PROCESSOR_LEVEL=6 2025-08-26T22:42:57.7930878Z PROCESSOR_REVISION=5507 2025-08-26T22:42:57.7931257Z PROGRAMFILES=C:\Program Files 2025-08-26T22:42:57.7931630Z PROJECT_DIR=C:/actions-runner/_work/pytorch/pytorch 2025-08-26T22:42:57.7932113Z PROJECT_DIR_WIN=C:\actions-runner\_work\pytorch\pytorch 2025-08-26T22:42:57.7932469Z PROMPT=(base) $P$G 2025-08-26T22:42:57.7932747Z PR_NUMBER= 2025-08-26T22:42:57.7933248Z PSModulePath=C:\Windows\system32\WindowsPowerShell\v1.0\Modules;C:\Program Files\WindowsPowerShell\Modules 2025-08-26T22:42:57.7933833Z PUBLIC=C:\Users\Public 2025-08-26T22:42:57.7934184Z *** 2025-08-26T22:42:57.7934479Z PYTHONPATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build; 2025-08-26T22:42:57.7934868Z PYTHON_VERSION=3.9 2025-08-26T22:42:57.7935138Z PYTORCH_FINAL_PACKAGE_DIR=C:/17248463647/build-results/ 2025-08-26T22:42:57.7935530Z PYTORCH_FINAL_PACKAGE_DIR_WIN=C:\17248463647\build-results\ 2025-08-26T22:42:57.7935878Z PYTORCH_TEST_CUDA_MEM_LEAK_CHECK=0 2025-08-26T22:42:57.7936145Z PYTORCH_TEST_RERUN_DISABLED_TESTS=0 2025-08-26T22:42:57.7936424Z ProgramData=C:\ProgramData 2025-08-26T22:42:57.7936676Z ProgramFiles(x86)=C:\Program Files (x86) 2025-08-26T22:42:57.7936970Z ProgramW6432=C:\Program Files 2025-08-26T22:42:57.7937203Z REENABLED_ISSUES= 2025-08-26T22:42:57.7937406Z RUNNER_ARCH=X64 2025-08-26T22:42:57.7937661Z RUNNER_ENVIRONMENT=self-hosted 2025-08-26T22:42:57.7937908Z RUNNER_NAME=i-07498329a9125d143 2025-08-26T22:42:57.7938182Z RUNNER_OS=Windows 2025-08-26T22:42:57.7938399Z RUNNER_TEMP=C:\actions-runner\_work\_temp 2025-08-26T22:42:57.7938731Z RUNNER_TOOL_CACHE=C:\actions-runner\_work\_tool 2025-08-26T22:42:57.7939099Z RUNNER_TRACKING_ID=github_95194c4b-d400-4ebf-b87d-497f68b85df1 2025-08-26T22:42:57.7939485Z RUNNER_WORKSPACE=C:\actions-runner\_work\pytorch 2025-08-26T22:42:57.7939957Z SCRIPT_HELPERS_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-08-26T22:42:57.7940430Z SHA1=262640fd220236042fbf4443cc163c8838c84c3d 2025-08-26T22:42:57.7940709Z SHARD_NUMBER=2 2025-08-26T22:42:57.7940955Z SHLVL=2 2025-08-26T22:42:57.7941213Z SSL_CERT_FILE=C:\Jenkins\Miniconda3\Library\ssl\cacert.pem 2025-08-26T22:42:57.7941540Z SYSTEMDRIVE=C: 2025-08-26T22:42:57.7941737Z SYSTEMROOT=C:\Windows 2025-08-26T22:42:57.7941972Z TEMP=C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T22:42:57.7942253Z TERM=xterm-256color 2025-08-26T22:42:57.7942447Z TEST_CONFIG=default 2025-08-26T22:42:57.7942707Z TEST_DIR=C:/actions-runner/_work/pytorch/pytorch/test 2025-08-26T22:42:57.7943079Z TEST_DIR_WIN=C:\actions-runner\_work\pytorch\pytorch\test 2025-08-26T22:42:57.7943448Z TEST_SHOWLOCALS=False 2025-08-26T22:42:57.7943688Z TMP=C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T22:42:57.7943988Z TMPDIR=C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T22:42:57.7944397Z TMP_DIR=C:/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-08-26T22:42:57.7944818Z TMP_DIR_WIN=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp 2025-08-26T22:42:57.7945170Z TORCH_CUDA_ARCH_LIST=8.6 2025-08-26T22:42:57.7945402Z TORCH_SERIALIZATION_DEBUG=1 2025-08-26T22:42:57.7945644Z UCRTVersion=10.0.19041.0 2025-08-26T22:42:57.7945938Z UniversalCRTSdkDir=C:\Program Files (x86)\Windows Kits\10\ 2025-08-26T22:42:57.7946298Z UPDATEFILE=update.finished 2025-08-26T22:42:57.7946584Z USERDOMAIN=EC2AMAZ-TE6SPGV 2025-08-26T22:42:57.7946811Z USERNAME=runneruser 2025-08-26T22:42:57.7947029Z USERPROFILE=C:\Users\runneruser 2025-08-26T22:42:57.7947261Z USE_CUDA=0 2025-08-26T22:42:57.7947641Z VCIDEInstallDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\ 2025-08-26T22:42:57.7948282Z VCINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\ 2025-08-26T22:42:57.7949118Z VCToolsInstallDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\ 2025-08-26T22:42:57.7949908Z VCToolsRedistDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Redist\MSVC\14.42.34433\ 2025-08-26T22:42:57.7950464Z VCToolsVersion=14.42.34433 2025-08-26T22:42:57.7950831Z VC_PRODUCT=BuildTools 2025-08-26T22:42:57.7951129Z VC_VERSION= 2025-08-26T22:42:57.7951310Z VC_YEAR=2022 2025-08-26T22:42:57.7951504Z VERBOSE_ARG='SilentlyContinue' 2025-08-26T22:42:57.7951753Z VERBOSE_TEST_LOGS=False 2025-08-26T22:42:57.7951968Z VisualStudioVersion=17.0 2025-08-26T22:42:57.7952434Z VS170COMNTOOLS=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\ 2025-08-26T22:42:57.7952888Z VSCMD_ARG_app_plat=Desktop 2025-08-26T22:42:57.7953114Z VSCMD_ARG_HOST_ARCH=x64 2025-08-26T22:42:57.7953318Z VSCMD_ARG_TGT_ARCH=x64 2025-08-26T22:42:57.7953523Z VSCMD_VER=17.12.10 2025-08-26T22:42:57.7953857Z VSINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\ 2025-08-26T22:42:57.7954245Z VS_VERSION=17.4.1 2025-08-26T22:42:57.7954450Z WINDIR=C:\Windows 2025-08-26T22:42:57.7954991Z WindowsLibPath=C:\Program Files (x86)\Windows Kits\10\UnionMetadata\10.0.19041.0;C:\Program Files (x86)\Windows Kits\10\References\10.0.19041.0 2025-08-26T22:42:57.7955742Z WindowsSdkBinPath=C:\Program Files (x86)\Windows Kits\10\bin\ 2025-08-26T22:42:57.7956195Z WindowsSdkDir=C:\Program Files (x86)\Windows Kits\10\ 2025-08-26T22:42:57.7956541Z WindowsSDKLibVersion=10.0.19041.0\ 2025-08-26T22:42:57.7956984Z WindowsSdkVerBinPath=C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\ 2025-08-26T22:42:57.7957496Z WindowsSDKVersion=10.0.19041.0\ 2025-08-26T22:42:57.7957985Z WindowsSDK_ExecutablePath_x64=C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\ 2025-08-26T22:42:57.7958709Z WindowsSDK_ExecutablePath_x86=C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\ 2025-08-26T22:42:57.7959431Z _=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers/test_custom_script_ops.bat 2025-08-26T22:42:57.7959925Z __CONDA_OPENSLL_CERT_FILE_SET="1" 2025-08-26T22:42:57.7960183Z __DOTNET_ADD_64BIT=1 2025-08-26T22:42:57.7960391Z __DOTNET_PREFERRED_BITNESS=64 2025-08-26T22:42:57.7963580Z __VSCMD_PREINIT_PATH=C:\Jenkins\Miniconda3;C:\Jenkins\Miniconda3\Library\mingw-w64\bin;C:\Jenkins\Miniconda3\Library\usr\bin;C:\Jenkins\Miniconda3\Library\bin;C:\Jenkins\Miniconda3\Scripts;C:\Jenkins\Miniconda3\bin;C:\Jenkins\Miniconda3\condabin;C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps 2025-08-26T22:42:57.7966574Z 2025-08-26T22:42:57.7966911Z (base) C:\actions-runner\_work\pytorch\pytorch>git submodule update --init --recursive third_party/pybind11 2025-08-26T22:42:58.1615670Z 2025-08-26T22:42:58.1616230Z (base) C:\actions-runner\_work\pytorch\pytorch>cd test\custom_operator 2025-08-26T22:42:58.1620838Z 2025-08-26T22:42:58.1621507Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_operator>mkdir build 2025-08-26T22:42:58.1624565Z 2025-08-26T22:42:58.1624883Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_operator>pushd build 2025-08-26T22:42:58.1629684Z 2025-08-26T22:42:58.1630178Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_operator\build>echo "Executing CMake for custom_operator test..." 2025-08-26T22:42:58.1630887Z "Executing CMake for custom_operator test..." 2025-08-26T22:42:58.1632915Z 2025-08-26T22:42:58.1633740Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_operator\build>cmake -DCMAKE_PREFIX_PATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch -DCMAKE_BUILD_TYPE=Release -GNinja .. 2025-08-26T22:42:58.3881465Z -- The C compiler identification is MSVC 19.42.34444.0 2025-08-26T22:42:58.5713290Z -- The CXX compiler identification is MSVC 19.42.34444.0 2025-08-26T22:42:58.5927111Z -- Detecting C compiler ABI info 2025-08-26T22:42:58.8701444Z -- Detecting C compiler ABI info - done 2025-08-26T22:42:58.8723354Z -- Check for working C compiler: C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.42.34433/bin/Hostx64/x64/cl.exe - skipped 2025-08-26T22:42:58.8728418Z -- Detecting C compile features 2025-08-26T22:42:58.8735903Z -- Detecting C compile features - done 2025-08-26T22:42:58.8817476Z -- Detecting CXX compiler ABI info 2025-08-26T22:42:59.1550693Z -- Detecting CXX compiler ABI info - done 2025-08-26T22:42:59.1572326Z -- Check for working CXX compiler: C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.42.34433/bin/Hostx64/x64/cl.exe - skipped 2025-08-26T22:42:59.1576104Z -- Detecting CXX compile features 2025-08-26T22:42:59.1583523Z -- Detecting CXX compile features - done 2025-08-26T22:42:59.4502281Z -- Found Torch: C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/build/torch/lib/torch.lib 2025-08-26T22:42:59.4505455Z -- Configuring done 2025-08-26T22:42:59.4639290Z -- Generating done 2025-08-26T22:42:59.4779414Z -- Build files have been written to: C:/actions-runner/_work/pytorch/pytorch/test/custom_operator/build 2025-08-26T22:42:59.4837624Z 2025-08-26T22:42:59.4838257Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_operator\build>if ERRORLEVEL 1 exit /b 1 2025-08-26T22:42:59.4838995Z 2025-08-26T22:42:59.4839417Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_operator\build>echo "Executing Ninja for custom_operator test..." 2025-08-26T22:42:59.4840016Z "Executing Ninja for custom_operator test..." 2025-08-26T22:42:59.4840927Z 2025-08-26T22:42:59.4841228Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_operator\build>ninja -v 2025-08-26T22:43:11.1921025Z [1/4] C:\PROGRA~2\MICROS~1\2022\BUILDT~1\VC\Tools\MSVC\1442~1.344\bin\Hostx64\x64\cl.exe /nologo /TP -DUSE_C10D_GLOO -DUSE_DISTRIBUTED -external:I C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include -external:I C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch\csrc\api\include -external:W0 /DWIN32 /D_WINDOWS /GR /EHsc /O2 /Ob2 /DNDEBUG -MD /permissive- /EHsc /bigobj -std:c++17 /showIncludes /FoCMakeFiles\test_custom_ops.dir\test_custom_ops.cpp.obj /FdCMakeFiles\test_custom_ops.dir\ /FS -c C:\actions-runner\_work\pytorch\pytorch\test\custom_operator\test_custom_ops.cpp 2025-08-26T22:43:11.1923826Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(82): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data 2025-08-26T22:43:11.1925135Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(82): note: the template instantiation context (the oldest one first) is 2025-08-26T22:43:11.1927499Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/core/function_schema.h(438): note: see reference to function template instantiation 'std::optional::optional(_Ty2 &&) noexcept' being compiled 2025-08-26T22:43:11.1929305Z with 2025-08-26T22:43:11.1929614Z [ 2025-08-26T22:43:11.1929899Z I=size_t, 2025-08-26T22:43:11.1930250Z _Ty2=size_t 2025-08-26T22:43:11.1930579Z ] 2025-08-26T22:43:11.1932140Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/core/function_schema.h(438): note: see the first reference to 'std::optional::optional' in 'c10::FunctionSchema::argumentIndexWithName' 2025-08-26T22:43:11.1935718Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(248): note: see reference to function template instantiation 'std::_Optional_construct_base<_Ty>::_Optional_construct_base(std::in_place_t,const unsigned __int64 &&)' being compiled 2025-08-26T22:43:11.1938103Z with 2025-08-26T22:43:11.1938414Z [ 2025-08-26T22:43:11.1938706Z _Ty=int32_t 2025-08-26T22:43:11.1939053Z ] 2025-08-26T22:43:11.1941055Z C:\actions-runner\_work\pytorch\pytorch\test\custom_operator\test_custom_ops.cpp(201): note: see reference to function template instantiation 'std::_Optional_destruct_base<_Ty,true>::_Optional_destruct_base(std::in_place_t,const unsigned __int64 &&) noexcept' being compiled 2025-08-26T22:43:11.1943308Z with 2025-08-26T22:43:11.1943605Z [ 2025-08-26T22:43:11.1943904Z _Ty=int32_t 2025-08-26T22:43:11.1944231Z ] 2025-08-26T22:43:11.1945592Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406): warning C4267: 'initializing': conversion from 'size_t' to 'unsigned int', possible loss of data 2025-08-26T22:43:11.1947945Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406): note: the template instantiation context (the oldest one first) is 2025-08-26T22:43:11.1950886Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch/csrc/dynamo/compiled_autograd.h(236): note: see reference to function template instantiation 'std::_Vbase &std::vector>::emplace_back(const _Ty &)' being compiled 2025-08-26T22:43:11.1952948Z with 2025-08-26T22:43:11.1953249Z [ 2025-08-26T22:43:11.1953551Z _Ty=size_t 2025-08-26T22:43:11.1953894Z ] 2025-08-26T22:43:11.1955813Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(858): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_one_at_back(const unsigned __int64 &)' being compiled 2025-08-26T22:43:11.1957802Z with 2025-08-26T22:43:11.1958109Z [ 2025-08-26T22:43:11.1958436Z _Ty=std::_Vbase 2025-08-26T22:43:11.1958806Z ] 2025-08-26T22:43:11.1960831Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(776): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_back_with_unused_capacity(const unsigned __int64 &)' being compiled 2025-08-26T22:43:11.1962910Z with 2025-08-26T22:43:11.1963210Z [ 2025-08-26T22:43:11.1963518Z _Ty=std::_Vbase 2025-08-26T22:43:11.1963876Z ] 2025-08-26T22:43:11.1965641Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(791): note: see reference to function template instantiation 'void std::_Construct_in_place(unsigned int &,const _Ty &) noexcept' being compiled 2025-08-26T22:43:11.1967614Z with 2025-08-26T22:43:11.1967925Z [ 2025-08-26T22:43:11.1968221Z _Ty=size_t 2025-08-26T22:43:11.1968565Z ] 2025-08-26T22:43:11.1969837Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700): warning C4267: 'initializing': conversion from 'size_t' to '_Ty', possible loss of data 2025-08-26T22:43:11.1971252Z with 2025-08-26T22:43:11.1971610Z [ 2025-08-26T22:43:11.1971912Z _Ty=unsigned int 2025-08-26T22:43:11.1972336Z ] 2025-08-26T22:43:11.1973468Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700): note: the template instantiation context (the oldest one first) is 2025-08-26T22:43:11.1976599Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(779): note: see reference to function template instantiation 'unsigned int *std::vector>::_Emplace_reallocate(unsigned int *const ,const _Ty &)' being compiled 2025-08-26T22:43:11.1979028Z with 2025-08-26T22:43:11.1979355Z [ 2025-08-26T22:43:11.1979677Z _Ty=size_t 2025-08-26T22:43:11.1980041Z ] 2025-08-26T22:43:11.1982235Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(830): note: see reference to function template instantiation 'void std::_Default_allocator_traits<_Alloc>::construct<_Ty,const unsigned __int64&>(_Alloc &,_Objty *const ,const unsigned __int64 &)' being compiled 2025-08-26T22:43:11.1984455Z with 2025-08-26T22:43:11.1984781Z [ 2025-08-26T22:43:11.1985165Z _Alloc=std::allocator, 2025-08-26T22:43:11.1985670Z _Ty=unsigned int, 2025-08-26T22:43:11.1986114Z _Objty=unsigned int 2025-08-26T22:43:11.1986523Z ] 2025-08-26T22:43:11.1987900Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data 2025-08-26T22:43:11.1990362Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406): note: the template instantiation context (the oldest one first) is 2025-08-26T22:43:11.1993404Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch/csrc/dynamo/compiled_autograd.h(681): note: see reference to function template instantiation 'int32_t &std::vector>::emplace_back(size_t &)' being compiled 2025-08-26T22:43:11.1996937Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(858): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_one_at_back(unsigned __int64 &)' being compiled 2025-08-26T22:43:11.1998829Z with 2025-08-26T22:43:11.1999118Z [ 2025-08-26T22:43:11.1999422Z _Ty=int32_t 2025-08-26T22:43:11.1999764Z ] 2025-08-26T22:43:11.2001682Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(776): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_back_with_unused_capacity(unsigned __int64 &)' being compiled 2025-08-26T22:43:11.2003674Z with 2025-08-26T22:43:11.2003978Z [ 2025-08-26T22:43:11.2004283Z _Ty=int32_t 2025-08-26T22:43:11.2004608Z ] 2025-08-26T22:43:11.2006210Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(791): note: see reference to function template instantiation 'void std::_Construct_in_place(int &,_Ty &) noexcept' being compiled 2025-08-26T22:43:11.2007950Z with 2025-08-26T22:43:11.2008256Z [ 2025-08-26T22:43:11.2008518Z _Ty=size_t 2025-08-26T22:43:11.2008861Z ] 2025-08-26T22:43:11.2010146Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700): warning C4267: 'initializing': conversion from 'size_t' to '_Ty', possible loss of data 2025-08-26T22:43:11.2011655Z with 2025-08-26T22:43:11.2012025Z [ 2025-08-26T22:43:11.2012399Z _Ty=int 2025-08-26T22:43:11.2012820Z ] 2025-08-26T22:43:11.2014033Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700): note: the template instantiation context (the oldest one first) is 2025-08-26T22:43:11.2016769Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(779): note: see reference to function template instantiation 'int *std::vector>::_Emplace_reallocate<_Ty&>(int *const ,_Ty &)' being compiled 2025-08-26T22:43:11.2018780Z with 2025-08-26T22:43:11.2019157Z [ 2025-08-26T22:43:11.2019692Z _Ty=size_t 2025-08-26T22:43:11.2020197Z ] 2025-08-26T22:43:11.2022270Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(830): note: see reference to function template instantiation 'void std::_Default_allocator_traits<_Alloc>::construct<_Ty,unsigned __int64&>(_Alloc &,_Objty *const ,unsigned __int64 &)' being compiled 2025-08-26T22:43:11.2024388Z with 2025-08-26T22:43:11.2024732Z [ 2025-08-26T22:43:11.2025129Z _Alloc=std::allocator, 2025-08-26T22:43:11.2025612Z _Ty=int, 2025-08-26T22:43:11.2026005Z _Objty=int 2025-08-26T22:43:11.2026377Z ] 2025-08-26T22:43:11.2027733Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263): warning C4267: 'initializing': conversion from 'size_t' to '_Ty1', possible loss of data 2025-08-26T22:43:11.2029198Z with 2025-08-26T22:43:11.2029642Z [ 2025-08-26T22:43:11.2030008Z _Ty1=int 2025-08-26T22:43:11.2030390Z ] 2025-08-26T22:43:11.2031574Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263): note: the template instantiation context (the oldest one first) is 2025-08-26T22:43:11.2034698Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch/csrc/dynamo/compiled_autograd.h(658): note: see reference to function template instantiation 'std::pair &std::vector,std::allocator>>::emplace_back(size_t &,int &)' being compiled 2025-08-26T22:43:11.2038525Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(858): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_one_at_back(unsigned __int64 &,int &)' being compiled 2025-08-26T22:43:11.2040579Z with 2025-08-26T22:43:11.2040933Z [ 2025-08-26T22:43:11.2041316Z _Ty=std::pair 2025-08-26T22:43:11.2041774Z ] 2025-08-26T22:43:11.2043792Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(776): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_back_with_unused_capacity(unsigned __int64 &,int &)' being compiled 2025-08-26T22:43:11.2046031Z with 2025-08-26T22:43:11.2046401Z [ 2025-08-26T22:43:11.2046781Z _Ty=std::pair 2025-08-26T22:43:11.2047225Z ] 2025-08-26T22:43:11.2049055Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(791): note: see reference to function template instantiation 'void std::_Construct_in_place,_Ty&,int&>(std::pair &,_Ty &,int &) noexcept' being compiled 2025-08-26T22:43:11.2051018Z with 2025-08-26T22:43:11.2051362Z [ 2025-08-26T22:43:11.2051732Z _Ty=size_t 2025-08-26T22:43:11.2052111Z ] 2025-08-26T22:43:11.2053783Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406): note: see reference to function template instantiation 'std::pair::pair(_Other1,_Other2) noexcept' being compiled 2025-08-26T22:43:11.2055581Z with 2025-08-26T22:43:11.2055942Z [ 2025-08-26T22:43:11.2056286Z _Other1=uint64_t &, 2025-08-26T22:43:11.2056749Z _Other2=int & 2025-08-26T22:43:11.2057166Z ] 2025-08-26T22:43:12.2983305Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263): warning C4267: 'initializing': conversion from 'size_t' to '_Ty2', possible loss of data 2025-08-26T22:43:12.2984197Z with 2025-08-26T22:43:12.2984439Z [ 2025-08-26T22:43:12.2984628Z _Ty2=int 2025-08-26T22:43:12.2985086Z ] 2025-08-26T22:43:12.2987396Z [2/4] C:\PROGRA~2\MICROS~1\2022\BUILDT~1\VC\Tools\MSVC\1442~1.344\bin\Hostx64\x64\cl.exe /nologo /TP -DUSE_C10D_GLOO -DUSE_DISTRIBUTED -Dcustom_ops_EXPORTS -external:I C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include -external:I C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch\csrc\api\include -external:W0 /DWIN32 /D_WINDOWS /GR /EHsc /O2 /Ob2 /DNDEBUG -MD /permissive- /EHsc /bigobj -std:c++17 /showIncludes /FoCMakeFiles\custom_ops.dir\op.cpp.obj /FdCMakeFiles\custom_ops.dir\ /FS -c C:\actions-runner\_work\pytorch\pytorch\test\custom_operator\op.cpp 2025-08-26T22:43:12.2990131Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(82): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data 2025-08-26T22:43:12.2991419Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(82): note: the template instantiation context (the oldest one first) is 2025-08-26T22:43:12.2993607Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/core/function_schema.h(438): note: see reference to function template instantiation 'std::optional::optional(_Ty2 &&) noexcept' being compiled 2025-08-26T22:43:12.2994644Z with 2025-08-26T22:43:12.2994853Z [ 2025-08-26T22:43:12.2995068Z I=size_t, 2025-08-26T22:43:12.2995291Z _Ty2=size_t 2025-08-26T22:43:12.2995529Z ] 2025-08-26T22:43:12.2996379Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\ATen/core/function_schema.h(438): note: see the first reference to 'std::optional::optional' in 'c10::FunctionSchema::argumentIndexWithName' 2025-08-26T22:43:12.2998235Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(248): note: see reference to function template instantiation 'std::_Optional_construct_base<_Ty>::_Optional_construct_base(std::in_place_t,const unsigned __int64 &&)' being compiled 2025-08-26T22:43:12.2999420Z with 2025-08-26T22:43:12.2999619Z [ 2025-08-26T22:43:12.2999836Z _Ty=int32_t 2025-08-26T22:43:12.3000057Z ] 2025-08-26T22:43:12.3001114Z C:\actions-runner\_work\pytorch\pytorch\test\custom_operator\op.cpp(103): note: see reference to function template instantiation 'std::_Optional_destruct_base<_Ty,true>::_Optional_destruct_base(std::in_place_t,const unsigned __int64 &&) noexcept' being compiled 2025-08-26T22:43:12.3002231Z with 2025-08-26T22:43:12.3002430Z [ 2025-08-26T22:43:12.3002643Z _Ty=int32_t 2025-08-26T22:43:12.3002863Z ] 2025-08-26T22:43:12.3003653Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406): warning C4267: 'initializing': conversion from 'size_t' to 'unsigned int', possible loss of data 2025-08-26T22:43:12.3004964Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406): note: the template instantiation context (the oldest one first) is 2025-08-26T22:43:12.3006609Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch/csrc/dynamo/compiled_autograd.h(236): note: see reference to function template instantiation 'std::_Vbase &std::vector>::emplace_back(const _Ty &)' being compiled 2025-08-26T22:43:12.3007782Z with 2025-08-26T22:43:12.3007972Z [ 2025-08-26T22:43:12.3008170Z _Ty=size_t 2025-08-26T22:43:12.3008381Z ] 2025-08-26T22:43:12.3009545Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(858): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_one_at_back(const unsigned __int64 &)' being compiled 2025-08-26T22:43:12.3010759Z with 2025-08-26T22:43:12.3010959Z [ 2025-08-26T22:43:12.3011196Z _Ty=std::_Vbase 2025-08-26T22:43:12.3011433Z ] 2025-08-26T22:43:12.3012516Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(776): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_back_with_unused_capacity(const unsigned __int64 &)' being compiled 2025-08-26T22:43:12.3013679Z with 2025-08-26T22:43:12.3013881Z [ 2025-08-26T22:43:12.3014107Z _Ty=std::_Vbase 2025-08-26T22:43:12.3014344Z ] 2025-08-26T22:43:12.3015350Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(791): note: see reference to function template instantiation 'void std::_Construct_in_place(unsigned int &,const _Ty &) noexcept' being compiled 2025-08-26T22:43:12.3016411Z with 2025-08-26T22:43:12.3016629Z [ 2025-08-26T22:43:12.3016820Z _Ty=size_t 2025-08-26T22:43:12.3017060Z ] 2025-08-26T22:43:12.3017802Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700): warning C4267: 'initializing': conversion from 'size_t' to '_Ty', possible loss of data 2025-08-26T22:43:12.3018594Z with 2025-08-26T22:43:12.3018811Z [ 2025-08-26T22:43:12.3019007Z _Ty=unsigned int 2025-08-26T22:43:12.3019260Z ] 2025-08-26T22:43:12.3019910Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700): note: the template instantiation context (the oldest one first) is 2025-08-26T22:43:12.3021660Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(779): note: see reference to function template instantiation 'unsigned int *std::vector>::_Emplace_reallocate(unsigned int *const ,const _Ty &)' being compiled 2025-08-26T22:43:12.3022860Z with 2025-08-26T22:43:12.3023058Z [ 2025-08-26T22:43:12.3023285Z _Ty=size_t 2025-08-26T22:43:12.3023511Z ] 2025-08-26T22:43:12.3024642Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(830): note: see reference to function template instantiation 'void std::_Default_allocator_traits<_Alloc>::construct<_Ty,const unsigned __int64&>(_Alloc &,_Objty *const ,const unsigned __int64 &)' being compiled 2025-08-26T22:43:12.3025847Z with 2025-08-26T22:43:12.3026043Z [ 2025-08-26T22:43:12.3026287Z _Alloc=std::allocator, 2025-08-26T22:43:12.3026594Z _Ty=unsigned int, 2025-08-26T22:43:12.3026878Z _Objty=unsigned int 2025-08-26T22:43:12.3027126Z ] 2025-08-26T22:43:12.3027888Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data 2025-08-26T22:43:12.3029184Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406): note: the template instantiation context (the oldest one first) is 2025-08-26T22:43:12.3030747Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch/csrc/dynamo/compiled_autograd.h(681): note: see reference to function template instantiation 'int32_t &std::vector>::emplace_back(size_t &)' being compiled 2025-08-26T22:43:12.3032636Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(858): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_one_at_back(unsigned __int64 &)' being compiled 2025-08-26T22:43:12.3033818Z with 2025-08-26T22:43:12.3034097Z [ 2025-08-26T22:43:12.3034316Z _Ty=int32_t 2025-08-26T22:43:12.3034529Z ] 2025-08-26T22:43:12.3035598Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(776): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_back_with_unused_capacity(unsigned __int64 &)' being compiled 2025-08-26T22:43:12.3036728Z with 2025-08-26T22:43:12.3036924Z [ 2025-08-26T22:43:12.3037158Z _Ty=int32_t 2025-08-26T22:43:12.3037373Z ] 2025-08-26T22:43:12.3038277Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(791): note: see reference to function template instantiation 'void std::_Construct_in_place(int &,_Ty &) noexcept' being compiled 2025-08-26T22:43:12.3039221Z with 2025-08-26T22:43:12.3039445Z [ 2025-08-26T22:43:12.3039632Z _Ty=size_t 2025-08-26T22:43:12.3039863Z ] 2025-08-26T22:43:12.3040605Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700): warning C4267: 'initializing': conversion from 'size_t' to '_Ty', possible loss of data 2025-08-26T22:43:12.3041373Z with 2025-08-26T22:43:12.3041595Z [ 2025-08-26T22:43:12.3041784Z _Ty=int 2025-08-26T22:43:12.3042005Z ] 2025-08-26T22:43:12.3042657Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700): note: the template instantiation context (the oldest one first) is 2025-08-26T22:43:12.3044176Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(779): note: see reference to function template instantiation 'int *std::vector>::_Emplace_reallocate<_Ty&>(int *const ,_Ty &)' being compiled 2025-08-26T22:43:12.3045231Z with 2025-08-26T22:43:12.3045433Z [ 2025-08-26T22:43:12.3045651Z _Ty=size_t 2025-08-26T22:43:12.3046011Z ] 2025-08-26T22:43:12.3047113Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(830): note: see reference to function template instantiation 'void std::_Default_allocator_traits<_Alloc>::construct<_Ty,unsigned __int64&>(_Alloc &,_Objty *const ,unsigned __int64 &)' being compiled 2025-08-26T22:43:12.3048280Z with 2025-08-26T22:43:12.3048472Z [ 2025-08-26T22:43:12.3048705Z _Alloc=std::allocator, 2025-08-26T22:43:12.3048976Z _Ty=int, 2025-08-26T22:43:12.3049217Z _Objty=int 2025-08-26T22:43:12.3049442Z ] 2025-08-26T22:43:12.3050186Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263): warning C4267: 'initializing': conversion from 'size_t' to '_Ty1', possible loss of data 2025-08-26T22:43:12.3051003Z with 2025-08-26T22:43:12.3051221Z [ 2025-08-26T22:43:12.3051405Z _Ty1=int 2025-08-26T22:43:12.3051599Z ] 2025-08-26T22:43:12.3052251Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263): note: the template instantiation context (the oldest one first) is 2025-08-26T22:43:12.3053930Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\include\torch/csrc/dynamo/compiled_autograd.h(658): note: see reference to function template instantiation 'std::pair &std::vector,std::allocator>>::emplace_back(size_t &,int &)' being compiled 2025-08-26T22:43:12.3056067Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(858): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_one_at_back(unsigned __int64 &,int &)' being compiled 2025-08-26T22:43:12.3057224Z with 2025-08-26T22:43:12.3057398Z [ 2025-08-26T22:43:12.3057605Z _Ty=std::pair 2025-08-26T22:43:12.3057852Z ] 2025-08-26T22:43:12.3058913Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(776): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_back_with_unused_capacity(unsigned __int64 &,int &)' being compiled 2025-08-26T22:43:12.3060045Z with 2025-08-26T22:43:12.3060226Z [ 2025-08-26T22:43:12.3060426Z _Ty=std::pair 2025-08-26T22:43:12.3060667Z ] 2025-08-26T22:43:12.3061737Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(791): note: see reference to function template instantiation 'void std::_Construct_in_place,_Ty&,int&>(std::pair &,_Ty &,int &) noexcept' being compiled 2025-08-26T22:43:12.3062781Z with 2025-08-26T22:43:12.3062973Z [ 2025-08-26T22:43:12.3063169Z _Ty=size_t 2025-08-26T22:43:12.3063377Z ] 2025-08-26T22:43:12.3064275Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(406): note: see reference to function template instantiation 'std::pair::pair(_Other1,_Other2) noexcept' being compiled 2025-08-26T22:43:12.3065216Z with 2025-08-26T22:43:12.3065418Z [ 2025-08-26T22:43:12.3065607Z _Other1=uint64_t &, 2025-08-26T22:43:12.3065864Z _Other2=int & 2025-08-26T22:43:12.3066075Z ] 2025-08-26T22:43:12.5491534Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\utility(263): warning C4267: 'initializing': conversion from 'size_t' to '_Ty2', possible loss of data 2025-08-26T22:43:12.5492371Z with 2025-08-26T22:43:12.5492581Z [ 2025-08-26T22:43:12.5492782Z _Ty2=int 2025-08-26T22:43:12.5492974Z ] 2025-08-26T22:43:12.5496574Z [3/4] cmd.exe /C "cd . && C:\Jenkins\Miniconda3\Library\bin\cmake.exe -E vs_link_dll --intdir=CMakeFiles\custom_ops.dir --rc=C:\PROGRA~2\WI3CF2~1\10\bin\100190~1.0\x64\rc.exe --mt=C:\PROGRA~2\WI3CF2~1\10\bin\100190~1.0\x64\mt.exe --manifests -- C:\PROGRA~2\MICROS~1\2022\BUILDT~1\VC\Tools\MSVC\1442~1.344\bin\Hostx64\x64\link.exe /nologo CMakeFiles\custom_ops.dir\op.cpp.obj /out:custom_ops.dll /implib:custom_ops.lib /pdb:custom_ops.pdb /dll /version:0.0 /machine:x64 /INCREMENTAL:NO -LIBPATH:\lib -LIBPATH:\lib\intel64 -LIBPATH:\lib\intel64_win -LIBPATH:\lib\win-x64 C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib\c10.lib C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib\kineto.lib C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib\torch.lib C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib\torch_cpu.lib C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib\c10.lib kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib && cd ." 2025-08-26T22:43:12.6931884Z [4/4] cmd.exe /C "cd . && C:\Jenkins\Miniconda3\Library\bin\cmake.exe -E vs_link_exe --intdir=CMakeFiles\test_custom_ops.dir --rc=C:\PROGRA~2\WI3CF2~1\10\bin\100190~1.0\x64\rc.exe --mt=C:\PROGRA~2\WI3CF2~1\10\bin\100190~1.0\x64\mt.exe --manifests -- C:\PROGRA~2\MICROS~1\2022\BUILDT~1\VC\Tools\MSVC\1442~1.344\bin\Hostx64\x64\link.exe /nologo CMakeFiles\test_custom_ops.dir\test_custom_ops.cpp.obj /out:test_custom_ops.exe /implib:test_custom_ops.lib /pdb:test_custom_ops.pdb /version:0.0 /machine:x64 /INCREMENTAL:NO /subsystem:console -LIBPATH:\lib -LIBPATH:\lib\intel64 -LIBPATH:\lib\intel64_win -LIBPATH:\lib\win-x64 custom_ops.lib C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib\torch.lib C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib\torch_cpu.lib C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib\c10.lib C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib\c10.lib C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib\kineto.lib kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib && cd ." 2025-08-26T22:43:12.6947505Z 2025-08-26T22:43:12.6947930Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_operator\build>if ERRORLEVEL 1 exit /b 1 2025-08-26T22:43:12.6948985Z 2025-08-26T22:43:12.6949485Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_operator\build>echo "Ninja succeeded for custom_operator test." 2025-08-26T22:43:12.6950120Z "Ninja succeeded for custom_operator test." 2025-08-26T22:43:12.6950900Z 2025-08-26T22:43:12.6951182Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_operator\build>popd 2025-08-26T22:43:12.6955691Z 2025-08-26T22:43:12.6956100Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_operator>python test_custom_ops.py -v 2025-08-26T22:43:16.3238220Z 2025-08-26T22:43:16.3238650Z Running tests... 2025-08-26T22:43:16.3239041Z ---------------------------------------------------------------------- 2025-08-26T22:43:16.3239595Z Test results will be stored in test-reports\python-unittest\test_custom_ops 2025-08-26T22:43:16.6710937Z test_abstract_impl_pystub_faketensor (__main__.TestCustomOperators) ... C:\actions-runner\_work\pytorch\pytorch\test\custom_operator\my_custom_ops.py:13: FutureWarning: `create_unbacked_symint` is deprecated, please use `new_dynamic_size` instead 2025-08-26T22:43:16.6712087Z nnz = ctx.create_unbacked_symint() 2025-08-26T22:43:16.6816875Z ok (0.362s) 2025-08-26T22:43:16.6876047Z test_abstract_impl_pystub_meta (__main__.TestCustomOperators) ... ok (0.000s) 2025-08-26T22:43:16.6901830Z test_calling_custom_op (__main__.TestCustomOperators) ... ok (0.000s) 2025-08-26T22:43:16.7548364Z test_calling_custom_op_inside_script_module (__main__.TestCustomOperators) ... ok (0.064s) 2025-08-26T22:43:16.7558887Z test_calling_custom_op_string (__main__.TestCustomOperators) ... ok (0.000s) 2025-08-26T22:43:16.7591662Z test_calling_custom_op_with_autograd (__main__.TestCustomOperators) ... C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\graph.py:841: UserWarning: Using backward() with create_graph=True will create a reference cycle between the parameter and its gradient which can cause a memory leak. We recommend using autograd.grad when creating the graph to avoid this. If you have to use this function, make sure to reset the .grad fields of your parameters to None after use to break the cycle and avoid the leak. (Triggered internally at C:\actions-runner\_work\pytorch\pytorch\torch\csrc\autograd\engine.cpp:1296.) 2025-08-26T22:43:16.7594237Z return Variable._execution_engine.run_backward( # Calls into the C++ engine to run the backward pass 2025-08-26T22:43:16.7608118Z ok (0.000s) 2025-08-26T22:43:16.7620551Z test_calling_custom_op_with_autograd_in_nograd_mode (__main__.TestCustomOperators) ... ok (0.016s) 2025-08-26T22:43:16.7627704Z test_custom_library_is_loaded (__main__.TestCustomOperators) ... ok (0.000s) 2025-08-26T22:43:16.7634747Z test_dynamo_pystub_suggestion (__main__.TestCustomOperators) ... skip: torch.compile not supported on windows (0.000s) 2025-08-26T22:43:16.7646152Z test_op_with_incorrect_abstract_impl_pystub (__main__.TestCustomOperators) ... ok (0.000s) 2025-08-26T22:43:16.7657605Z test_op_with_no_abstract_impl_pystub (__main__.TestCustomOperators) ... ok (0.000s) 2025-08-26T22:43:16.7766788Z test_saving_and_loading_script_module_with_custom_op (__main__.TestCustomOperators) ... ok (0.015s) 2025-08-26T22:43:16.7767214Z 2025-08-26T22:43:16.7767789Z ---------------------------------------------------------------------- 2025-08-26T22:43:16.7768224Z Ran 12 tests in 0.468s 2025-08-26T22:43:16.7768379Z 2025-08-26T22:43:16.7768730Z OK (skipped=1) 2025-08-26T22:43:16.7769002Z 2025-08-26T22:43:16.7769111Z Generating XML reports... 2025-08-26T22:43:16.7833293Z Generated XML report: test-reports\python-unittest\test_custom_ops\TEST-TestCustomOperators-20250826224316.xml 2025-08-26T22:43:17.4113414Z 2025-08-26T22:43:17.4114409Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_operator>if ERRORLEVEL 1 exit /b 1 2025-08-26T22:43:17.4114850Z 2025-08-26T22:43:17.4115266Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_operator>python model.py --export-script-module="build/model.pt" 2025-08-26T22:43:19.3687705Z 2025-08-26T22:43:19.3688653Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_operator>if ERRORLEVEL 1 exit /b 1 2025-08-26T22:43:19.3689163Z 2025-08-26T22:43:19.3689454Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_operator>cd build 2025-08-26T22:43:19.3694511Z 2025-08-26T22:43:19.3702471Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_operator\build>set PATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\bin\HostX64\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\VCPackages;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\MSBuild\Current\bin\Roslyn;C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\Extensions\Microsoft\CodeCoverage.Console;C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\\x64;C:\Program Files (x86)\Windows Kits\10\bin\\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\\MSBuild\Current\Bin\amd64;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\;C:\Jenkins\Miniconda3;C:\Jenkins\Miniconda3\Library\mingw-w64\bin;C:\Jenkins\Miniconda3\Library\usr\bin;C:\Jenkins\Miniconda3\Library\bin;C:\Jenkins\Miniconda3\Scripts;C:\Jenkins\Miniconda3\bin;C:\Jenkins\Miniconda3\condabin;C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\Llvm\x64\bin;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\Linux\bin\ConnectionManagerExe 2025-08-26T22:43:19.3710172Z 2025-08-26T22:43:19.3710509Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_operator\build>test_custom_ops.exe model.pt 2025-08-26T22:43:19.6618799Z [W826 22:43:19.000000000 engine.cpp:1296] Warning: Using backward() with create_graph=True will create a reference cycle between the parameter and its gradient which can cause a memory leak. We recommend using autograd.grad when creating the graph to avoid this. If you have to use this function, make sure to reset the .grad fields of your parameters to None after use to break the cycle and avoid the leak. (function operator ()) 2025-08-26T22:43:19.8300333Z ok 2025-08-26T22:43:19.8358307Z 2025-08-26T22:43:19.8359066Z (base) C:\actions-runner\_work\pytorch\pytorch\test\custom_operator\build>if ERRORLEVEL 1 exit /b 1 2025-08-26T22:43:19.8378759Z + assert_git_not_dirty 2025-08-26T22:43:19.8379329Z + [[ win-vs2022-cpu-py3 != *rocm* ]] 2025-08-26T22:43:19.8379787Z + [[ win-vs2022-cpu-py3 != *xla* ]] 2025-08-26T22:43:19.8494784Z ++ git status --porcelain 2025-08-26T22:43:19.8551644Z ++ grep -v '?? third_party' 2025-08-26T22:43:23.6698135Z ++ true 2025-08-26T22:43:23.6702918Z + git_status= 2025-08-26T22:43:23.6703269Z + [[ -n '' ]] 2025-08-26T22:43:23.6703520Z + echo 'TEST PASSED' 2025-08-26T22:43:23.6703940Z TEST PASSED 2025-08-26T22:43:23.6847192Z ##[group]Run cat test/**/*_toprint.log || true 2025-08-26T22:43:23.6847565Z cat test/**/*_toprint.log || true 2025-08-26T22:43:23.6866924Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T22:43:23.6867354Z env: 2025-08-26T22:43:23.6867532Z GIT_DEFAULT_BRANCH: main 2025-08-26T22:43:23.6867901Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T22:43:23.6868395Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T22:43:23.6868853Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T22:43:23.6869257Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T22:43:23.6869531Z ##[endgroup] 2025-08-26T22:43:23.7589978Z cat: 'test/**/*_toprint.log': No such file or directory 2025-08-26T22:43:23.7705908Z ##[group]Run kill "$MONITOR_SCRIPT_PID" 2025-08-26T22:43:23.7706231Z kill "$MONITOR_SCRIPT_PID" 2025-08-26T22:43:23.7725481Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T22:43:23.7725903Z env: 2025-08-26T22:43:23.7726096Z GIT_DEFAULT_BRANCH: main 2025-08-26T22:43:23.7726460Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T22:43:23.7726967Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T22:43:23.7727431Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T22:43:23.7727808Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T22:43:23.7728113Z MONITOR_SCRIPT_PID: 622 2025-08-26T22:43:23.7728340Z ##[endgroup] 2025-08-26T22:43:23.8188620Z Prepare all required actions 2025-08-26T22:43:23.8189096Z Getting action download info 2025-08-26T22:43:23.9795806Z Download action repository 'seemethere/upload-artifact-s3@v5' (SHA:baba72d0712b404f646cebe0730933554ebce96a) 2025-08-26T22:43:24.2775907Z Download action repository 'actions/upload-artifact@v4' (SHA:ea165f8d65b6e75b540449e92b4886f43607fa02) 2025-08-26T22:43:24.7169021Z ##[group]Run ./.github/actions/upload-test-artifacts 2025-08-26T22:43:24.7169353Z with: 2025-08-26T22:43:24.7169686Z file-suffix: test-default-2-3-windows.4xlarge.nonephemeral_48947911970 2025-08-26T22:43:24.7170108Z s3-bucket: gha-artifacts 2025-08-26T22:43:24.7170346Z env: 2025-08-26T22:43:24.7170525Z GIT_DEFAULT_BRANCH: main 2025-08-26T22:43:24.7170891Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T22:43:24.7171397Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T22:43:24.7171924Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T22:43:24.7172319Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T22:43:24.7172612Z ##[endgroup] 2025-08-26T22:43:24.7284014Z ##[group]Run # -ir => recursive include all files in pattern 2025-08-26T22:43:24.7284415Z # -ir => recursive include all files in pattern 2025-08-26T22:43:24.7284864Z 7z a "test-jsons-$Env:FILE_SUFFIX.zip" -ir'!test\test-reports\*.json' 2025-08-26T22:43:24.7300894Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-26T22:43:24.7301438Z env: 2025-08-26T22:43:24.7301629Z GIT_DEFAULT_BRANCH: main 2025-08-26T22:43:24.7301999Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T22:43:24.7302501Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T22:43:24.7303033Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T22:43:24.7303529Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T22:43:24.7304574Z FILE_SUFFIX: test-default-2-3-windows.4xlarge.nonephemeral_48947911970 2025-08-26T22:43:24.7304987Z ##[endgroup] 2025-08-26T22:43:25.0802714Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-26T22:43:25.0877482Z Finished 2025-08-26T22:43:25.3495819Z 2025-08-26T22:43:25.3496281Z 7-Zip 25.01 (x64) : Copyright (c) 1999-2025 Igor Pavlov : 2025-08-03 2025-08-26T22:43:25.3496585Z 2025-08-26T22:43:25.3496665Z Scanning the drive: 2025-08-26T22:43:25.3496885Z 1 file, 20878 bytes (21 KiB) 2025-08-26T22:43:25.3497036Z 2025-08-26T22:43:25.3497358Z Creating archive: test-jsons-test-default-2-3-windows.4xlarge.nonephemeral_48947911970.zip 2025-08-26T22:43:25.3497785Z 2025-08-26T22:43:25.3497910Z Add new data to archive: 1 file, 20878 bytes (21 KiB) 2025-08-26T22:43:25.3498139Z 2025-08-26T22:43:25.3498156Z 2025-08-26T22:43:25.3498238Z Files read from disk: 1 2025-08-26T22:43:25.3498480Z Archive size: 3893 bytes (4 KiB) 2025-08-26T22:43:25.3498734Z Everything is Ok 2025-08-26T22:43:25.3770660Z ##[group]Run # -ir => recursive include all files in pattern 2025-08-26T22:43:25.3771088Z # -ir => recursive include all files in pattern 2025-08-26T22:43:25.3771635Z 7z a "test-reports-$Env:FILE_SUFFIX.zip" -ir'!test\test-reports\*.xml' -ir'!test\test-reports\*.csv' 2025-08-26T22:43:25.3789420Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-26T22:43:25.3789854Z env: 2025-08-26T22:43:25.3790063Z GIT_DEFAULT_BRANCH: main 2025-08-26T22:43:25.3790432Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T22:43:25.3790937Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T22:43:25.3791397Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T22:43:25.3791783Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T22:43:25.3794043Z FILE_SUFFIX: test-default-2-3-windows.4xlarge.nonephemeral_48947911970 2025-08-26T22:43:25.3794504Z ##[endgroup] 2025-08-26T22:43:25.7239099Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-26T22:43:25.7310245Z Finished 2025-08-26T22:43:26.1506120Z 2025-08-26T22:43:26.1506569Z 7-Zip 25.01 (x64) : Copyright (c) 1999-2025 Igor Pavlov : 2025-08-03 2025-08-26T22:43:26.1506862Z 2025-08-26T22:43:26.1506941Z Scanning the drive: 2025-08-26T22:43:26.1507160Z 114 files, 21365847 bytes (21 MiB) 2025-08-26T22:43:26.1507331Z 2025-08-26T22:43:26.1507656Z Creating archive: test-reports-test-default-2-3-windows.4xlarge.nonephemeral_48947911970.zip 2025-08-26T22:43:26.1508090Z 2025-08-26T22:43:26.1508229Z Add new data to archive: 114 files, 21365847 bytes (21 MiB) 2025-08-26T22:43:26.1508469Z 2025-08-26T22:43:26.1508473Z 2025-08-26T22:43:26.1508566Z Files read from disk: 114 2025-08-26T22:43:26.1508796Z Archive size: 748973 bytes (732 KiB) 2025-08-26T22:43:26.1509098Z Everything is Ok 2025-08-26T22:43:26.1786111Z ##[group]Run # -ir => recursive include all files in pattern 2025-08-26T22:43:26.1786526Z # -ir => recursive include all files in pattern 2025-08-26T22:43:26.1786986Z 7z a "logs-$Env:FILE_SUFFIX.zip" 'usage_log.txt' -ir'!test\test-reports\*.log' 2025-08-26T22:43:26.1804447Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-26T22:43:26.1804890Z env: 2025-08-26T22:43:26.1805098Z GIT_DEFAULT_BRANCH: main 2025-08-26T22:43:26.1805466Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T22:43:26.1805971Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T22:43:26.1806433Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T22:43:26.1806819Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T22:43:26.1807252Z FILE_SUFFIX: test-default-2-3-windows.4xlarge.nonephemeral_48947911970 2025-08-26T22:43:26.1807895Z ##[endgroup] 2025-08-26T22:43:26.5228115Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-26T22:43:26.5297813Z Finished 2025-08-26T22:43:26.8717820Z 2025-08-26T22:43:26.8718334Z 7-Zip 25.01 (x64) : Copyright (c) 1999-2025 Igor Pavlov : 2025-08-03 2025-08-26T22:43:26.8718634Z 2025-08-26T22:43:26.8718715Z Scanning the drive: 2025-08-26T22:43:26.8718939Z 261 files, 22037077 bytes (22 MiB) 2025-08-26T22:43:26.8719110Z 2025-08-26T22:43:26.8719394Z Creating archive: logs-test-default-2-3-windows.4xlarge.nonephemeral_48947911970.zip 2025-08-26T22:43:26.8719782Z 2025-08-26T22:43:26.8719917Z Add new data to archive: 261 files, 22037077 bytes (22 MiB) 2025-08-26T22:43:26.8720154Z 2025-08-26T22:43:26.8720165Z 2025-08-26T22:43:26.8720253Z Files read from disk: 261 2025-08-26T22:43:26.8720494Z Archive size: 1288852 bytes (1259 KiB) 2025-08-26T22:43:26.8720766Z Everything is Ok 2025-08-26T22:43:26.9013524Z ##[group]Run seemethere/upload-artifact-s3@v5 2025-08-26T22:43:26.9013846Z with: 2025-08-26T22:43:26.9014026Z s3-bucket: gha-artifacts 2025-08-26T22:43:26.9014315Z s3-prefix: pytorch/pytorch/17248463647/1/artifact 2025-08-26T22:43:26.9014623Z retention-days: 14 2025-08-26T22:43:26.9014844Z if-no-files-found: warn 2025-08-26T22:43:26.9015075Z path: test-jsons-*.zip 2025-08-26T22:43:26.9015310Z name: artifact 2025-08-26T22:43:26.9015502Z region: us-east-1 2025-08-26T22:43:26.9015689Z env: 2025-08-26T22:43:26.9015865Z GIT_DEFAULT_BRANCH: main 2025-08-26T22:43:26.9016223Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T22:43:26.9016733Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T22:43:26.9017188Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T22:43:26.9017568Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T22:43:26.9017843Z ##[endgroup] 2025-08-26T22:43:27.2900095Z NOTE: s3-prefix specified, ignoring name parameter 2025-08-26T22:43:27.2900556Z With the provided path, there will be 1 file uploaded 2025-08-26T22:43:27.2900963Z Uploading to s3 prefix: pytorch/pytorch/17248463647/1/artifact 2025-08-26T22:43:27.2913299Z Starting upload of test-jsons-test-default-2-3-windows.4xlarge.nonephemeral_48947911970.zip 2025-08-26T22:43:27.4450720Z Finished upload of test-jsons-test-default-2-3-windows.4xlarge.nonephemeral_48947911970.zip 2025-08-26T22:43:27.4697683Z ##[group]Run seemethere/upload-artifact-s3@v5 2025-08-26T22:43:27.4697985Z with: 2025-08-26T22:43:27.4698166Z s3-bucket: gha-artifacts 2025-08-26T22:43:27.4698451Z s3-prefix: pytorch/pytorch/17248463647/1/artifact 2025-08-26T22:43:27.4698758Z retention-days: 14 2025-08-26T22:43:27.4698985Z if-no-files-found: error 2025-08-26T22:43:27.4699219Z path: test-reports-*.zip 2025-08-26T22:43:27.4699430Z name: artifact 2025-08-26T22:43:27.4699630Z region: us-east-1 2025-08-26T22:43:27.4699817Z env: 2025-08-26T22:43:27.4700019Z GIT_DEFAULT_BRANCH: main 2025-08-26T22:43:27.4700379Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T22:43:27.4700892Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T22:43:27.4701437Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T22:43:27.4701834Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T22:43:27.4702129Z ##[endgroup] 2025-08-26T22:43:27.8578556Z NOTE: s3-prefix specified, ignoring name parameter 2025-08-26T22:43:27.8578985Z With the provided path, there will be 1 file uploaded 2025-08-26T22:43:27.8579389Z Uploading to s3 prefix: pytorch/pytorch/17248463647/1/artifact 2025-08-26T22:43:27.8592513Z Starting upload of test-reports-test-default-2-3-windows.4xlarge.nonephemeral_48947911970.zip 2025-08-26T22:43:28.1736789Z Finished upload of test-reports-test-default-2-3-windows.4xlarge.nonephemeral_48947911970.zip 2025-08-26T22:43:28.2001950Z ##[group]Run seemethere/upload-artifact-s3@v5 2025-08-26T22:43:28.2002435Z with: 2025-08-26T22:43:28.2002616Z s3-bucket: gha-artifacts 2025-08-26T22:43:28.2002905Z s3-prefix: pytorch/pytorch/17248463647/1/artifact 2025-08-26T22:43:28.2003207Z retention-days: 14 2025-08-26T22:43:28.2003473Z if-no-files-found: ignore 2025-08-26T22:43:28.2003712Z path: logs-*.zip 2025-08-26T22:43:28.2003946Z name: artifact 2025-08-26T22:43:28.2004136Z region: us-east-1 2025-08-26T22:43:28.2004317Z env: 2025-08-26T22:43:28.2004494Z GIT_DEFAULT_BRANCH: main 2025-08-26T22:43:28.2004844Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T22:43:28.2005348Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T22:43:28.2005807Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T22:43:28.2006190Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T22:43:28.2006476Z ##[endgroup] 2025-08-26T22:43:28.6188390Z NOTE: s3-prefix specified, ignoring name parameter 2025-08-26T22:43:28.6188861Z With the provided path, there will be 1 file uploaded 2025-08-26T22:43:28.6189260Z Uploading to s3 prefix: pytorch/pytorch/17248463647/1/artifact 2025-08-26T22:43:28.6203050Z Starting upload of logs-test-default-2-3-windows.4xlarge.nonephemeral_48947911970.zip 2025-08-26T22:43:28.8443054Z Finished upload of logs-test-default-2-3-windows.4xlarge.nonephemeral_48947911970.zip 2025-08-26T22:43:28.8737758Z ##[group]Run seemethere/upload-artifact-s3@v5 2025-08-26T22:43:28.8738078Z with: 2025-08-26T22:43:28.8738262Z s3-bucket: gha-artifacts 2025-08-26T22:43:28.8738545Z s3-prefix: pytorch/pytorch/17248463647/1/artifact 2025-08-26T22:43:28.8738847Z retention-days: 14 2025-08-26T22:43:28.8739063Z if-no-files-found: ignore 2025-08-26T22:43:28.8739294Z path: debug-*.zip 2025-08-26T22:43:28.8739484Z name: artifact 2025-08-26T22:43:28.8739686Z region: us-east-1 2025-08-26T22:43:28.8739876Z env: 2025-08-26T22:43:28.8740057Z GIT_DEFAULT_BRANCH: main 2025-08-26T22:43:28.8740585Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T22:43:28.8741096Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T22:43:28.8741646Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T22:43:28.8742045Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T22:43:28.8742347Z ##[endgroup] 2025-08-26T22:43:29.2576360Z No files were found with the provided path: debug-*.zip. No artifacts will be uploaded. 2025-08-26T22:43:29.2825181Z Prepare all required actions 2025-08-26T22:43:29.2825570Z Getting action download info 2025-08-26T22:43:29.4007573Z ##[group]Run ./.github/actions/upload-utilization-stats 2025-08-26T22:43:29.4007904Z with: 2025-08-26T22:43:29.4008087Z job_id: 48947911970 2025-08-26T22:43:29.4008447Z job_name: win-vs2022-cpu-py3 / test (default, 2, 3, windows.4xlarge.nonephemeral) 2025-08-26T22:43:29.4009975Z workflow_name: trunk 2025-08-26T22:43:29.4010198Z workflow_run_id: 17248463647 2025-08-26T22:43:29.4010438Z workflow_attempt: 1 2025-08-26T22:43:29.4010630Z env: 2025-08-26T22:43:29.4010804Z GIT_DEFAULT_BRANCH: main 2025-08-26T22:43:29.4011157Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T22:43:29.4011665Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T22:43:29.4012126Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T22:43:29.4012550Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T22:43:29.4012828Z ##[endgroup] 2025-08-26T22:43:29.4091447Z ##[group]Run echo "workflow_id: 17248463647" 2025-08-26T22:43:29.4091801Z echo "workflow_id: 17248463647" 2025-08-26T22:43:29.4092132Z echo "workflow_attempt: 1" 2025-08-26T22:43:29.4092445Z echo "workflow_Name: trunk" 2025-08-26T22:43:29.4092711Z echo "job_id: 48947911970" 2025-08-26T22:43:29.4093244Z echo "job_name: win-vs2022-cpu-py3 / test (default, 2, 3, windows.4xlarge.nonephemeral)" 2025-08-26T22:43:29.4093947Z echo "artifact_prefix: " 2025-08-26T22:43:29.4094241Z python3 --version 2025-08-26T22:43:29.4115736Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T22:43:29.4116167Z env: 2025-08-26T22:43:29.4116348Z GIT_DEFAULT_BRANCH: main 2025-08-26T22:43:29.4116724Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T22:43:29.4117241Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T22:43:29.4117703Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T22:43:29.4118084Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T22:43:29.4118368Z ##[endgroup] 2025-08-26T22:43:29.4303609Z workflow_id: 17248463647 2025-08-26T22:43:29.4303900Z workflow_attempt: 1 2025-08-26T22:43:29.4304104Z workflow_Name: trunk 2025-08-26T22:43:29.4304308Z job_id: 48947911970 2025-08-26T22:43:29.4304685Z job_name: win-vs2022-cpu-py3 / test (default, 2, 3, windows.4xlarge.nonephemeral) 2025-08-26T22:43:29.4305155Z artifact_prefix: 2025-08-26T22:43:29.4422279Z Python 3.9.19 2025-08-26T22:43:29.4541413Z ##[group]Run nick-fields/retry@v3.0.0 2025-08-26T22:43:29.4541697Z with: 2025-08-26T22:43:29.4541865Z shell: bash 2025-08-26T22:43:29.4542057Z timeout_minutes: 5 2025-08-26T22:43:29.4542259Z max_attempts: 5 2025-08-26T22:43:29.4542460Z retry_wait_seconds: 30 2025-08-26T22:43:29.4542957Z 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-26T22:43:29.4543541Z polling_interval_seconds: 1 2025-08-26T22:43:29.4543823Z warning_on_retry: true 2025-08-26T22:43:29.4544055Z continue_on_error: false 2025-08-26T22:43:29.4544267Z env: 2025-08-26T22:43:29.4544435Z GIT_DEFAULT_BRANCH: main 2025-08-26T22:43:29.4544802Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T22:43:29.4545311Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T22:43:29.4545776Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T22:43:29.4546155Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T22:43:29.4546439Z ##[endgroup] 2025-08-26T22:43:30.2986578Z Collecting python-dateutil==2.8.2 2025-08-26T22:43:30.4890892Z Downloading python_dateutil-2.8.2-py2.py3-none-any.whl.metadata (8.2 kB) 2025-08-26T22:43:31.1795718Z Collecting boto3==1.35.42 2025-08-26T22:43:31.1840399Z Downloading boto3-1.35.42-py3-none-any.whl.metadata (6.7 kB) 2025-08-26T22:43:31.3763928Z Collecting pandas==2.1.3 2025-08-26T22:43:31.3832108Z Downloading pandas-2.1.3-cp39-cp39-win_amd64.whl.metadata (18 kB) 2025-08-26T22:43:31.4082355Z Requirement already satisfied: dataclasses_json==0.6.7 in c:\jenkins\miniconda3\lib\site-packages (0.6.7) 2025-08-26T22:43:31.4104912Z Requirement already satisfied: six>=1.5 in c:\jenkins\miniconda3\lib\site-packages (from python-dateutil==2.8.2) (1.17.0) 2025-08-26T22:43:32.0554600Z Collecting botocore<1.36.0,>=1.35.42 (from boto3==1.35.42) 2025-08-26T22:43:32.0597205Z Downloading botocore-1.35.99-py3-none-any.whl.metadata (5.7 kB) 2025-08-26T22:43:32.0670141Z 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-26T22:43:32.0915867Z Collecting s3transfer<0.11.0,>=0.10.0 (from boto3==1.35.42) 2025-08-26T22:43:32.0955199Z Downloading s3transfer-0.10.4-py3-none-any.whl.metadata (1.7 kB) 2025-08-26T22:43:32.4633864Z Collecting numpy<2,>=1.22.4 (from pandas==2.1.3) 2025-08-26T22:43:32.4698250Z Downloading numpy-1.26.4-cp39-cp39-win_amd64.whl.metadata (61 kB) 2025-08-26T22:43:32.5047014Z ---------------------------------------- 61.0/61.0 kB 1.6 MB/s eta 0:00:00 2025-08-26T22:43:32.5715364Z Collecting pytz>=2020.1 (from pandas==2.1.3) 2025-08-26T22:43:32.5761836Z Downloading pytz-2025.2-py2.py3-none-any.whl.metadata (22 kB) 2025-08-26T22:43:32.6087619Z Collecting tzdata>=2022.1 (from pandas==2.1.3) 2025-08-26T22:43:32.6154398Z Downloading tzdata-2025.2-py2.py3-none-any.whl.metadata (1.4 kB) 2025-08-26T22:43:32.6292797Z 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-26T22:43:32.6299780Z 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-26T22:43:32.6407540Z 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-26T22:43:32.6530715Z 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-26T22:43:32.8564194Z 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-26T22:43:32.8570132Z 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-26T22:43:32.8895372Z Downloading python_dateutil-2.8.2-py2.py3-none-any.whl (247 kB) 2025-08-26T22:43:32.9179524Z --------------------------------------- 247.7/247.7 kB 15.8 MB/s eta 0:00:00 2025-08-26T22:43:32.9293045Z Downloading boto3-1.35.42-py3-none-any.whl (139 kB) 2025-08-26T22:43:32.9428976Z ---------------------------------------- 139.2/139.2 kB ? eta 0:00:00 2025-08-26T22:43:32.9583020Z Downloading pandas-2.1.3-cp39-cp39-win_amd64.whl (10.8 MB) 2025-08-26T22:43:33.0930632Z ---------------------------------------- 10.8/10.8 MB 81.8 MB/s eta 0:00:00 2025-08-26T22:43:33.0981193Z Downloading botocore-1.35.99-py3-none-any.whl (13.3 MB) 2025-08-26T22:43:33.1980065Z ---------------------------------------- 13.3/13.3 MB 108.7 MB/s eta 0:00:00 2025-08-26T22:43:33.2108319Z Downloading numpy-1.26.4-cp39-cp39-win_amd64.whl (15.8 MB) 2025-08-26T22:43:33.3464649Z ---------------------------------------- 15.8/15.8 MB 108.8 MB/s eta 0:00:00 2025-08-26T22:43:33.3507114Z Downloading pytz-2025.2-py2.py3-none-any.whl (509 kB) 2025-08-26T22:43:33.3618981Z --------------------------------------- 509.2/509.2 kB 33.3 MB/s eta 0:00:00 2025-08-26T22:43:33.3661142Z Downloading s3transfer-0.10.4-py3-none-any.whl (83 kB) 2025-08-26T22:43:33.3739116Z ---------------------------------------- 83.2/83.2 kB 4.6 MB/s eta 0:00:00 2025-08-26T22:43:33.3778172Z Downloading tzdata-2025.2-py2.py3-none-any.whl (347 kB) 2025-08-26T22:43:33.4183551Z ---------------------------------------- 347.8/347.8 kB 7.2 MB/s eta 0:00:00 2025-08-26T22:43:34.6682214Z Installing collected packages: pytz, tzdata, python-dateutil, numpy, pandas, botocore, s3transfer, boto3 2025-08-26T22:43:35.3257761Z Attempting uninstall: python-dateutil 2025-08-26T22:43:35.3270737Z Found existing installation: python-dateutil 2.9.0.post0 2025-08-26T22:43:35.3357337Z Uninstalling python-dateutil-2.9.0.post0: 2025-08-26T22:43:35.3384371Z Successfully uninstalled python-dateutil-2.9.0.post0 2025-08-26T22:43:35.4190117Z Attempting uninstall: numpy 2025-08-26T22:43:35.4199482Z Found existing installation: numpy 1.22.3 2025-08-26T22:43:35.6016580Z Uninstalling numpy-1.22.3: 2025-08-26T22:43:35.6267477Z Successfully uninstalled numpy-1.22.3 2025-08-26T22:43:38.5307174Z WARNING: The script f2py.exe is installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-08-26T22:43:38.5307997Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-08-26T22:43:44.5796999Z Attempting uninstall: botocore 2025-08-26T22:43:44.5805145Z Found existing installation: botocore 1.37.10 2025-08-26T22:43:44.8170002Z Uninstalling botocore-1.37.10: 2025-08-26T22:43:44.9003843Z Successfully uninstalled botocore-1.37.10 2025-08-26T22:43:48.0961503Z Attempting uninstall: s3transfer 2025-08-26T22:43:48.0972622Z Found existing installation: s3transfer 0.11.2 2025-08-26T22:43:48.1045674Z Uninstalling s3transfer-0.11.2: 2025-08-26T22:43:48.1067182Z Successfully uninstalled s3transfer-0.11.2 2025-08-26T22:43:48.1836129Z Attempting uninstall: boto3 2025-08-26T22:43:48.1844339Z Found existing installation: boto3 1.37.10 2025-08-26T22:43:48.2014738Z Uninstalling boto3-1.37.10: 2025-08-26T22:43:48.2068470Z Successfully uninstalled boto3-1.37.10 2025-08-26T22:43:48.3877087Z 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-26T22:43:48.3878850Z scipy 1.6.3 requires numpy<1.23.0,>=1.16.5, but you have numpy 1.26.4 which is incompatible. 2025-08-26T22:43:48.3880353Z 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-26T22:43:48.6693554Z Command completed after 1 attempt(s). 2025-08-26T22:43:48.6858786Z ##[group]Run python3 -m tools.stats.upload_utilization_stats.upload_utilization_stats \ 2025-08-26T22:43:48.6859413Z python3 -m tools.stats.upload_utilization_stats.upload_utilization_stats \ 2025-08-26T22:43:48.6859884Z  --workflow-run-id "17248463647" \ 2025-08-26T22:43:48.6860191Z  --workflow-name "trunk" \ 2025-08-26T22:43:48.6860475Z  --workflow-run-attempt "1" \ 2025-08-26T22:43:48.6860765Z  --job-id "48947911970" \ 2025-08-26T22:43:48.6861211Z  --job-name "win-vs2022-cpu-py3 / test (default, 2, 3, windows.4xlarge.nonephemeral)" \ 2025-08-26T22:43:48.6861788Z  --local-path "" \ 2025-08-26T22:43:48.6862037Z  --artifact-prefix "" 2025-08-26T22:43:48.6912692Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T22:43:48.6913113Z env: 2025-08-26T22:43:48.6913303Z GIT_DEFAULT_BRANCH: main 2025-08-26T22:43:48.6913660Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T22:43:48.6914169Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T22:43:48.6914629Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T22:43:48.6915013Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T22:43:48.6915448Z ##[endgroup] 2025-08-26T22:43:52.3141174Z repo: pytorch/pytorch 2025-08-26T22:43:52.3141567Z Search for test log in s3 bucket: ossci-utilization 2025-08-26T22:43:52.3142078Z Downloading logs-test-default-2-3-windows.4xlarge.nonephemeral_48947911970.zip 2025-08-26T22:43:52.3142798Z extracting usage_log.txt from zip file logs-test-default-2-3-windows.4xlarge.nonephemeral_48947911970.zip 2025-08-26T22:43:52.3143473Z Failed to parse JSON line: Expecting value: line 1 column 1 (char 0) 2025-08-26T22:43:52.3143940Z Converted Log Model: UtilizationMetadata: 2025-08-26T22:43:52.3145686Z UtilizationMetadata(level='metadata', workflow_id='17248463647', job_id='48947911970', workflow_name='trunk', job_name='win-vs2022-cpu-py3 / test (default, 2, 3, windows.4xlarge.nonephemeral)', usage_collect_interval=1.0, data_model_version=1.5, start_at=1756241056, gpu_count=0, cpu_count=16, gpu_type=None, error=None) 2025-08-26T22:43:52.3147085Z [Db Segments] detected pytest cmd: 2, generated segments: 2 2025-08-26T22:43:52.3147460Z [db model] Peek db timeseries 2025-08-26T22:43:52.3147689Z :{ 2025-08-26T22:43:52.3147866Z "created_at": 1756248231, 2025-08-26T22:43:52.3148099Z "type": "utilization", 2025-08-26T22:43:52.3148319Z "tags": [ 2025-08-26T22:43:52.3148488Z "record" 2025-08-26T22:43:52.3148668Z ], 2025-08-26T22:43:52.3148834Z "time_stamp": 1756241056, 2025-08-26T22:43:52.3149068Z "repo": "pytorch/pytorch", 2025-08-26T22:43:52.3149298Z "workflow_id": 17248463647, 2025-08-26T22:43:52.3149809Z "run_attempt": 1, 2025-08-26T22:43:52.3150020Z "job_id": 48947911970, 2025-08-26T22:43:52.3150292Z "workflow_name": "trunk", 2025-08-26T22:43:52.3150743Z "job_name": "win-vs2022-cpu-py3 / test (default, 2, 3, windows.4xlarge.nonephemeral)", 2025-08-26T22:43:52.3151161Z "json_data": "{}" 2025-08-26T22:43:52.3151363Z } 2025-08-26T22:43:52.3151804Z Writing 1 documents to S3 ossci-utilization/util_metadata/v_1.5/pytorch/pytorch/17248463647/1/48947911970/metadata 2025-08-26T22:43:52.3152658Z Done! Finish writing document to S3 ossci-utilization/util_metadata/v_1.5/pytorch/pytorch/17248463647/1/48947911970/metadata 2025-08-26T22:43:52.3153532Z Writing 1416 documents to S3 ossci-utilization/util_timeseries/v_1.5/pytorch/pytorch/17248463647/1/48947911970/time_series 2025-08-26T22:43:52.3154411Z Done! Finish writing document to S3 ossci-utilization/util_timeseries/v_1.5/pytorch/pytorch/17248463647/1/48947911970/time_series 2025-08-26T22:43:52.4424899Z ##[group]Run python3 .github/scripts/parse_ref.py 2025-08-26T22:43:52.4425283Z python3 .github/scripts/parse_ref.py 2025-08-26T22:43:52.4444336Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T22:43:52.4444754Z env: 2025-08-26T22:43:52.4444937Z GIT_DEFAULT_BRANCH: main 2025-08-26T22:43:52.4445307Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T22:43:52.4445809Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T22:43:52.4446267Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T22:43:52.4446723Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T22:43:52.4447010Z ##[endgroup] 2025-08-26T22:43:52.5055530Z Setting output branch=main 2025-08-26T22:43:52.5196139Z ##[group]Run # This step removes PyTorch installed by the test to give a clean slate 2025-08-26T22:43:52.5196751Z # This step removes PyTorch installed by the test to give a clean slate 2025-08-26T22:43:52.5197187Z # to the next job 2025-08-26T22:43:52.5197457Z python3 -mpip uninstall -y torch 2025-08-26T22:43:52.5216103Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-26T22:43:52.5216523Z env: 2025-08-26T22:43:52.5216702Z GIT_DEFAULT_BRANCH: main 2025-08-26T22:43:52.5217075Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T22:43:52.5217575Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T22:43:52.5218042Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T22:43:52.5218432Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T22:43:52.5218717Z ##[endgroup] 2025-08-26T22:43:53.0378314Z Found existing installation: torch 2.9.0a0+git262640f 2025-08-26T22:43:54.1054423Z Uninstalling torch-2.9.0a0+git262640f: 2025-08-26T22:43:54.3567262Z Successfully uninstalled torch-2.9.0a0+git262640f 2025-08-26T22:43:57.1419326Z Prepare all required actions 2025-08-26T22:43:57.1419729Z Getting action download info 2025-08-26T22:43:57.2859815Z ##[group]Run ./.github/actions/teardown-win 2025-08-26T22:43:57.2860097Z with: 2025-08-26T22:43:57.2860269Z env: 2025-08-26T22:43:57.2860446Z GIT_DEFAULT_BRANCH: main 2025-08-26T22:43:57.2860819Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T22:43:57.2861317Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T22:43:57.2861877Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T22:43:57.2862267Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T22:43:57.2862549Z ##[endgroup] 2025-08-26T22:43:57.2933845Z ##[group]Run .github\scripts\wait_for_ssh_to_drain.ps1 2025-08-26T22:43:57.2934218Z .github\scripts\wait_for_ssh_to_drain.ps1 2025-08-26T22:43:57.2950164Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-26T22:43:57.2950745Z env: 2025-08-26T22:43:57.2950931Z GIT_DEFAULT_BRANCH: main 2025-08-26T22:43:57.2951289Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T22:43:57.2951924Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T22:43:57.2952429Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T22:43:57.2952817Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T22:43:57.2953106Z ##[endgroup] 2025-08-26T22:43:57.6473491Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-26T22:43:57.6544768Z Finished 2025-08-26T22:43:57.7725069Z Holding runner until all ssh sessions have logged out 2025-08-26T22:43:57.7964690Z ##[group]Run .github\scripts\kill_active_ssh_sessions.ps1 2025-08-26T22:43:57.7965107Z .github\scripts\kill_active_ssh_sessions.ps1 2025-08-26T22:43:57.7981398Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-26T22:43:57.7981972Z env: 2025-08-26T22:43:57.7982193Z GIT_DEFAULT_BRANCH: main 2025-08-26T22:43:57.7982598Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T22:43:57.7983135Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T22:43:57.7983668Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T22:43:57.7984099Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T22:43:57.7984415Z ##[endgroup] 2025-08-26T22:43:58.1422365Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-26T22:43:58.1491809Z Finished 2025-08-26T22:43:58.1852344Z ##[group]Run pytorch/test-infra/.github/actions/cleanup-runner@main 2025-08-26T22:43:58.1852731Z env: 2025-08-26T22:43:58.1852924Z GIT_DEFAULT_BRANCH: main 2025-08-26T22:43:58.1853293Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T22:43:58.1853822Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T22:43:58.1854282Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T22:43:58.1854716Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T22:43:58.1854996Z ##[endgroup] 2025-08-26T22:43:58.1923616Z ##[group]Run # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-08-26T22:43:58.1924340Z # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-08-26T22:43:58.1924981Z # Below is the list of commands that could lock $GITHUB_WORKSPACE gathered from sysinternals 2025-08-26T22:43:58.1925442Z # handle tool 2025-08-26T22:43:58.1925769Z $processes = "python", "ninja", "cl", "nvcc", "cmd", "sccache", "git" 2025-08-26T22:43:58.1926176Z Foreach ($process In $processes) { 2025-08-26T22:43:58.1926453Z  Try { 2025-08-26T22:43:58.1928345Z  # https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.management/stop-process 2025-08-26T22:43:58.1929076Z  Get-Process -Name $process -ErrorAction Stop | Stop-Process -Force 2025-08-26T22:43:58.1929463Z  } 2025-08-26T22:43:58.1929651Z  Catch { 2025-08-26T22:43:58.1929939Z  Write-Output "No leftover $process process, continuing" 2025-08-26T22:43:58.1930309Z  Write-Output $_ 2025-08-26T22:43:58.1930535Z  } 2025-08-26T22:43:58.1930718Z } 2025-08-26T22:43:58.1930891Z  2025-08-26T22:43:58.1931336Z # Try it again https://stackoverflow.com/questions/40585754/powershell-wont-terminate-hung-process 2025-08-26T22:43:58.1931878Z # for hung processes 2025-08-26T22:43:58.1932141Z Foreach ($process In $processes) { 2025-08-26T22:43:58.1932420Z  Try { 2025-08-26T22:43:58.1932804Z  (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process}%'").terminate() 2025-08-26T22:43:58.1933472Z  } 2025-08-26T22:43:58.1933661Z  Catch { 2025-08-26T22:43:58.1933930Z  Write-Output $_ 2025-08-26T22:43:58.1934160Z  } 2025-08-26T22:43:58.1934340Z } 2025-08-26T22:43:58.1934512Z  2025-08-26T22:43:58.1934672Z Try { 2025-08-26T22:43:58.1934898Z  # Print all the processes for debugging 2025-08-26T22:43:58.1935352Z  Wmic Path Win32_Process Get Caption,Processid,Commandline | Format-List 2025-08-26T22:43:58.1935758Z } 2025-08-26T22:43:58.1935957Z Catch { 2025-08-26T22:43:58.1936333Z  # Better to write out whatever exception thrown to help debugging any potential issue 2025-08-26T22:43:58.1936785Z  Write-Output $_ 2025-08-26T22:43:58.1937006Z } 2025-08-26T22:43:58.1953182Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-26T22:43:58.1953645Z env: 2025-08-26T22:43:58.1953845Z GIT_DEFAULT_BRANCH: main 2025-08-26T22:43:58.1954207Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T22:43:58.1954722Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T22:43:58.1955184Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T22:43:58.1955568Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T22:43:58.1955850Z ##[endgroup] 2025-08-26T22:43:58.5413521Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-26T22:43:58.5485710Z Finished 2025-08-26T22:43:58.5614400Z No leftover python process, continuing 2025-08-26T22:43:58.6063221Z Get-Process : Cannot find a process with the name "python". Verify the process name and call the cmdlet again. 2025-08-26T22:43:58.6063910Z At C:\actions-runner\_work\_temp\c02f25f1-84c3-4116-909e-33154f6baf88.ps1:9 char:5 2025-08-26T22:43:58.6064478Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-26T22:43:58.6064888Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T22:43:58.6065407Z + CategoryInfo : ObjectNotFound: (python:String) [Get-Process], ProcessCommandException 2025-08-26T22:43:58.6066201Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-26T22:43:58.6066794Z 2025-08-26T22:43:58.6078685Z No leftover ninja process, continuing 2025-08-26T22:43:58.6089156Z Get-Process : Cannot find a process with the name "ninja". Verify the process name and call the cmdlet again. 2025-08-26T22:43:58.6089813Z At C:\actions-runner\_work\_temp\c02f25f1-84c3-4116-909e-33154f6baf88.ps1:9 char:5 2025-08-26T22:43:58.6090338Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-26T22:43:58.6090743Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T22:43:58.6092008Z + CategoryInfo : ObjectNotFound: (ninja:String) [Get-Process], ProcessCommandException 2025-08-26T22:43:58.6092835Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-26T22:43:58.6093426Z 2025-08-26T22:43:58.6104400Z No leftover cl process, continuing 2025-08-26T22:43:58.6114070Z Get-Process : Cannot find a process with the name "cl". Verify the process name and call the cmdlet again. 2025-08-26T22:43:58.6114696Z At C:\actions-runner\_work\_temp\c02f25f1-84c3-4116-909e-33154f6baf88.ps1:9 char:5 2025-08-26T22:43:58.6115236Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-26T22:43:58.6115633Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T22:43:58.6116097Z + CategoryInfo : ObjectNotFound: (cl:String) [Get-Process], ProcessCommandException 2025-08-26T22:43:58.6116920Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-26T22:43:58.6117668Z 2025-08-26T22:43:58.6128078Z No leftover nvcc process, continuing 2025-08-26T22:43:58.6137586Z Get-Process : Cannot find a process with the name "nvcc". Verify the process name and call the cmdlet again. 2025-08-26T22:43:58.6138236Z At C:\actions-runner\_work\_temp\c02f25f1-84c3-4116-909e-33154f6baf88.ps1:9 char:5 2025-08-26T22:43:58.6138766Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-26T22:43:58.6139157Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T22:43:58.6139624Z + CategoryInfo : ObjectNotFound: (nvcc:String) [Get-Process], ProcessCommandException 2025-08-26T22:43:58.6140436Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-26T22:43:58.6141017Z 2025-08-26T22:43:58.6150138Z No leftover cmd process, continuing 2025-08-26T22:43:58.6159681Z Get-Process : Cannot find a process with the name "cmd". Verify the process name and call the cmdlet again. 2025-08-26T22:43:58.6160340Z At C:\actions-runner\_work\_temp\c02f25f1-84c3-4116-909e-33154f6baf88.ps1:9 char:5 2025-08-26T22:43:58.6160864Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-26T22:43:58.6161267Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T22:43:58.6161727Z + CategoryInfo : ObjectNotFound: (cmd:String) [Get-Process], ProcessCommandException 2025-08-26T22:43:58.6162543Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-26T22:43:58.6163126Z 2025-08-26T22:43:58.6171662Z No leftover sccache process, continuing 2025-08-26T22:43:58.6181399Z Get-Process : Cannot find a process with the name "sccache". Verify the process name and call the cmdlet again. 2025-08-26T22:43:58.6182141Z At C:\actions-runner\_work\_temp\c02f25f1-84c3-4116-909e-33154f6baf88.ps1:9 char:5 2025-08-26T22:43:58.6182667Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-26T22:43:58.6183091Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T22:43:58.6183558Z + CategoryInfo : ObjectNotFound: (sccache:String) [Get-Process], ProcessCommandException 2025-08-26T22:43:58.6184397Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-26T22:43:58.6184972Z 2025-08-26T22:43:58.6193732Z No leftover git process, continuing 2025-08-26T22:43:58.6204332Z Get-Process : Cannot find a process with the name "git". Verify the process name and call the cmdlet again. 2025-08-26T22:43:58.6204968Z At C:\actions-runner\_work\_temp\c02f25f1-84c3-4116-909e-33154f6baf88.ps1:9 char:5 2025-08-26T22:43:58.6205511Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-26T22:43:58.6205903Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T22:43:58.6206360Z + CategoryInfo : ObjectNotFound: (git:String) [Get-Process], ProcessCommandException 2025-08-26T22:43:58.6207301Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-26T22:43:58.6207884Z 2025-08-26T22:43:58.6616743Z You cannot call a method on a null-valued expression. 2025-08-26T22:43:58.6617256Z At C:\actions-runner\_work\_temp\c02f25f1-84c3-4116-909e-33154f6baf88.ps1:21 char:5 2025-08-26T22:43:58.6617814Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-26T22:43:58.6618250Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T22:43:58.6618646Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-08-26T22:43:58.6619047Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-08-26T22:43:58.6619339Z 2025-08-26T22:43:58.6765772Z You cannot call a method on a null-valued expression. 2025-08-26T22:43:58.6766283Z At C:\actions-runner\_work\_temp\c02f25f1-84c3-4116-909e-33154f6baf88.ps1:21 char:5 2025-08-26T22:43:58.6766870Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-26T22:43:58.6767506Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T22:43:58.6767910Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-08-26T22:43:58.6768310Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-08-26T22:43:58.6768604Z 2025-08-26T22:43:58.6921726Z You cannot call a method on a null-valued expression. 2025-08-26T22:43:58.6922636Z At C:\actions-runner\_work\_temp\c02f25f1-84c3-4116-909e-33154f6baf88.ps1:21 char:5 2025-08-26T22:43:58.6923192Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-26T22:43:58.6923626Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T22:43:58.6924016Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-08-26T22:43:58.6924419Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-08-26T22:43:58.6924701Z 2025-08-26T22:43:58.7074760Z You cannot call a method on a null-valued expression. 2025-08-26T22:43:58.7075294Z At C:\actions-runner\_work\_temp\c02f25f1-84c3-4116-909e-33154f6baf88.ps1:21 char:5 2025-08-26T22:43:58.7075822Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-26T22:43:58.7076239Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T22:43:58.7076634Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-08-26T22:43:58.7077028Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-08-26T22:43:58.7077307Z 2025-08-26T22:43:58.7222224Z You cannot call a method on a null-valued expression. 2025-08-26T22:43:58.7222705Z At C:\actions-runner\_work\_temp\c02f25f1-84c3-4116-909e-33154f6baf88.ps1:21 char:5 2025-08-26T22:43:58.7223225Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-26T22:43:58.7223649Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T22:43:58.7224063Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-08-26T22:43:58.7224472Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-08-26T22:43:58.7224756Z 2025-08-26T22:43:58.7368965Z You cannot call a method on a null-valued expression. 2025-08-26T22:43:58.7369452Z At C:\actions-runner\_work\_temp\c02f25f1-84c3-4116-909e-33154f6baf88.ps1:21 char:5 2025-08-26T22:43:58.7369979Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-26T22:43:58.7370400Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T22:43:58.7370794Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-08-26T22:43:58.7371190Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-08-26T22:43:58.7371477Z 2025-08-26T22:43:58.7519599Z You cannot call a method on a null-valued expression. 2025-08-26T22:43:58.7520094Z At C:\actions-runner\_work\_temp\c02f25f1-84c3-4116-909e-33154f6baf88.ps1:21 char:5 2025-08-26T22:43:58.7520838Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-26T22:43:58.7521290Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T22:43:58.7522698Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-08-26T22:43:58.7523115Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-08-26T22:43:58.7523415Z 2025-08-26T22:43:58.8112982Z Caption CommandLine ProcessId 2025-08-26T22:43:58.8113463Z 2025-08-26T22:43:58.8113923Z System Idle Process 0 2025-08-26T22:43:58.8114514Z 2025-08-26T22:43:58.8114911Z System 4 2025-08-26T22:43:58.8115276Z 2025-08-26T22:43:58.8116472Z Registry 168 2025-08-26T22:43:58.8116941Z 2025-08-26T22:43:58.8117209Z smss.exe 408 2025-08-26T22:43:58.8117589Z 2025-08-26T22:43:58.8118347Z csrss.exe 520 2025-08-26T22:43:58.8118830Z 2025-08-26T22:43:58.8119457Z csrss.exe 596 2025-08-26T22:43:58.8119837Z 2025-08-26T22:43:58.8122891Z wininit.exe 620 2025-08-26T22:43:58.8123325Z 2025-08-26T22:43:58.8123653Z winlogon.exe winlogon.exe 668 2025-08-26T22:43:58.8124251Z 2025-08-26T22:43:58.8124533Z services.exe 740 2025-08-26T22:43:58.8124928Z 2025-08-26T22:43:58.8125292Z lsass.exe C:\Windows\system32\lsass.exe 760 2025-08-26T22:43:58.8125746Z 2025-08-26T22:43:58.8126269Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s PlugPlay 888 2025-08-26T22:43:58.8126875Z 2025-08-26T22:43:58.8127312Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p 912 2025-08-26T22:43:58.8127835Z 2025-08-26T22:43:58.8128395Z fontdrvhost.exe "fontdrvhost.exe" 932 2025-08-26T22:43:58.8128889Z 2025-08-26T22:43:58.8129854Z fontdrvhost.exe "fontdrvhost.exe" 940 2025-08-26T22:43:58.8130315Z 2025-08-26T22:43:58.8130730Z svchost.exe C:\Windows\system32\svchost.exe -k RPCSS -p 124 2025-08-26T22:43:58.8131272Z 2025-08-26T22:43:58.8131900Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s LSM 476 2025-08-26T22:43:58.8132591Z 2025-08-26T22:43:58.8133066Z svchost.exe C:\Windows\System32\svchost.exe -k termsvcs -s TermService 480 2025-08-26T22:43:58.8133677Z 2025-08-26T22:43:58.8134246Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService 1112 2025-08-26T22:43:58.8134902Z 2025-08-26T22:43:58.8135444Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s EventLog 1260 2025-08-26T22:43:58.8136149Z 2025-08-26T22:43:58.8136428Z dwm.exe "dwm.exe" 1284 2025-08-26T22:43:58.8136822Z 2025-08-26T22:43:58.8137713Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s nsi 1336 2025-08-26T22:43:58.8138331Z 2025-08-26T22:43:58.8139009Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s Dhcp 1360 2025-08-26T22:43:58.8139712Z 2025-08-26T22:43:58.8140201Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s gpsvc 1368 2025-08-26T22:43:58.8140740Z 2025-08-26T22:43:58.8141212Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s NlaSvc 1448 2025-08-26T22:43:58.8141948Z 2025-08-26T22:43:58.8143784Z NVDisplay.Container.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\Display.NvContainer\NVDisplay.Container.exe -s NVDisplay.ContainerLocalSystem -f C:\ProgramData\NVIDIA\NVDisplay.ContainerLocalSystem.log -l 3 -d C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\Display.NvContainer\plugins\LocalSystem -r -p 30000 -cfg NVDisplay.ContainerLocalSystem\LocalSystem /ert 1472 2025-08-26T22:43:58.8145638Z 2025-08-26T22:43:58.8146093Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Schedule 1492 2025-08-26T22:43:58.8146642Z 2025-08-26T22:43:58.8147117Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s netprofm 1552 2025-08-26T22:43:58.8147742Z 2025-08-26T22:43:58.8148318Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s TimeBrokerSvc 1624 2025-08-26T22:43:58.8149060Z 2025-08-26T22:43:58.8149586Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s ProfSvc 1712 2025-08-26T22:43:58.8150166Z 2025-08-26T22:43:58.8150693Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s Themes 1720 2025-08-26T22:43:58.8151228Z 2025-08-26T22:43:58.8151721Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s EventSystem 1728 2025-08-26T22:43:58.8152360Z 2025-08-26T22:43:58.8152810Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s SENS 1836 2025-08-26T22:43:58.8153479Z 2025-08-26T22:43:58.8154157Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s Dnscache 1872 2025-08-26T22:43:58.8154852Z 2025-08-26T22:43:58.8155422Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p 1880 2025-08-26T22:43:58.8156368Z 2025-08-26T22:43:58.8157239Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s ShellHWDetection 1984 2025-08-26T22:43:58.8158133Z 2025-08-26T22:43:58.8159162Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s WinHttpAutoProxySvc 2008 2025-08-26T22:43:58.8160276Z 2025-08-26T22:43:58.8161008Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s FontCache 1356 2025-08-26T22:43:58.8162725Z 2025-08-26T22:43:58.8163626Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetworkFirewall -p 2056 2025-08-26T22:43:58.8164592Z 2025-08-26T22:43:58.8165395Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s LanmanWorkstation 2096 2025-08-26T22:43:58.8167047Z 2025-08-26T22:43:58.8167918Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s UmRdpService 2308 2025-08-26T22:43:58.8168953Z 2025-08-26T22:43:58.8169678Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UserManager 2360 2025-08-26T22:43:58.8170303Z 2025-08-26T22:43:58.8170822Z spoolsv.exe C:\Windows\System32\spoolsv.exe 2392 2025-08-26T22:43:58.8171309Z 2025-08-26T22:43:58.8171858Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s SysMain 2508 2025-08-26T22:43:58.8172558Z 2025-08-26T22:43:58.8173829Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Winmgmt 2516 2025-08-26T22:43:58.8174668Z 2025-08-26T22:43:58.8175545Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s CryptSvc 2524 2025-08-26T22:43:58.8176461Z 2025-08-26T22:43:58.8177239Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s WpnService 2532 2025-08-26T22:43:58.8178277Z 2025-08-26T22:43:58.8179102Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s TrkWks 2540 2025-08-26T22:43:58.8180257Z 2025-08-26T22:43:58.8180946Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -s W32Time 2556 2025-08-26T22:43:58.8181853Z 2025-08-26T22:43:58.8182469Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s WinRM 2564 2025-08-26T22:43:58.8183277Z 2025-08-26T22:43:58.8183997Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetwork -p 2576 2025-08-26T22:43:58.8184834Z 2025-08-26T22:43:58.8185531Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -s CertPropSvc 2824 2025-08-26T22:43:58.8186389Z 2025-08-26T22:43:58.8187117Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s SessionEnv 2860 2025-08-26T22:43:58.8187969Z 2025-08-26T22:43:58.8188978Z svchost.exe C:\Windows\System32\svchost.exe -k smbsvcs -s LanmanServer 2976 2025-08-26T22:43:58.8189767Z 2025-08-26T22:43:58.8190184Z sshd.exe C:\Windows\System32\OpenSSH\sshd.exe 3040 2025-08-26T22:43:58.8190908Z 2025-08-26T22:43:58.8191921Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\NVWMI\nvWmi64.exe 2052 2025-08-26T22:43:58.8193141Z 2025-08-26T22:43:58.8193777Z IpOverUsbSvc.exe "C:\Program Files (x86)\Common Files\Microsoft Shared\Phone Tools\CoreCon\11.0\bin\IpOverUsbSvc.exe" 1920 2025-08-26T22:43:58.8194536Z 2025-08-26T22:43:58.8195208Z svchost.exe C:\Windows\System32\svchost.exe -k NetSvcs -p -s iphlpsvc 3108 2025-08-26T22:43:58.8196065Z 2025-08-26T22:43:58.8196951Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkServiceNetworkRestricted -p -s PolicyAgent 3576 2025-08-26T22:43:58.8198006Z 2025-08-26T22:43:58.8198886Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s lmhosts 3356 2025-08-26T22:43:58.8199938Z 2025-08-26T22:43:58.8200667Z LogonUI.exe "LogonUI.exe" /flags:0x2 /state0:0xa3a7b855 /state1:0x41c64e6d 4792 2025-08-26T22:43:58.8201542Z 2025-08-26T22:43:58.8204059Z NVDisplay.Container.exe "C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\Display.NvContainer\NVDisplay.Container.exe" -f %ProgramData%\NVIDIA\DisplaySessionContainer%d.log -d C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\Display.NvContainer\plugins\Session -r -l 3 -p 30000 -cfg NVDisplay.ContainerLocalSystem\Session /ert -c 5068 2025-08-26T22:43:58.8206101Z 2025-08-26T22:43:58.8206800Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\NVWMI\nvWmi64.exe -spawnprovider 1072 2025-08-26T22:43:58.8207574Z 2025-08-26T22:43:58.8208178Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s LicenseManager 3880 2025-08-26T22:43:58.8208776Z 2025-08-26T22:43:58.8209117Z vds.exe C:\Windows\System32\vds.exe 3436 2025-08-26T22:43:58.8209562Z 2025-08-26T22:43:58.8210059Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNoNetwork -p -s DPS 3812 2025-08-26T22:43:58.8210645Z 2025-08-26T22:43:58.8211231Z MicrosoftEdgeUpdate.exe "C:\Program Files (x86)\Microsoft\EdgeUpdate\MicrosoftEdgeUpdate.exe" /c 4816 2025-08-26T22:43:58.8211906Z 2025-08-26T22:43:58.8212269Z msdtc.exe C:\Windows\System32\msdtc.exe 1396 2025-08-26T22:43:58.8212727Z 2025-08-26T22:43:58.8213336Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s PcaSvc 2108 2025-08-26T22:43:58.8213986Z 2025-08-26T22:43:58.8214536Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s UALSVC 3636 2025-08-26T22:43:58.8215164Z 2025-08-26T22:43:58.8215601Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UsoSvc 4300 2025-08-26T22:43:58.8216205Z 2025-08-26T22:43:58.8216663Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s CDPSvc 3776 2025-08-26T22:43:58.8217229Z 2025-08-26T22:43:58.8217911Z start-amazon-cloudwatch-agent.exe "C:\Program Files\Amazon\AmazonCloudWatchAgent\start-amazon-cloudwatch-agent.exe" 2952 2025-08-26T22:43:58.8218693Z 2025-08-26T22:43:58.8220181Z 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 3400 2025-08-26T22:43:58.8221864Z 2025-08-26T22:43:58.8222253Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4708 2025-08-26T22:43:58.8222750Z 2025-08-26T22:43:58.8223258Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p 3264 2025-08-26T22:43:58.8223874Z 2025-08-26T22:43:58.8224442Z svchost.exe C:\Windows\system32\svchost.exe -k appmodel -p -s StateRepository 1768 2025-08-26T22:43:58.8225033Z 2025-08-26T22:43:58.8225415Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 1092 2025-08-26T22:43:58.8225890Z 2025-08-26T22:43:58.8226360Z Runner.Listener.exe "C:\actions-runner\\bin\Runner.Listener.exe" run 1824 2025-08-26T22:43:58.8226971Z 2025-08-26T22:43:58.8227443Z amazon-ssm-agent.exe "C:\Program Files\Amazon\SSM\amazon-ssm-agent.exe" 5096 2025-08-26T22:43:58.8228009Z 2025-08-26T22:43:58.8228486Z ssm-agent-worker.exe "C:\Program Files\Amazon\SSM\ssm-agent-worker.exe" 3736 2025-08-26T22:43:58.8229043Z 2025-08-26T22:43:58.8229436Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4888 2025-08-26T22:43:58.8229912Z 2025-08-26T22:43:58.8230413Z Runner.Worker.exe "C:\actions-runner\bin\Runner.Worker.exe" spawnclient 2092 2228 4472 2025-08-26T22:43:58.8231006Z 2025-08-26T22:43:58.8231388Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4892 2025-08-26T22:43:58.8231878Z 2025-08-26T22:43:58.8232479Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s DsSvc 3912 2025-08-26T22:43:58.8233124Z 2025-08-26T22:43:58.8233725Z vctip.exe "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\bin\Hostx64\x64\VCTIP.EXE" 1568 2025-08-26T22:43:58.8234425Z 2025-08-26T22:43:58.8234802Z mspdbsrv.exe mspdbsrv.exe -start -spawn 2488 2025-08-26T22:43:58.8235342Z 2025-08-26T22:43:58.8235743Z WmiPrvSE.exe C:\Windows\system32\wbem\wmiprvse.exe 5728 2025-08-26T22:43:58.8236243Z 2025-08-26T22:43:58.8237000Z powershell.exe "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE" -command ". 'C:\actions-runner\_work\_temp\c02f25f1-84c3-4116-909e-33154f6baf88.ps1'" 5908 2025-08-26T22:43:58.8237841Z 2025-08-26T22:43:58.8238405Z WMIC.exe "C:\Windows\System32\Wbem\WMIC.exe" Path Win32_Process Get Caption,Processid,Commandline 1352 2025-08-26T22:43:58.8239050Z 2025-08-26T22:43:58.8239055Z 2025-08-26T22:43:58.8239066Z 2025-08-26T22:43:58.8495353Z ##[group]Run nick-fields/retry@v3.0.0 2025-08-26T22:43:58.8495635Z with: 2025-08-26T22:43:58.8495814Z shell: bash 2025-08-26T22:43:58.8496008Z timeout_minutes: 5 2025-08-26T22:43:58.8496214Z max_attempts: 3 2025-08-26T22:43:58.8496417Z retry_wait_seconds: 90 2025-08-26T22:43:58.8497365Z 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-26T22:43:58.8498353Z polling_interval_seconds: 1 2025-08-26T22:43:58.8498597Z warning_on_retry: true 2025-08-26T22:43:58.8498811Z continue_on_error: false 2025-08-26T22:43:58.8499036Z env: 2025-08-26T22:43:58.8499207Z GIT_DEFAULT_BRANCH: main 2025-08-26T22:43:58.8499574Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T22:43:58.8500193Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T22:43:58.8500679Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T22:43:58.8501077Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T22:43:58.8501358Z EXTRA_DELETE_DIR: 2025-08-26T22:43:58.8501657Z ##[endgroup] 2025-08-26T22:43:58.9682482Z + '[' -n '' ']' 2025-08-26T22:43:58.9687637Z + 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-2-3-windows.4xlarge.nonephemeral_48947911970.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-2-3-windows.4xlarge.nonephemeral_48947911970.zip ./test-reports-test-default-2-3-windows.4xlarge.nonephemeral_48947911970.zip ./third_party ./tools ./torch ./torchgen ./ubsan.supp ./ufunc_defs.bzl ./usage_log.txt ./version.txt 2025-08-26T22:44:14.3405141Z rm: cannot remove './third_party/nlohmann/tests/thirdparty/Fuzzer/test/unit': Device or resource busy 2025-08-26T22:45:54.0800220Z ##[warning]Attempt 1 failed. Reason: Child_process exited with error code 1 2025-08-26T22:45:54.0972828Z + '[' -n '' ']' 2025-08-26T22:45:54.0976570Z + rm -rf ./third_party 2025-08-26T22:45:55.0816121Z Command completed after 2 attempt(s). 2025-08-26T22:45:55.0989284Z ##[group]Run handle C:\actions-runner\_work\ 2025-08-26T22:45:55.0989628Z handle C:\actions-runner\_work\ 2025-08-26T22:45:55.1005938Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-26T22:45:55.1006429Z env: 2025-08-26T22:45:55.1006621Z GIT_DEFAULT_BRANCH: main 2025-08-26T22:45:55.1007013Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-26T22:45:55.1007521Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-26T22:45:55.1007999Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-26T22:45:55.1008399Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-26T22:45:55.1008699Z ##[endgroup] 2025-08-26T22:45:55.4496040Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-26T22:45:55.4565625Z Finished 2025-08-26T22:45:55.5073049Z 2025-08-26T22:45:55.5073412Z Nthandle v5.0 - Handle viewer 2025-08-26T22:45:55.5073745Z Copyright (C) 1997-2022 Mark Russinovich 2025-08-26T22:45:55.5074071Z Sysinternals - www.sysinternals.com 2025-08-26T22:45:55.5074262Z 2025-08-26T22:45:55.5362956Z powershell.exe pid: 4528 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-08-26T22:45:55.5363647Z handle.exe pid: 5140 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-08-26T22:45:55.5364232Z handle.exe pid: 4576 type: File 94: C:\actions-runner\_work\pytorch\pytorch 2025-08-26T22:45:55.5364827Z handle64.exe pid: 3392 type: File 50: C:\actions-runner\_work\pytorch\pytorch 2025-08-26T22:45:55.5727310Z Post job cleanup. 2025-08-26T22:45:55.5825082Z Post job cleanup. 2025-08-26T22:45:55.7187816Z [command]"C:\Program Files\Git\cmd\git.exe" version 2025-08-26T22:45:55.7405585Z git version 2.50.1.windows.1 2025-08-26T22:45:55.7464914Z Copying 'C:\Users\runneruser\.gitconfig' to 'C:\actions-runner\_work\_temp\01e6be76-320f-4ae4-a764-2647a0ead3cf\.gitconfig' 2025-08-26T22:45:55.7481714Z Temporarily overriding HOME='C:\actions-runner\_work\_temp\01e6be76-320f-4ae4-a764-2647a0ead3cf' before making global git config changes 2025-08-26T22:45:55.7482553Z Adding repository directory to the temporary git global config as a safe directory 2025-08-26T22:45:55.7492756Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add safe.directory C:\actions-runner\_work\pytorch\pytorch 2025-08-26T22:45:55.7734694Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp core\.sshCommand 2025-08-26T22:45:55.7982106Z [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-26T22:45:56.1900049Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-08-26T22:45:56.2100692Z http.https://github.com/.extraheader 2025-08-26T22:45:56.2144526Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --unset-all http.https://github.com/.extraheader 2025-08-26T22:45:56.2419162Z [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-26T22:45:56.6452488Z A job completed hook has been configured by the self-hosted runner administrator 2025-08-26T22:45:56.6486381Z ##[group]Run 'C:\actions-runner\jobcompleted.ps1' 2025-08-26T22:45:56.6501873Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-26T22:45:56.6502344Z ##[endgroup] 2025-08-26T22:45:56.9931688Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-26T22:45:57.0000084Z Finished 2025-08-26T22:45:58.5811704Z Cleaning up orphan processes 2025-08-26T22:45:58.6205263Z Terminate orphan process: pid (1568) (vctip) 2025-08-26T22:45:58.6469466Z Terminate orphan process: pid (2488) (mspdbsrv)